I have to display ten columns values from diffrent ten
tables.
how many joins are require?
Answer Posted / b.kumar
--MS SQL SERVER
WE CAN DISPLAY RECORDS BY USING 9 JOINS
SELECT TBL1.COLUMN1,TBL2.COLUMN2,---------,TBL10.COLUMN10
FROM TBL1 INNER JOIN TBL2 ON TBL1.ID=TBL2.ID
INNER JOIN TBL3 ON TBL1.ID=TBL3.ID
----
----
----
INNER JOIN TBL10 ON TBL1.ID=TBL10.ID
----------------------------------------
--WE CAN ALSO DISPLAY THE RECORDS WITH OUT USE JOINS
SELECT TBL1.COLUMN1,TBL2.COLUMN2,---------,TBL10.COLUMN10
FROM TBL1,TBLE2,--------,TBL10
WHERE TBL1.ID=TBL2.ID OR TBL1.ID=TBL3.ID OR
----
----
----
TBL1.ID=TBL10.ID
--WE MUST USE WHERE CLAUSE OTHER WISE WE GET Cartesian product.
--------------------------------------------------
WE CAN'T JOIN DIFFERENT TABLES OF COLUMNS BY USING UNION
BECAUSE UNION COMBINES THE TWO OR MORE RESULT SETS
(IT MEANS ROWS)
DIFFERENCE BETWEEN JOIN & UNION
-- JOIN COMBINES TWO OR MORE THE COLUMNS
-- UNION COMBINES TWO OR MORE ROWS
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How many primary keys are possible in a table?
Why would you use sql agent?
Can coalesce return null?
what is the sql equivaent of the dataset relation object ?
Why use “pivot” in sql server?
what are the important architecture components of SSRS?
How many full-text indexes can a table have?
What is a matrix in ssrs?
What is identity?
Tell me what is the significance of null value and why should we avoid permitting null values?
Define tempdb database?
How dts is used to extract, transform and consolidate data?
Is foreign key a primary key?
How do you delete a trigger?
How to automatically create a log when an exception is being received into SQL Server?