select * from student where time>'2020/05/14'
查询结果不应该只有2020/05/15以后的吗,为什么还是有2020/05/14的
我用的是sql server
time字段类型是DataTime
我应该怎么写sql
select * from student where time>'2020/05/14'
查询结果不应该只有2020/05/15以后的吗,为什么还是有2020/05/14的
我用的是sql server
time字段类型是DataTime
我应该怎么写sql
你查的time是大于‘2020/05/14 00:00:00’,所以就算是2020/05/14 00:00:01也会被选到