1.oracle:
插入系统时间应为sysdate:
insert into table (name,makedate) values(‘测试‘,sysdate);
4.MySQL:
插入系统时间应:
now():以‘yyyy-mm-dd hh:mm:ss‘返回当前的日期时间,可以直接存到datetime字段中。
curdate():’yyyy-mm-dd’的格式返回今天的日期,可以直接存到date字段中。
insert into table (name,makedate) values(‘测试‘,now());
时间: 2024-10-22 10:51:06