How do you get all records from 2 tables. Which join do you use?
Answer Posted / gvmahesh
full outer join.
select ename,sal,dname,loc,e.deptno from emp e
full outer join dept d on e.deptno=d.deptno;
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Is sql a backend?
How to run sql statements with oracle sql developer?
What is dense_rank in sql?
What is a composite primary key?
What is a mutating table and a constraining table?
What are the three pl sql block types?
Explain dml and ddl?
What is the purpose of the primary key?
Is it possible to read/write files to-and-from PL/SQL?
Inline the values in PL/SQL, what does it mean.?
how can we encrypt and decrypt a data present in a mysql table using mysql? : Sql dba
Why sql query is slow?
What is a sql select statement?
what is sql server agent? : Sql dba
What is a join query?