Forum Moderators: open
Examples of each:
Level Field
1,2,3
Position Field
B,O,P
I need a SQL query that will allow me to count the number of attendees that checked 1 for level AND B for position.
Any help would be greatly appreciated.
select count(*)
from attendees
where instr(level, '') and instr(position, 'J')
but the number it came up with was definitely not correct