問題は時間の比較にあったと思います。time >= '22:00:00' and time <= '7:00:00'
ですべてを効果的に除外しました
これがお役に立てば幸いです: 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