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.
Answers were Sorted based on User's Feedback
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 |
What is sqlcommand?
write a query that returns first characters of each word in Oracel/Sql pl sql
Explain what is a database?
What does trigger mean in psychology?
What are sql procedures?
In a PL/SQL block,which loop type should be used in a performance point of view & Why (as both loops can do the same task) 1) open - Fetch loop 2) for loop
How do you handle exceptions. Give the syntax for it?
Why do we use sqlite?
what is HASH join?
Is left join inner or outer?
How many triggers can be applied to a table?
how to get @@error and @@rowcount at the same time? : Sql dba