时间:2021-07-01 10:21:17 帮助过:42人阅读
字符集:charset表中存储数据的字符集
校对集:colloate表中用来校对数据的校对集
存储引擎 :engine存储数据的存储引擎
-- 建表之前必须指定数据库,使用use ,或者显式指定 create table if not exists mydatabase.student( name varchar(20), sex varchar(20), number varchar(20), age int )charset utf8; -- use mydatabase; create table if not exists class( name varchar(20), room varchar(20) )charset utf8; ------------ use mydatabase; create table if not exists class( name varchar(20), room varchar(20) );
查看数据表可以查看已有数据表、数据表的字段信息
-- 查看所有表 show tables; -- 查看部分表 show tables like ‘模糊匹配‘; -- 查看表的创建语句 show create table 数据表名; -- 旋转查看结构 show create table 数据表名\G; -- 查看表结构:查看表中的字段信息: Desc/desc 表名; describe 表名; show columns from 表名;
_匹配单个字符
%匹配多个字符
show tables; show tables like ‘my%‘; show create table student; show create table student\G; desc student; describe student; show columns from student;
图例:
Desc/describe /show columns from 表名;
修改表本身只能修改表名和表选项。
-- 修改表名: rename table 老表名 to 新表名; --修改表选项: Alter table 表名 表选项 [=] 值;
rename table student to my_student; rename table class to my_class; -- Alter table my_student charset gbk; Alter table my_collation_bin collate =utf8_bin;
Drop table 表名1,表名2...;
drop table demo; drop table demodata;
新增字段是在表存在的基础上新增字段
Alter table 表名 add [column] 字段名 数据类型 [列属性] [位置];
Alter table 表名 add [column] 字段名 数据类型 [列属性] [位置]; Alter table demo add column id int first; Alter table demo add id int; Alter table demo add class int after age; Alter table demo add number int not null after age;
修改字段一般都是修改字段数据类型或者字段属性
Alter table 表名 modify 字段名 数据类型 [属性] [位置];
Alter table my_student modify number char(10) after id; Alter table demo modify number int null ; -- alter table student modify name varchar(20) not null; -- alter table student modify name varchar(20) not null primary key;
Alter table 表名 change 旧字段 新字段 数据类型 [属性] [位置];
alter table demo change class room varchar(10); Alter table my_student change sex gender varchar(10);
Alter table 表名 drop 字段名;
Alter table my_student drop age; alter table demo drop room;
mysql数据表的基本操作:表结构操作,字段操作
标签:数据库 table mbr wp8 play got ott char jna