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 / jagadeesh
select isnull(a.id,b.id) from table1 a
full outer join table2 b
on a.id=b.id
Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What are the different types of subquery?
How raid can influence database performance?
How to generate create view script on an existing view?
What is linked report?
How to define output parameters in stored procedures?
how to restart sql server in single user mode? How to start sql server in minimal configuration mode? : Sql server database administration
What is SQL Azure Fabric?
What are the two modes of authentication in sql server?
How do we upgrade from SQL Server 6.5 to 7.0 and 7.0 to 2000?
Can You Use A Stored Procedure To Provide Data To An Ssrs Report?
How is sql server used?
What is fill factor and pad index?
How to create and drop temp table in sql server?
Can you explain the disadvantages/limitation of the cursor?
What is difference between cte and view?