当前正在执行的事务
SELECT * FROM information_schema.INNODB_TRX
查看正在执行的SQL
show full processlist
杀掉某个执行中的SQL
kill $id
删除数据库
DROP DATABASE $name
删除数据表
DROP TABLE
转换参数为时间戳(单位:秒)
UNIX_TIMESTAMP(NOW())
返回当前时间戳(单位:秒)
UNIX_TIMESTAMP()
返回当前时间戳(单位:毫秒)
current_timestamp(3)
2018-09-20 17:56:39.916
unix_timestamp(current_timestamp(3))
1537437399.934
select REPLACE(unix_timestamp(current_timestamp(3)),'.','');
1537437399953