I have 2 table A and B. In A 1 lakh record is present. In b 20 thousand data is present. To get the unique data from table A and B which join we should prefer left inner join or right outer join. Please answer.
Answer Posted / vijay_1994
Hi,
I have used left outer join
select
a,
b
from
tab1 ,
tab2
where
tab1.a = tab2.b(+);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
write an sql query to get third maximum salary of an employee from a table named employee_table. : Sql dba
What is a natural join?
What are schema-level triggers?
Is it possible for a table to have more than one foreign key?
Is left join and outer join same?
What is the clause we need to add in function body to return variable?
What is difference between table and view?
How does left join work in sql?
Why do we use triggers?
Describe types of sql statements?
How can you know that statistics should be updated?
Is crud a cuss word?
Can I join the same table twice?
What is the difference between delete, truncate and drop command?
What is right join sql?