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 / geeta
select * from tab1
union
select * from tab2;
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Explain locks? : Transact sql
Are sql database names case sensitive?
what are all the common sql function? : Sql dba
When are we going to use truncate and delete?
Which is faster count (*) or count 1?
When to use inner join and left join?
Mention what is the function that is used to transfer a pl/sql table log to a database table?
How run sql*plus commands that are stored in a local file?
Can we use pl sql in mysql?
what are all types of user defined functions? : Sql dba
How do you determine the current isolation level? : Transact sql
Can we use loop in sql?
Which is better varchar or nvarchar?
What is scalar data type in pl sql?
What does where 1 1 mean in sql?