Mysql 获取当前时间函数 (类似于sql server 中的 getDate())

1 获得当前日期+时间(date + time)函数:now()



2 获得当前日期+时间(date + time)函数:sysdate()

sysdate() 日期时间函数跟 now() 类似,不同之处在于:now() 在执行开始时值就得到了, sysdate() 在函数执行时动态得到值。



3 获得当前日期(date)函数:curdate()

等同于:current_date(),current_date



4获得当前时间(time)函数:curtime()

等同于:current_time(),current_time



5 获得当前 UTC 日期时间函数:utc_date(), utc_time(), utc_timestamp()

因为我国位于东八时区,所以本地时间 = UTC 时间 + 8 小时。



你可能感兴趣的:(SQL Server)