MySQL基础语法——表的操作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL基础语法——表的操作相关的知识,希望对你有一定的参考价值。

1.创建表

基本语法

技术分享
create table tableName(
        field1 datatype,
        field2 datatype,
        field3 datatype  
);
View Code
field: 队列名 datatype:列类型
 

创建一个学生表例子:

技术分享
create table student(
      id int,
      name varchar(30)
      gender char(6)
);
View Code

 

2.修改表

2.1增加表的列

基本语法

alter table tableName
        add (column datatype);

增加student表一列sorce,类型为 int

技术分享
alter table student 
        add (sorce int);
View Code

2.2修改表的列

基本语法

alter table tableName
        modify (column datatype); //一般用于修改数据类型

将student表的name长度改为60

技术分享
alter table student
        modify (name varchar(60));
View Code

2.3删除表的列

基本语法

alter table tableName
        drop (column);

删除student的sorce

技术分享
alter table student
        drop sorce;
View Code

3.其他语法

修改表的名称:

rename tableName to newTableName;

修改表的字符集:

alter table tableName character set utf8;

 

以上是关于MySQL基础语法——表的操作的主要内容,如果未能解决你的问题,请参考以下文章

mysql 基础语法

MySql表的基础命令及数据操作命令

MySQL基础语法之创建表和对表中数据增删改的语法

MySQL基础-13DML语言(数据操作语言)-3.删除语句

MySQL数据库的基础语法总结

『 MySQL篇 』:MySQL表的CURD操作