SQL Server 中 datepart 函数的使用

前端之家收集整理的这篇文章主要介绍了SQL Server 中 datepart 函数的使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
函数是用来提取年份,月份,日期的一个函数,带两参数,第一个为(yy,mm,dd)其中一个,表示年月日,第二个参数为字段名称

比如提取某一年的记录

select * from Employee e where datepart(yy,e.LastLoginTime)=2009

返回2009年所有记录

select * from Employee e where datepart(mm,e.LastLoginTime)=12

返回12月份的所有记录

select * from Employee e where datepart(dd,e.LastLoginTime)=30

返回30号所有记录

SELECT * FROM Employee e WHERE datepart(mm,e.LastLoginTime)=12 AND datepart(yy,e.LastLoginTime)=2009

返回09年12月份的记录

性能上没有做测试。

原文链接:/mssql/871909.html

猜你在找的MsSQL相关文章