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?
Answers were Sorted based on User's Feedback
Answer / sayalibsl
select e2.empno, e2.ename from A e1, B e2
where e1.empno!=e2.empno;
| Is This Answer Correct ? | 15 Yes | 5 No |
Answer / bijaylaxmi
select b.empno,b.ename from b where not exists(select * from a
where a.empno=b.empno)
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / swastik
SELECT
e2.Empno, e2.Ename
FROM B e2
WHERE e2.Empno NOT IN
(
SELECT e1.Empno
FROM A e1
);
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / baji
select * from a full outer join b on a.empno=b.empno
minus
select * from a inner join b on a. empno=b.empno;
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / arun
select *from B where (empno,ename) not in (Select
empno,ename from A)
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / 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 |
Answer / shrawan kumar keshri
select * from A
except
select * from B
| Is This Answer Correct ? | 1 Yes | 3 No |
How do you explain an index number?
What is the difference between between and in condition operators?
What is serial sql?
what is the difference between where clause and having clause? : Sql dba
Explain what is sql?
Hi Guys, I have a situation where I need to access the column values from rowtype variable. However, the column names are dynamic. below is sample code: declare Cursor c1 is select * from emp; Cursor c2 is select column_name from xyztable; v_c2 c2%rowtype; v_str varchar2 v_value varchar2(200); begin for rec in c1 loop open c2;---this cursor has column names like EMPLOYEE_ID, FIRST_NAME, LAST_NAME etc. loop fetch c2 into v_c2; exit when c2%notfound; /* now lets say i want to access value of LAST_NAME from cursor c1, so I am writing below code, however it does not work as expected */ v_str:= 'rec.'|| v_c2.column_name; -- this will give me string like "rec.EMPLOYEE_ID" v_value:=v_str; end loop; end loop; end; / Plz help ASAP.Thanks.
What is scalar and vector?
What is the difference between distinct and unique in sql?
What is foreign key and example?
sales persons should always receive commission of 100 at least. employees who r not sales persons should never receive commission.(Triggers)
If an unique key constraint on DATE column is created, will it validate the rows that are inserted with SYSDATE?
Why should I use postgresql?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)