sql >> Base de Datos >  >> RDS >> Mysql

Selección de franjas horarias disponibles para una fecha específica

Prueba este:

SELECT * 
FROM `timeslots` 
LEFT JOIN schedule ON timeslots.timeslot_id = schedule.schedule_timeslot
WHERE  schedule.schedule_id IS NULL or schedule.schedule_date <> '2011-08-01'
LIMIT 0, 30