Subquery with invalid identifier error in sql
问题 want to select tour date and site names in advance of total cost is more than 230 and that tour has more than 7 persons. the complete code is below, the first part of union works. SELECT tour_date AS "Departure Date", site_name "Site Name" FROM partres, reservation, tour, site WHERE partres.res_id = reservation.res_id AND reservation.tour_id = tour.tour_id AND tour.site_id = site.site_id GROUP BY tour_date, site_name HAVING COUNT(part_id) > 7 UNION SELECT tour_date AS "Departure Date", site