连接mysql:
格式: mysql -h主机地址 -u用户名 -p用户密码
修改mysql密码:
格式:mysqladmin -u用户名 -p旧密码 password 新密码
统计数据库大小
1.mysql> use information_schema;
2.查询指定数据库大小
mysql> select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='库名';
3.查询指定数据库中指定数据表大小
mysql>select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='库名' and table_name='表名';
1、显示数据库列表。
show databases;
2、显示库中的数据表:
use mysql; //打开库mysql
show tables;
3、显示数据表的结构:
describe 表名;
4、建库:
create database 库名;
5、建表:
use 库名;
create table 表名(字段设定列表);
6、删库和删表:
drop database 库名;
drop table 表名;
7、将表中记录清空:
delete from 表名;
8、显示表中的记录:
select * from 表名;
|