码迷,mamicode.com
首页 > 数据库 > 详细

mysql 常用语句

时间:2015-07-06 11:54:22      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

? 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 常用语句

标签:

原文地址:http://www.cnblogs.com/lpfuture/p/4623646.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!