mysql常用操作
Posted zhh2020
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql常用操作相关的知识,希望对你有一定的参考价值。
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常用操作的主要内容,如果未能解决你的问题,请参考以下文章