MySQL常用dos命令

MySQL的基本目录

MySQL常用dos命令

 登陆MySQL

 

MySQL常用dos命令

 

查看数据库

Show databases;

 

MySQL常用dos命令

 

创建数据库

Create database 数据库的名字;

 

MySQL常用dos命令

 标准创建语句:

Create database if not exists 数据库的名字

 

MySQL常用dos命令

 

删除数据库

语句:

Drop database if exists 数据库的名字

 

MySQL常用dos命令

 

 修改数据库的名字

如果数据库没有数据,那就直接删除,从新创建

如果有数据,那就先备份,再删除,再创建,再导入数据

  修改字符集

 

MySQL常用dos命令

 

 创建表

创建表之前必须进入对应的数据库:use 数据库的名字

 

MySQL常用dos命令

 首先需要查看该数据库下面的表:show tables;

 

MySQL常用dos命令

数据库里面的表名不能重复!

创建表的语法:

Create table [if not exists] 表名(

字段名 数据类型 约束 其余…,

……

)engine=myisam default charset=utf8;

 

MySQL常用dos命令

 

查看表结构

语句: desc 表名;

 

MySQL常用dos命令

 

查看创建语句

语句: show create table 表名;

 

MySQL常用dos命令

 

添加字段

1.默认添加

语句:alter table 表名 add 字段名 数据类型 约束

默认添加到最后

 

MySQL常用dos命令

2.添加到什么字段之后

语句: alter table 表名 add 字段名 数据类型 约束 after 字段名;

 

MySQL常用dos命令

3.添加到第一位

语句: alter table 表名 add 字段名 数据类型 约束 first;

 

MySQL常用dos命令

综合起来:

Alter table 表名 add 字段名 数据类型 约束 [after 字段名/first]

 

删除字段

语句: alter table 表名 drop 字段名;

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpddfz.html