4 Feb 2010 02:38
report/review - add a column for speaker?
report/review is great in that we can sort by each column (event name,
state, track, rating, and raters). But we are unable to sort by
speaker. Often, we get multiple submissions from the same person, and
it is useful to sort by speaker.
Is it practical to split speaker out into its own column for this. I
see problems for talks with multiple speakers though....
In the meantime, we are doing this:
SELECT CT.conference_track AS track, VP.name AS speaker,VP.title AS talk
FROM view_event_person VP JOIN event E ON VP.event_id = E.event_id
JOIN conference_track CT ON E.conference_track_id =
CT.conference_track_id
WHERE VP.conference_id = 6
AND VP.event_role = 'speaker'
AND VP.translated = 'en'
ORDER BY track;
RSS Feed