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
how to restart sql server in single user mode? How to start sql server in minimal configuration mode? : Sql server database administration
What is 2nf normalization?
What is model database in sql server?
What is correlated subquery in sql server?
What is the difference between lock, block and deadlock? : sql server database administration
What does sql server mean?
What are the steps to follow to configure SQL*Net?
Write a query to find 5th highest amount paid from the customer table.
What is apply operator in sql?
What is a cube? : sql server analysis services, ssas
How many levels of sp nesting is possible?
What is exporting utility?
What is database white box testing?
What is collation?
Which is the main third-party tool used in sql server?