I have the set of tables:
MECHANIC (mechanic_id, name, competence_level)
CAR (car_ref_no, make, model, owner_name, value_category, car_reg_no)
BOOKING (car_ref_no, mechanic_id, job_name, date)
And I need to list the car_reg_no and make of any car that was worked on by all the mechanics.
For some reason subqueries don't work...(maybe there not meant to)
Any suggestions?
MECHANIC (mechanic_id, name, competence_level)
CAR (car_ref_no, make, model, owner_name, value_category, car_reg_no)
BOOKING (car_ref_no, mechanic_id, job_name, date)
And I need to list the car_reg_no and make of any car that was worked on by all the mechanics.
For some reason subqueries don't work...(maybe there not meant to)
Any suggestions?