错误用法:
select * from table1 where createTime >= '2020-10-01 08:00:00'
这种方法比较的是字符串,而不是时间
正确用法
select * from table1 where DATEDIFF(createTime, '2020-10-01 08:00:00') >= 0
select * from table1 where createTime >= '2020-10-01 08:00:00'
这种方法比较的是字符串,而不是时间
select * from table1 where DATEDIFF(createTime, '2020-10-01 08:00:00') >= 0