SQL比较时间查询语句

Posted 精细化设计

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL比较时间查询语句相关的知识,希望对你有一定的参考价值。

 

select * from table1 
where datediff(mm,‘2009-8-12 13:17:50‘, date)>0

  

select * from table1 
where datediff(ms,2009-8-12 13:17:50, date)>0

 

select * from table1 where cast(date as datetime)>2009-8-12 13:17:50

 

select * from table1 where CONVERT(DATETIME,date)>2009-8-12 13:17:50 

 

本人测试这条也能通过:

select * from RoomInfo where CreateTime > 2017/7/3 10:46:33;

 

以上是关于SQL比较时间查询语句的主要内容,如果未能解决你的问题,请参考以下文章

sql里面 with...as 是啥意思啊?如何使用

sql语句 嵌套查询 排序

怎么查找执行比较慢的sql语句

sql语句中日期时间类型怎么比较

sql语句中怎样比较两个日期的大小???

SQL Select 语句的用法