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
can you implement data mining in SSRS?
Which table keeps the locking information?
What is faster join or union?
Can anyone tell that the extra features are there in SQL SERVER 2008 that are not available in previous versions .
What happens if the update subquery returns multiple rows in ms sql server?
What is history table in sql server?
What is normalization process?
How can you find out if the current user is a member of the specified microsoft® windows nt® group or microsoft sql server™ role?
What is row-level compre?
What are synonyms?
How to create an index on a view?
Explain the properties of sub-query in sql server?
How to create function with parameter in sql server?
What are triggers? How many triggers you can have on a table? How to invoke a trigger on demand?
what is difference between NULL and ISNULL in SQL Server 2008?