getdate函数的用法
答案:2 悬赏:50 手机版
解决时间 2021-11-23 12:04
- 提问者网友:火车头
- 2021-11-23 05:22
getdate函数的用法
最佳答案
- 五星知识达人网友:未来江山和你
- 2021-11-23 05:52
(1)在SQL中用法
函数名: getdate
功 能::GETDATE() 函数从 SQL Server 返回当前的时间和日期。
例子:SELECT GETDATE() AS CurrentDateTime
结果: CurrentDateTime
2008-12-29 16:25:46.635
--取时间的某一个部分
select datepart(yy,getdate()) --year
select datepart(mm,getdate()) --month
select datepart(dd,getdate()) --day
select datepart(hh,getdate()) --hour
select datepart(mi,getdate()) --min
select datepart(ss,getdate()) --sec
(2)在C中用法
函数名: getdate
功 能: 取DOS日期
用 法: void getdate(struct *dateblk);
程序例:
#include
#include
int main(void){
struct date d;
getdate(&d);
printf("The current year is: %d\n",d.da_year);
printf("The current day is: %d\n",d.da_day);
printf("The current month is: %d\n",d.da_mon);
return 0;
}
备注:在VC++6.0中运行上述程序不能通过,原因是此版本的中不包含getdate函数。但在TroboC 中运行可以通过。
函数名: getdate
功 能::GETDATE() 函数从 SQL Server 返回当前的时间和日期。
例子:SELECT GETDATE() AS CurrentDateTime
结果: CurrentDateTime
2008-12-29 16:25:46.635
--取时间的某一个部分
select datepart(yy,getdate()) --year
select datepart(mm,getdate()) --month
select datepart(dd,getdate()) --day
select datepart(hh,getdate()) --hour
select datepart(mi,getdate()) --min
select datepart(ss,getdate()) --sec
(2)在C中用法
函数名: getdate
功 能: 取DOS日期
用 法: void getdate(struct *dateblk);
程序例:
#include
#include
int main(void){
struct date d;
getdate(&d);
printf("The current year is: %d\n",d.da_year);
printf("The current day is: %d\n",d.da_day);
printf("The current month is: %d\n",d.da_mon);
return 0;
}
备注:在VC++6.0中运行上述程序不能通过,原因是此版本的
全部回答
- 1楼网友:杯酒困英雄
- 2021-11-23 06:54
getdate
函数名: getdate
功 能: 取DOS日期
用 法: void getdate(struct *dateblk);
程序例:
#include
#include
int main(void)
{
struct date d;
getdate(&d);
printf("The current year is: %d\n", d.da_year);
printf("The current day is: %d\n", d.da_day);
printf("The current month is: %d\n", d.da_mon);
return 0;
}
函数名: getdate
功 能: 取DOS日期
用 法: void getdate(struct *dateblk);
程序例:
#include
#include
int main(void)
{
struct date d;
getdate(&d);
printf("The current year is: %d\n", d.da_year);
printf("The current day is: %d\n", d.da_day);
printf("The current month is: %d\n", d.da_mon);
return 0;
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯