Mysql常用操作语法汇总

时间:2022-01-01 06:30:58

Mysql命令行:

>mysql -u root -p
Enter password:******
Welcome to the MySQL monitor. Commands end with ; or \g.
......
mysql>

# 查看系统中的数据库
mysql> show databases;
# 选择某个要操作的数据库
mysql> use dbname;
# 查看改数据库下的所有数据表
mysql> show tables;

# 查看某张表的定义
mysql> desc tablename;
# 查看某张表全面的定义信息
mysql> show create table tablename;
# 删除某张表
mysql> drop table tablename;

# 修改表中字段的数据类型
mysql> alter table tablename MODIFY colname new_coltype;
# 增加表字段
mysql> alter table tablename ADD column colname coltype;
# 删除某个字段
mysql> alter table tablename DROP column colname;
# 字段改名
mysql> alter table tablename CHANGE colname new_colname coltype;
# 更改表名
mysql> alter table tablename RENAME new_tablename;