If I have say this table
MemID Training Type Hours
----- ------------- -----
1 Training 2.5
1 Training 2.5
2 Access 3
1 Access 1.5
3 Training 2.5
2 Training 2
With the above data, only Member 2 has done "Training" only. What SQL statement do I need to only show the members that have done training only?
MemID Training Type Hours
----- ------------- -----
1 Training 2.5
1 Training 2.5
2 Access 3
1 Access 1.5
3 Training 2.5
2 Training 2
With the above data, only Member 2 has done "Training" only. What SQL statement do I need to only show the members that have done training only?