MySQL基础语法——表的操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL基础语法——表的操作相关的知识,希望对你有一定的参考价值。
1.创建表
基本语法
create table tableName( field1 datatype, field2 datatype, field3 datatype );
field: 队列名 datatype:列类型
创建一个学生表例子:
create table student( id int, name varchar(30) gender char(6) );
2.修改表
2.1增加表的列
基本语法
alter table tableName add (column datatype);
增加student表一列sorce,类型为 int
alter table student add (sorce int);
2.2修改表的列
基本语法
alter table tableName modify (column datatype); //一般用于修改数据类型
将student表的name长度改为60
alter table student modify (name varchar(60));
2.3删除表的列
基本语法
alter table tableName drop (column);
删除student的sorce
alter table student drop sorce;
3.其他语法
修改表的名称:
rename tableName to newTableName;
修改表的字符集:
alter table tableName character set utf8;
以上是关于MySQL基础语法——表的操作的主要内容,如果未能解决你的问题,请参考以下文章