Hello,
I have a table that has rows of student_id's and class_codes.
How do I SELECT people that have taken multiple classes?
If I say
WHERE class_code = '1' AND class_code = '2' AND class_code = '3'
No rows get returned because no single row could have all three values in it.
I think I need some sort of nested SELECT statment, or VIEW, but what do I know?!
Thanks in advance,
Bob Moran