hi all,
i was trying to write query but could't figure out how should I join the third
table and get a count from that table?
Q-List for each trip, the trip code, the holiday code, the holiday name, and how many staff members are assigned to the trip
Quote:
SELECT trip_code, holiday_code, holiday_name
FROM trips natural JOIN holidays;
|
I used a NATURAL JOIN to join tables trips and holidays but i need to get a count from another table. I tried different thinks but no luck.
can anyone help with this?