Mysql 小tips
1.mysql -u root -p
net stop mysql 2、net start mysql
2.数据库列创建时间和更新时间自动更新
join_time timestamp NULL DEFAULT current_timestamp(),
update_time timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp())
本文来自博客园,作者:LeeJuly,转载请注明原文链接:https://www.cnblogs.com/peterleee/p/13530892.html