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 is the web service used for reporting services?
What is the difference between ddl and dml?
What is the federation in sql azure?
What protocol does sql server use?
What is the difference between for auto and for nested?
Where cross join is used?
How to disconnect from a sql server using mssql_close()?
Differentiate between sql temp table vs table variable?
Mention the 3 ways to get a count of the number of records in a table.
What is snapshot replication?
What is dirty read?
What is scan table/view and seek table/view when its occurs? : sql server database administration
What are the types of database schema? : sql server analysis services, ssas
User wants only to display only pdf as export option in report manager. How to achieve this?
Is it possible to have clustered index on separate drive from original table location?