I'm selecting a group of records and I want to filter a column in the logic of XOR - IS NOT NULL xor IS NULL.
--basic
SELECT make, model
FROM cars
results
--------
ford taurus
ford (null)
toyota camry
toyota (null)
honda (null)
--Obviously XOR is not a real Oracle operator
--This is what I'm trying to do..
SELECT make, model
FROM cars
WHERE model IS NOT NULL
XOR model IS NULL
results (pulls records where model IS NOT NULL, falling back to NULL if necessary)
--------
ford taurus
toyota camry
honda (null)
Can anyone give me insight on how to achieve the desired result I'm looking for? I'm struggling on this one!
Many thanks!
(A is null) XOR (A is not null)is a tautology. So either you're not looking for a filter at all - as that won't filter anything - or what you're looking for is 'show me distinct makes and models where the model isn't null, and also show me the distinct makes where no models are defined for those makes.' – Adam Musch Apr 29 '11 at 13:34