Let's say I have a table:
| id | Name |
| 01 | Bob |
| 02 | Chad |
| 03 | Bob |
| 04 | Tim |
| 05 | Bob |
And I need to get the names which are mentioned only once (in this case: Chad and Tim) What is the query? Thanks.
Let's say I have a table:
| id | Name |
| 01 | Bob |
| 02 | Chad |
| 03 | Bob |
| 04 | Tim |
| 05 | Bob |
And I need to get the names which are mentioned only once (in this case: Chad and Tim) What is the query? Thanks.