问题:选择带有并置日期时间的行,条件显示结果错误。
mysql:
select CONCAT(end_date,' ',logout_time) from login where status in (1,3) and
staff_id='1' and travel_date<='2018-08-25' and end_date>='2018-08-25' and
CONCAT(end_date,' ',logout_time)>='"2018-08-25 23:13"'
结果:
2018-08-25 03:59:00
此查询出了什么问题?