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


Please Help Members By Posting Answers For Below Questions

What is the use of double ampersand (&&) in sql queries? Give an example

708


What is %rowtype in pl sql?

607


What are the properties of a transaction?

669


what is difference between delete and truncate commands? : Sql dba

680


What is the mutating table and constraining table?

652






what is the command line end user interface - mysql? : Sql dba

597


What is set serveroutput on?

742


Do we need commit after truncate?

731


what is a constraint? : Sql dba

809


Is mariadb a nosql database?

667


Does truncate free space?

609


What is a table partition?

697


What is scope of pl sql developer in future?

672


What is view explain with example?

598


what is the difference between delete and truncate statement in sql? : Sql dba

650