There is a table1 with records (1,2,3,4,5,6) and table2
with records (4,5,6,7,8,9).write a query so as to get the
result as 1,2,3,4,5,6,7,8,9
Answer Posted / amit
select * from table1
union
select * from table2
| Is This Answer Correct ? | 21 Yes | 5 No |
Post New Answer View All Answers
What is explicit mode in sql server?
What according to you is the difference between mysql and sql server performance?
What is a collation?
Ways to improve the performance of a SQL Azure Database?
What are indexers?
Explain alternate key, candidate key and composite key in sql server?
What are alternate keys?
What is blocking and how would you troubleshoot it? : sql server database administration
Suppose we have a table "MyTable" containing 10 rows, what query should be executed to update the odd rows "Salary" as 9000?
Does sql server 2016 have ssms?
Mention what are the different types of ssrs reports?
Explain differences between web edition and business edition?
Explain can you implement data mining in ssrs?
What are the steps you must follow to hide sql server instances?
How to reaname table name without using sp_Rename in sql server..?