首页 > 数据库技术 > 详细

MySQL基础语法——表的操作

时间:2016-06-03 21:27:30      阅读:162      评论:0      收藏:0      [点我收藏+]

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基础语法——表的操作

原文:http://www.cnblogs.com/hczw/p/5557504.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!