Sql中取得当前系统时间?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sql中取得当前系统时间?相关的知识,希望对你有一定的参考价值。
Sql中取得当前系统时间?
我要取当前的时分秒
举例:
当前时间是15:03:00
我要每插入一行新的数据时Time中就生成150300001
再插入就是150300002.......150100001等等
Time是我这个表中的一列,要求取完的数字是9位,后面的3位是自动加上的
如果只是为了不重复的话,可以用当前时间的millisecond来区分,如我在你另一相同的问题中回答的:
http://zhidao.baidu.com/question/11983880.html
用 DATEPART() 结合 GETDATE() 等函数来取值
SELECT CAST(DATEPART(Hour,GETDATE()) AS nvarchar(2)) +
CAST(DATEPART(minute,GETDATE()) AS nvarchar(2)) +
CAST(DATEPART(second,GETDATE()) AS nvarchar(2)) +
CAST(DATEPART(millisecond,GETDATE()) AS nvarchar(20))
这样可以得到不重复的值。 参考技术A Sql中取得当前系统时间?
有这样几种格式:
select getdate()
select Convert(varchar,getdate(),120) yyyy-mm-dd hh:mi:ss
select Convert(varchar,getdate(),23) 年月日
select DATEDIFF(day,getdate(),convert(datetime,'2008-08-08 18:00:00',120)) --时间差
select DATENAME(dw,getdate())
--当前时间是一周内的第几天(中文,返回NVARCHAR型) 参考技术B NOW()函数以`'YYYY-MM-DD HH:MM:SS'返回当前的日期时间,可以直接存到DATETIME字段中。
CURDATE()以’YYYY-MM-DD’的格式返回今天的日期,可以直接存到DATE字段中。
CURTIME()以’HH:MM:SS’的格式返回当前的时间,可以直接存到TIME字段中。 参考技术C 方法1 自定义函数+字段绑定默认值
方法2 触发器 参考技术D datepart(hour,getdate())取时
datepart(minute,getdate())取分
datepart(second,getdate())取秒
C++ 取得系统当前时间
#include <time.h>
//* 方法一
time_t tt = time(NULL);//这句返回的只是一个时间cuo
tm* t= localtime(&tt);
printf("%d-%02d-%02d %02d:%02d:%02d\n",
t->tm_year + 1900,
t->tm_mon + 1,
t->tm_mday,
t->tm_hour,
t->tm_min,
t->tm_sec);
//* 方法二
SYSTEMTIME st = {0};
GetLocalTime(&st);
printf("%d-%02d-%02d %02d:%02d:%02d\n",
st.wYear,
st.wMonth,
st.wDay,
st.wHour,
st.wMinute,
st.wSecond);
下面几个,是网上找的:转载地址:http://apps.hi.baidu.com/share/detail/17815869
//* 方法一
time_t tt = time(NULL);//这句返回的只是一个时间cuo
tm* t= localtime(&tt);
printf("%d-%02d-%02d %02d:%02d:%02d\n",
t->tm_year + 1900,
t->tm_mon + 1,
t->tm_mday,
t->tm_hour,
t->tm_min,
t->tm_sec);
//* 方法二
SYSTEMTIME st = {0};
GetLocalTime(&st);
printf("%d-%02d-%02d %02d:%02d:%02d\n",
st.wYear,
st.wMonth,
st.wDay,
st.wHour,
st.wMinute,
st.wSecond);
下面几个,是网上找的:转载地址:http://apps.hi.baidu.com/share/detail/17815869
以上是关于Sql中取得当前系统时间?的主要内容,如果未能解决你的问题,请参考以下文章