A
AlexT
Folks,
I'm pretty sure it's a trivial question... but bear with me anyway.

I'd like to create a query that returns every unique ID in a table,
i.e. a list of IDs that are present *exactly once* in the table
(that's not a list of DISTINCT ID, which return all IDs once...)
So assuming the following data
MyID
--------
10000
10001
10000
10005
10002
10001
10003
10005
The result of the query would be
MyID
--------
10002
10003
Any pointer / help appreciated
Best regards
--alexT
I'm pretty sure it's a trivial question... but bear with me anyway.

I'd like to create a query that returns every unique ID in a table,
i.e. a list of IDs that are present *exactly once* in the table
(that's not a list of DISTINCT ID, which return all IDs once...)
So assuming the following data
MyID
--------
10000
10001
10000
10005
10002
10001
10003
10005
The result of the query would be
MyID
--------
10002
10003
Any pointer / help appreciated
Best regards
--alexT