我有这样的数据
no_shift start_time end_time
1 08:00:01 15:00:00
2 15:00:01 20:00:00
3 20:00:01 03:00:00
4 03:00:01 08:00:00
我正在使用以下语法:
select * from shift_time where `20:15:22` between start_time and end_time
我为空。.但是如果我将值更改为
08:01:22
返回1
16:35:12
返回2
05:11:23
返回4
但是如果22:02:22
我为空。如何解决这个问题?