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 the cartesian product of the table?
What is sql sandbox in sql server?
How to create view in stored procedure sql server?
How to list all field names in the result set using mssql_field_name()?
What are different types of data sources?
How to create median function?
What’s the use of custom fields in report?
Do you know the policy based administration feature of sql server 2008?
User wants only to display only pdf as export option in report manager. How to achieve this?
Explain the disadvantages/limitation of the cursor?
What is acid properties?
Explain sql server service broker?
What are the encryption mechanisms in sql server?
How to connect to a sql server using odbc_connect()?
How to get the number of affected rows?