Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MYSQL DATUMSBEREICH und ZEITBEREICH

Ich denke, das Problem lag in Ihrem Zeitvergleich:Sie haben effektiv alles mit Ihrer time >= '22:00:00' and time <= '7:00:00' herausgefiltert

Hoffe, das hilft: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