Answer Posted / naresh
select * from table full outer join tablename2;
or
select * from table1,table2 where
table1.columnname(+)=table2.colunmname(+);
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What is trigger and how to use it in sql?
What are keys in sql?
what is 'mysqlcheck'? : Sql dba
What is union?
How do you modify a column in sql?
What is clustered index sql?
How do I find sql profiler?
How to rename a column in the output of sql query?
Explain cursor types?
Are stored procedures faster than queries?
What port does sql server use?
What is number function in sql?
What is pivot table in sql?
what is a table called, if it has neither cluster nor non-cluster index? What is it used for? : Sql dba
What is package in pl sql with an examples?