1、创建表
CREATE TABLE emp(
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
ename VARCHAR(20) DEFAULT NULL,
job_id INT DEFAULT 0,
mgr INT DEFAULT 0,
joindate DATE,
salary DECIMAL DEFAULT 0,
bounds DECIMAL DEFAULT 0,
dept_id INT DEFAULT 0)
2、日期相关
--当前时间:
now(),current_timestamp, current_timestamp(),sysdate()
--日期转换
date_format('2008-08-08 22:23:01', '%Y%m%d%H%i%s')
str_to_date(str, format)
--增加时间
date_add(now(), interval 1 day)