MySQL_表操作语句

Posted

tags:

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

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;
 
mysqlalter 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_表操作语句的主要内容,如果未能解决你的问题,请参考以下文章

mysql如何合并查询多个相同数据结构库的表输出来结果?

MySQL_表操作语句

mybatis查询结果如何合并为列表

GitGit如何合并某一次commit的内容到指定分支

git 分支 合并

spark 实现大表数据合并