Hey all...
Here's the deal. I'm trying to "extend" something I created for work, an evaluation form, and I'm not sure if what I want to do is possible. I tried to create the database to be as 'extendable' as possible, but I may have shot myself in the foot here.
I have tables for our course instructors, course floaters (students that help the class) and a seminar table that puts all the info together. Some seminars have more than one floater, so I have a field for up to 3 floaters (floaterID_1, floaterID_2, etc.). Now, the floaterID's reference the id of the floater table that has each floater name (and other information).
Here's the problem. I'd like to write a query that makes one row with seminar name, ID, instructor name, and each floater name. What's happening now (and I understand why) is that if more than one floater exists for that seminar, I get two rows returned. All information except for the floater name is the same. I understand I'm asking to select "floaterName", but I'm wondering if there's a way to reference multiple floaters in the same row, maybe changing their reference appropriately (floaterName_1, floaterName_2, etc.)
Does this make sense? Is it even possible. IF not, I'll write the loop to get the info as I need it, but if I can do it on the SELECT, that would be great.
Thanks all
blessings..
ryan