当前位置:Gxlcms > 数据库问题 > mysql 常用语句

mysql 常用语句

时间:2021-07-01 10:21:17 帮助过:2人阅读

? contents; //查看帮助

show [globle|session] status; //查看运行状态

show [globle|session] variables [like condition];  //查看配置项

load data infile path into tablename; // 从文件导入数据

select columnlist from tablename into outfile path; // 导出指定表的列至外部文件

check table tablename;  //检查表

optimize table tablename;// 优化表

rename table tablename to new_tablename; //修改表明

create table new_tablename like old_tablename; // 复制表

create table new_tablename select * from old_tablename; //  复制表数据

mysql 常用语句

标签:

人气教程排行