mysql常用命令

1、查看用户权限
       show grants for user \G
2、查看变量
       show global variables like ‘wait_timeout’ \G
       show global variables like  '%timeout%' \G
 
3、 mysqladmin --host=127.0.0.1 --port=3306 --user=xxx --password shutdown

4、set wait_timeout=10;
      set global  wait_timeout=10;    (使用连接池时慎用)

你可能感兴趣的:(mysql常用命令)