K
Kyle
I have a database used to track training records. I need
to eliminate those individuals who are current in their
training requirements. For simplicity the table would
look like this:
ID Name #
1 Paul 1
2 John 2
3 John 3
4 George 3
5 Ringo 3
I want to eliminate all the occurrences of name if any of
# = 2 and return this:
ID Name #
1 Paul 1
4 George 3
5 Ringo 3
There must be a way to write this in SQL, but after two
days it still isn't coming to me.
to eliminate those individuals who are current in their
training requirements. For simplicity the table would
look like this:
ID Name #
1 Paul 1
2 John 2
3 John 3
4 George 3
5 Ringo 3
I want to eliminate all the occurrences of name if any of
# = 2 and return this:
ID Name #
1 Paul 1
4 George 3
5 Ringo 3
There must be a way to write this in SQL, but after two
days it still isn't coming to me.