SQL Query
-
Please give me actual query for following action I want data from two different database to single table (as same field name) ex. database1.table1 as field database2.table2 as field result into database1.table3 as field how to write query thanking you abglorie
-
Please give me actual query for following action I want data from two different database to single table (as same field name) ex. database1.table1 as field database2.table2 as field result into database1.table3 as field how to write query thanking you abglorie
-
Please give me actual query for following action I want data from two different database to single table (as same field name) ex. database1.table1 as field database2.table2 as field result into database1.table3 as field how to write query thanking you abglorie
select * from FirstDatabase.dbo.Table1 t1 join SecondDatabase.dbo.Table2 t2 on t1.id=t2.id where (your condition if any)
Regards Keyur Satyadev
-
Please give me actual query for following action I want data from two different database to single table (as same field name) ex. database1.table1 as field database2.table2 as field result into database1.table3 as field how to write query thanking you abglorie
abglorie wrote:
Please give me actual query
No, we are not here to do your work.
I know the language. I've read a book. - _Madmatt