Answer Posted / kuldeep sharma
SQL Cross Join...>Cartesian product of both tables.
Example:
Let left table has 10 rows and right table has 8 rows then
SQL CROSS Join will return 180 rows combining each record
of left table with all records of right side table.
Consider the following example of CROSS Join:
USE PUBS
SELECT AU_FNAME, AU_LNAME, PUB_NAME
FROM AUTHORS CROSS JOIN PUBLISHERS
ORDER BY AU_FNAME
Above cross join will return 23 * 8 = 184 results by
multiplying each row of authors table with publishers table.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are sub reports?
Is it possible to run multiple publications and different type of publications from the same distribution database? : sql server replication
What is b tree index?
How would you add a section to a table?
What is Cross Join and in which scenario do we use Cross Join?
Explain differentiate between a having clause and a where clause?
What are the properties and different types of sub-queries?
It is important form e to get the information from log files of applications executed by the task scheduler? Does sql studio save these log files? : sql server management studio
Tell me what is log shipping?
What are .mdf files?
Explain the purpose of indexes?
Define full outer join in sql server joins?
Can you explain what is the use of custom fields in report?
List the different index configurations possible for a table?
What is the difference between varchar and nvarchar datatypes?