This is a SQL question
I have two tables I need to join together, using the inner join syntax. One named Entry, and the other named prize. I need to list the event
event
You should use alias to avoid ambiguity
select e.event_id, e.horse_id, e.place, p.Money from ENTRY e join PRIZE p on p.event_id = e.event_id