Hello all,
I would like to have all the elements belong to this record
= 'Geo' but not the element = 'USA;
Any idea?
Ina
This is my query
================
select distinct record.element as element
from record where record.Type = 'Geo'
except
(select record.element as element
from record
where record.element = 'USA');
I would like to have all the elements belong to this record
= 'Geo' but not the element = 'USA;
Any idea?
Ina
This is my query
================
select distinct record.element as element
from record where record.Type = 'Geo'
except
(select record.element as element
from record
where record.element = 'USA');