I have the table
| WorkerID | ProjectName | Role |
|----------|-------------|--------|
| 1 | Test | Leader |
|----------|-------------|--------|
| 4 | Test | Worker |
|----------|-------------|--------|
| 2 | Stuff | Leader |
|----------|-------------|--------|
| 3 | Proj | Worker |
and now I want to list every ProjectName where there is no specified Leader like this:
| ProjectName |
|-------------|
| Proj |
Right now I only know how to filter all ProjectNames with Leaders, but not the way to filter them the other way!
Any help is appreciated :)