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 / alka
say table1 has col1 & table2 has col1 column
select col1 from table1
union
select col2 from table2
| Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
What are the restraints imposed on the table design by a merge replication?
Detail about query optimizer?
How to call a function from a stored procedure in SQL Server ?
What is Federation Root Database?
What are the new security features added in sql server 2012? : sql server security
what is memory-optimized nonclustered indexes
What are indexes in sql?
What is microsoft sql server?
What are the steps to insert a table?
What is a dataset and what are the different types of datasets?
What are the differences between INNER JOIN, LEFT JOIN and RIGHT JOIN in SQL Server?
Explain Capacity planning to create a database? and how to monitor it?
Explain DBCC?
last function used in MS Access to convert sql what function will use in sql
How to copy the tables, schema and views from one sql server to another?