码迷,mamicode.com
首页 > 数据库 > 详细

sql server获取时间的分量

时间:2019-02-12 13:25:30      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:art   sele   get   date   获取   select   int   取出   server   

-- 取出当前时间的分量
DECLARE @mm int = datepart(mm,getdate()); -- 月
DECLARE @dw int = datepart(dw,getdate()); -- 星期几
DECLARE @dd int = datepart(dd,getdate()); -- 日期
DECLARE @hh int = datepart(hh,getdate()); -- 小时
DECLARE @mi int = datepart(mi,getdate()); -- 分钟
SELECT mm=@mm,dw=@dw,dd=@dd,hh=@hh,mi=@mi;

sql server获取时间的分量

标签:art   sele   get   date   获取   select   int   取出   server   

原文地址:https://www.cnblogs.com/liuzhenfei/p/10364474.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!