1.获取下当前mysql的插件目录
select @@plugin_dir
2.mysql移动文件
select load_file(’文件路径’) into dumpfile ‘导出路径’
3.desc
user
;
#看看表结构
4.
show
processlist;
#查看进程
show
grants FOR root;
#查询 root 用户创建语句
show
create DATABASE discuz;
#查询 创建数据库语句
show
create table mysql.user;
#查询 创建表语句
5.查看插件目录
show variables like '%plugin%';