1.串→日期 str_to_date()
select str_to_date('2018-08-02','%Y-%m-%d %H:%i:%s')
2.日期→符串 date_format()
select date_format(now(), '%Y%m%d%H%i%s')
2.当前十分秒日期 - 2hour date_sub()
select date_sub(now(),interval 2 hour)
3.当前日期函数
select CURDATE()
+2018-02-02
select now()
+2018-02-02 21:21:29