Mysql
 sql >> Database >  >> RDS >> Mysql

MYSQL DATE RANGE e TIME RANGE

Penso che il problema fosse nel confronto dell'ora:hai effettivamente filtrato tutto con il tuo time >= '22:00:00' and time <= '7:00:00'

Spero che questo aiuti:http://sqlfiddle.com/#!2/45108/7 /0

SELECT * FROM fax
WHERE date BETWEEN CURDATE() and CURDATE() + INTERVAL 1 DAY 
and
((time >= '22:00' and time <= '23:59')
or
(time >= '0:00' and time <= '7:00'))
and shift='GY' 
and complete=1