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

mysql常用操作

时间:2020-03-28 17:56:38      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:关联   column   关联查询   class   info   des   order by   col   alt   

1.脚本

启动
mysql -u root -p‘password‘ database
mysql -hhost -uname -p‘password‘ database

导出表
mysqldump -u root -p database table > dump.sql

导入表
mysql -u root -p database < dump.sql

2.语句

数据库表数据统计
SELECT table_name,table_rows FROM information_schema.tables WHERE table_schema=‘database‘ ORDER BY table_rows DESC;

计算总数
select sum(column) from table;

关联查询
select 1 from table1 a,table2 b where a.id=b.id;

去重查询
select distinct column from table;

删除数据表
DROP TABLE table_name;

修改表名
ALTER TABLE table_name1 RENAME TO table_name2;

 

mysql常用操作

标签:关联   column   关联查询   class   info   des   order by   col   alt   

原文地址:https://www.cnblogs.com/zhh2020/p/12588352.html

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