首页 > 数据库技术 > 详细

MySQL_表操作语句

时间:2016-02-20 21:32:13      阅读:223      评论:0      收藏:0      [点我收藏+]

ZC:数据库名/表名/字段名 都使用小写字母

 

1、创建表(指定字符编码:utf8)

create table dbadmin
(
id integer auto_increment primary key,
username varchar(50) not null,
password varchar(50) not null
)
engine=InnoDB default charset=utf8;
 
1.1、
上面的命令 没成功,有报错(ERROR 1064 (42000))...
 
改成下面这样的方式(先 建一个没有自增的表,再 将主键设置成自增的):
create table dbadmin
(
id integer primary key,
username varchar(50) not null,
password varchar(50) not null
)
engine=InnoDB default charset=utf8;
 
mysql> alter table dbadmin modify ID integer auto_increment;
 
2、
desc 表名(小写);    // mysql 查看表结构的命令
show tables;  //ZC: 显示所有表
 
3、
添加字段:

alter table table1 add transactor varchar(10) not null;    // 实际使用过,没有报错

alter table table1 add id int unsigned not null auto_increment primary key;  // 未实际使用过,不知是否会有报错

 

4、

 

 
 

 

MySQL_表操作语句

原文:http://www.cnblogs.com/dbskill/p/5203938.html

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