select unix_timestamp();
同mysql
select unix_timestamp(now());
select now();
select unix_timestamp('2018-01-15 09:45:16');
select from_unixtime(1515980716);
SELECT from_unixtime(1515980716, '%Y-%m-%d %H:%i:%S');
select date_format(now(), '%Y-%m-%d'); select date_format('2018-01-15 09:45:16', '%Y-%m-%d');
http://tool.chinaz.com/Tools/unixtime.aspxsql