标签:style blog color os strong 数据
导出数据
mysqldump --opt -hlocalhost -uusername -ppassword --skip-lock-tables databasename>database.sql
导入数据
mysql> source 路径\**.sql
创建中文名称数据库
mysql> set names gbk; mysql> create database 中文;
查看版本
mysql -u root -p -e "select version()"
表格
查询表记录数
select count(*) from tablename;
删除表格
drop table tablename;
查询表某几行
select * from table limit 5,10; 检索记录行6-15 select * from table limit 95,-1; 检索记录行96-last select * from table limit 5; 检索前5个记录行
删除前几行
delete from table tablename limit 5; 删除前5个记录行
标签:style blog color os strong 数据
原文地址:http://www.cnblogs.com/lukcyjane/p/3849153.html