网站首页 美食营养 游戏数码 手工爱好 生活家居 健康养生 运动户外 职场理财 情感交际 母婴教育 时尚美容

SQL数据库中getDate()函数

时间:2024-10-16 12:23:34

SQL数据库中getDate()函数作用是获取系统当前时间。

语法功能

功 能: GETDATE() 函数从 SQL Server 返回当前的时间和日期。

列:SELECT GETDATE() AS CurrentDateTime

SQL数据库中getDate()函数

扩展资料:

函数名: getdate

功 能: 取DOS日期

用 法: void getdate(struct *dateblk);

程序例:

#include<stdio.h>

#include <dos.h>

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;

}

© 2025 小知经验
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com