TABLE A TABLE B
EMPNO ENAME EMPNO ENAME
1 A 1 A
2 B 2 B
3 C 3 C
4 D 4 D
5 E 5 E
6 F
7 G
HOW TO GET THE UNMATCHED RECORDS IN SQL QUERY?
Answer Posted / rajesh venati
select b.empno as empno, b.ename as ename from a, b where
a.empno!=b.empno;
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is integrity in sql?
What are the steps for performance tuning.
How to use distinct and count in sql query? Explain
Name three sql operations that perform a sort.
Does execute immediate commit?
how to delete duplicate rows from a join tables(I have three tables on that join) how do you know which join is need to be used? The select statement I have is: SELECT gc_skill_type.skill_type, gc_area_tec.area, gc_technology.technology, gc_technology.id_technology, gc_area_tec.id_area_tec FROM gc_skill_type, gc_area_tec, gc_technology WHERE gc_area_tec.id_skill_type (+) = gc_skill_type.id_skill_type AND gc_technology.id_area_tec (+) = gc_area_tec.id_area_tec order by gc_skill_type.skill_type asc, gc_area_tec.area asc, gc_technology.technology asc
Is sql a scripting language?
When can we use the where clause and the having clause?
How do you get column names only for a table (sql server)?
What is a sql*loader control file?
What is set transaction?
What is union, minus and interact commands?
What is the sql*loader? : aql loader
Is sqlite free?
how many columns can be used for creating index? : Sql dba