there is A table and B table in A table there 5 rows and in
b table there are 2 rows i am firing query select * from
a,b what will be the output?
Answers were Sorted based on User's Feedback
Answer / santosh pashte
It is concept of CROSS JOIN..
It will display 5 * 2 = 10 rows
Is This Answer Correct ? | 41 Yes | 4 No |
Answer / manda
It gives a cartesian product or a cross product.
Is This Answer Correct ? | 11 Yes | 1 No |
Answer / mubin ahmad
select * from a,bwill be the out put in 10 rows
Is This Answer Correct ? | 11 Yes | 2 No |
Concept of cross join
the result will be 10 bcos 5*2 = 10
Is This Answer Correct ? | 9 Yes | 0 No |
Answer / v.g.venkatesh babu
It gives error. If you want to access the data from two tables then we must use JOINS concept... so we need to use aliasis names for tables...
* so both tables A and B must have same no. of fields with same datatypes then only we can use joins.
*Both tables must associated with forign key...
Is This Answer Correct ? | 0 Yes | 4 No |
Is microsoft sql free?
Explain sql data types?
What are the parts of a basic sql query?
How do I edit a trigger in sql developer?
What are the default Oracle triggers??
A table was given with 3 columns like Manager id,Manager Name and Employee name. Question was to create hierarchy.
What is lexical units in pl sql?
Explain cursor types?
How do you select unique values in sql?
what are date and time data types in mysql? : Sql dba
Can you do multiple joins in sql?
list out some tools through which we can draw e-r diagrams for mysql. : Sql dba