mysql如何获取当前时间

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

select now();
select current_timestamp();
select localtime();
select localtimestamp();
select sysdate();

设置默认当前时间:

CURRENT_TIMESTAMP

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

curdate()  =  current_date()

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

curtime()  =  current_time()

获得当前 UTC 日期时间函数:

utc_date(), utc_time(), utc_timestamp()
上一篇:PostgreSQL 11 100亿 tpcb 性能测试 on ECS


下一篇:redis debug命令详解