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 many database files are there in sql server 2000?what are they?
What does it mean to normalize a database and why would you do it?
What is Cross Join and in which scenario do we use Cross Join?
What is SQL Azure?
Hi all, can any one please tell me the difference between sql server 2008 and orace 9i
What are partitioned views and distributed partitioned views?
What is a bit datatype?
What is dknf in normalization form?
Differentiate between delete and truncate.
How do I partition a table in sql server?
in the physical file layout, where should the transaction log be stored in relation to the data file? : Sql server administration
How to select all columns of all rows from a table with a select statement in ms sql server?
How to declare and use cursor variables?
Explain the truncate command? : SQL Server Architecture
What are the kinds of subquery?