I'm trying to get a count result using a SET operator in SQL Developer.
I have to find how many of "attribute1" are in "table_name1" but are not in "table_name2"
Essentially I want the result that I would get from the following query, but using a SET operator.
SELECT count(distinct <attribute1>)
FROM <table_name1>
WHERE <attribute1> IS NOT (SELECT <attribute1>
FROM <table_name2>);
Can anyone please help me?