首页 > 数据库技术 > 详细

SQL获取当前日期的年、月、日、时、分、秒数据

时间:2018-05-31 11:11:59      阅读:338      评论:0      收藏:0      [点我收藏+]

SQL Server中获取当前日期的年、月、日、时、分、秒数据:

SELECT GETDATE() as ‘当前日期‘,
DateName(year,GetDate()) as ‘年‘,
DateName(month,GetDate()) as ‘月‘,
DateName(day,GetDate()) as ‘日‘,
DateName(dw,GetDate()) as ‘星期‘,
DateName(week,GetDate()) as ‘周数‘,
DateName(hour,GetDate()) as ‘时‘,
DateName(minute,GetDate()) as ‘分‘,
DateName(second,GetDate()) as ‘秒‘

SQL获取当前日期的年、月、日、时、分、秒数据

原文:https://www.cnblogs.com/huyueping/p/9115453.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!