Comment 1 for bug 378022

Revision history for this message
Kevin Hjelden (fryguy) wrote : Re: [Bug 378022] [NEW] Need to add feature: Email all registrants

the team email is the email of the team 'captain', so you need to join
the tables. Should be something like:

select person.name, person.email
from team
left join person on person.id = team.captain

If you want it for only the registered teams, then that's a slightly
more advanced query.