sql-插入当前时间

描述

向记录表 records 中插入当前的日期

解决

主要记得有这么两个函数,now(),current_date(),因此

insert into records values (now())
insert into records values (current_date())

你可能感兴趣的:(sql,mysql)