Hi,
I am a software programmer and not a pl/sql programming.
Hope this is the right place to post my question.
It is about comparing two tables.
I would like to find the elements from table1 that do not exist in table2
This is my query (which is not functional)
SELECT *
FROM TABLE_1
WHERE EXISTS
(SELECT *
FROM TABLE_2
WHERE TABLE_2.MODIFDATE IS NULL);
and the tables
create table TABLE_1
(
NAME VARCHAR2(50),
SURNAME VARCHAR2(50),
MODIFDATE DATE
)
create table TABLE_2
(
NAME VARCHAR2(50),
SURNAME VARCHAR2(50),
MODIFDATE DATE
)
Thanks.
Liv
I am a software programmer and not a pl/sql programming.
Hope this is the right place to post my question.
It is about comparing two tables.
I would like to find the elements from table1 that do not exist in table2
This is my query (which is not functional)
SELECT *
FROM TABLE_1
WHERE EXISTS
(SELECT *
FROM TABLE_2
WHERE TABLE_2.MODIFDATE IS NULL);
and the tables
create table TABLE_1
(
NAME VARCHAR2(50),
SURNAME VARCHAR2(50),
MODIFDATE DATE
)
create table TABLE_2
(
NAME VARCHAR2(50),
SURNAME VARCHAR2(50),
MODIFDATE DATE
)
Thanks.
Liv