时间:2021-07-01 10:21:17 帮助过:4人阅读
show databases;
create database 数据库名;
create database 数据库名 character set gbk/utf8;
show create database 数据库名;
drop database 数据库名;
use 数据库名;
show tables;
create table 表名(字段1名 字段类型,字段2名 字段2类型,name varchar(10),age int);
ceate table person(name varchar(10),age int);
创建一个学生表(student) 保留学号id,姓名name,年龄age,语文Chinese,数学math,英语培训English
create table student(id int,name varchar(10),age int,chinese int,math int,english int);
create table 表名(name varchar(10))engine=myisam/innodb charset=gbk/utf8;
innodb:支持数据库的高级操作如:外键、事务等,属于默认引擎
myisam:只支持基础的增删改查操作;
show create table 表名;
1.可以有换行。
2.最后以;分号结尾
3.关键字之间需要有空格(可以写多个空格,建议写一个)
desc 表名;
drop table 表名;
rename table 原名 to 新名;
最后面:alter table 表名 add 字段名 字段类型;
最前面:alter table 表名 add 字段名 字段类型 first(第一);
某一个后面:alter table 表名 add 字段名 字段类型 after 指点位置的字段;
alter table 表名 drop 字段名;
alter table 表名 change 原字段名 新字段名 新字段类型;
alter table 表名 modify 字段名 类型 位置;
alter table hero modify age int first(after xxx);
mysql数据库操作指令合集
标签:字段 格式 add 合集 语文 mysq int 外键 varchar