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
What are the limitations of sql express?
what is a field in a database ? : Sql dba
Explain two easy sql optimizations.
What are the parts of a basic sql query?
How do you use collections in procedure to return the resultset?
Do ddl statements need commit?
What is insert command in sql?
What are the datatypes available in pl/sql ?
How do I add a database to sql?
What is the purpose of a sql?
What is acid property in a database?
how to start mysql server? : Sql dba
Why we use cross join?
Which is faster union or join?
What are sql data types?