In Oracle there is a command that is part of the select statement called minus. Simplified this is the way it works:
SELECT deptno
FROM department
MINUS
SELECT deptno
FROM department
WHERE deptno IN (SELECT city
FROM locations
WHERE city = 'Boston')
Is there an equivilent in Pervasive.SQL?
Thanks,
Bill Chadbourne
DBA
TCMHS
SELECT deptno
FROM department
MINUS
SELECT deptno
FROM department
WHERE deptno IN (SELECT city
FROM locations
WHERE city = 'Boston')
Is there an equivilent in Pervasive.SQL?
Thanks,
Bill Chadbourne
DBA
TCMHS