SQL Server DATEPART() 函数

 

DATEPART() 函数用于返回日期/时间的单独部分,比如年、月、日、小时、分钟等等。

 

语法格式:

 

DATEPART(datepart,date)

 

 date 参数是合法的日期表达式:


SQL Server DATEPART() 函数
 

示例:

   分别查询出日期为第几周(week_date),

                 处于哪一年(year_date),

                 处于哪一月(month_date),

                 是当年中第几天( the_year_date)

select InspectionDate,
	   DATEPART(ww,InspectionDate) as week_date,
	   DATEPART(yy,InspectionDate) as year_date,
	   DATEPART(mm,InspectionDate) as month_date,
	   DATEPART(y,InspectionDate) as the_year_date
from Inspection.Inspection;

  

结果如下:


        SQL Server DATEPART() 函数
 

 

 

 

 

你可能感兴趣的:(sql,server)