@(笔记)[MarkDown|我的博客|数据库]
操作表结构
create table [if not exists] 表名(
列名 列类型,
列名 列类型,
...
);
create table 表名
as
select * from 表名
alter table 表名 add(
列名 数据类型 ,
...
);
alter table 表名 modify 列名 数据类型;
MySQL中 一次只能修改一个列定义
如果修改数据列的默认值,只会对以后插入操作有作用,对以前已经存在的数据不会有任何影响
alter table 表名 drop 列名;
alter table 旧表名 rename to/as 新表名;
alter table 表名 change 旧列名 新列名 type;
alter table 表名 change 旧表名 新表名 type [default expr] [first | after 列名];
mysql> alter database 数据库名 character set utf8;
mysql> alter table 表名 character set utf8;
mysql> alter table 表名 modify type_name varchar(50) CHARACTER SET utf8;
-删除表
drop table 表名
drop table 表名;
delete table 表名;
truncate 表名;
删除表中的全部数据,但保留表数据.
相对于delete而言,速度更快,
不能像delete能删除指定的记录,truncate只能一次性删除整个表中的全部记录
操作数据表中的数据
insert into students values(
1,'张三','男',25,'123467890'
);
insert into students (name,sex,age) values('田七','男',30);
inster into 表名 (列名1,列名2,...)
select 列名 from 表名;
要求选择出来的数据列和插入目的地的数据列个数相同,类型匹配.
MySQL提供了一种扩展语句,可以一次插入多条语句
insert into students values
(1,'张三','男',25,'123467890'),
(2,'李四','男',22,'0987654321'),
(3,'王五','男',20,'0984324321'),
(4,'赵六','男',29,'0944654321');
upadte用于修改数据表的记录,每次可以修改多条记录.通过使用where
子句限定修改哪些记录.
where
类似于Java中的if
,只有符合条件的记录才会被修改,没有where
限定的值总是为true
,
表示该表的的所有记录都会被修改
update 表名 set
列名1=值1,
列名2=值2,
...
[where 条件];
delete from
语句用于删除指定数据表记录,使用delete from
时不需要指定列名,因为总是整行的删除.
delete from 表名 [where 条件];
使用where
指定删除满足条件的记录,不使用where
时删除全部记录
NOT NULL,字段值不允许为空
创建表的时候添加约束
create table tb(
username varchar(20) not null,
age tinyint unsigned null
);
--增加非空约束
alter table tb
modify age tinyint unsigned not null;
--删除非空约束
alter table tb
modify username carchar(20) null;
--取消非空约束并制定默认值
alter tabel tb
modify age tinyint unsigned null default 90;
主键自动为not null
创建表时使用列级约束语法
create table primary_test(
--创建主键约束
test_id int primary key,
test_name varchar(255)
)
create table primary_tset2(
test_id not null,
test_name varchar(255),
test_pass carchar(255),
--指定主键约束名为test2_pk,对大部分数据库有效,但对mysql无效,
--mysql数据库中该主键约束名依然是PRI
constraint test2_pk primary key(test_id)
);
create table primary_test3(
test_name varchar(255),
test_pass varchar(255),
primary key(test_name,test_pass)
);
--使用add关键字
alter table primary_tset3
add primary key(test_name,test_pass);
--使用modify关键字
--为单独的列添加主键约束
alter table primary_test3
modify test_name varchar(255) primary key;
alter table primary_test3
drop primary key;
create table tb2(
id smallint unsigned auto_increment primary key,
username varchar(20) not null
);
一旦指定了某列具有自增长特性,则向该表插入记录的时候不可为该列指定值,
该列的值由数据库系统自动生成
每张数据表可以存在多个唯一约束
建表时创建唯一约束 使用列级约束语法
create tabel unique_test(
test_id int not null ,
--建立唯一约束,test_name不能出现相同的值
test_name varchar(255) unique
);
create table nuique_test2(
test_id int not null,
test_name varchar(255),
test_pass varchar(255),
--使用表级约束语法建立唯一约束
unique (test_name),
--使用表级约束语法建立唯一约束,并指定约束名
constraint test2_nk unique (test_pass)
);
上面分别为name和pass建立唯一约束,意味着这两列都不能出现重复值
create table nuique_test3(
test_id int not null,
test_name varchar(255),
test_pass vatchar(255),
--使用表级约束语法建立唯一约束,指定两列组合不能为空
constraint test3_nk unique (test_name,test_pass)
);
上面的情况要求name和pass组合的值不能出现重复
--添加唯一约束
alter table unique_test3
add unique(test_name,test_pass);
--使用modify关键字为单列采用列级约束语法添加唯一约束
alter table student
modify test_name varchar(255) unique;
--删除unique_tset3表上的test3_uk唯一约束
alter table unique_test3
drop index test3_uk;
实现一对一或一对多关系
外键约束的要求
子表:有foreign key的表
父表:被参照的表
--为了保证从表参照的主表存在,通常应该先建立主表
create table teacher_table1
(
teacher_id int auto_increment,
teacher_name carchar(255),
primary key(teacher_id)
);
create table student_table1
(
--为本表建立主键约束
sutdent_id int auto_increment primary key,
sutdent_name carchar(255),
--指定java_teacher参照到teacher_table1的teahcer_id列
java_teahcer int references teacher_table1 (teacher_id)
);
上面这种方法在mysql中不会生效,仅仅是为了和标准的SQL保持良好的兼容性,
因此如果要使mysql中的外键约束生效,则必须使用表级约束语法
create table teacher_table
(
teacher_id int auto_increment,
teacher_name varchar(255),
primary key(teacher_id)
);
create table student_table
(
student_id int auto_increment primary key,
student_name varchar(255),
java_teacher int,
foreign key(java_teacher) references teacher_table(teacher_id)
);
以上这种方法没有指定约束名,mysql则会为该外键约束名命名为table_name_ibfk_n,其中table_name时从表的表名,而n时从1开始的整数
建立多列组合的外键约束
foreign key(列名1,列名2,...) references 引用的表名(引用的列名1,引用的列名2,...)
create table teacher_table
(
teacher_id int auto_increment,
teacher_name varchar(255),
primary key(teacher_id)
);
create table student_table
(
student_id int auto_increment primary key,
student_name varchar(255),
java_teacher int,
constraint student_teacher_fk foreign key(java_teacher) references teacher_table(teacher_id)
);
alter table 表名
add foreign key(列名1[,列名2,...])
references 引用的表名(引用的列名1[,引用的列名2,...]);
alter table 表名
drop foreign key 约束名;
如果想定义删除主表记录时,从表记录也被删除,则需要在建立外键约束后添加
on delete cascade
或者 on delete set null
第一种是删除主表记录时,把参照该主表记录的从表记录全部级联删除
第二种是指定当删除主表记录时,把参照该主表记录的从表记录的外键设置为null
索引总是从属于数据表,但它也和数据表一样属于数据库对象.
创建索引的唯一作用就是加快对表的查询,索引通过四通快速路径访问方法来快速定位数据,
从而减少磁盘I/O.
创建索引的两种方式
- 自动:当在表上定义主键,唯一和外键约束时,系统自动为该数据列创建对应索引
- 手动:通过create index..
语句创建索引
删除索引的两种方式
- 自动:数据表被删除时,该表上的索引自动被删除
- 手动:通过drop index..
语句删除索引
create index index_name
on table_name (列名1[,列名2,...]);
drop index index_name
on 表名;
在mysql数据库中,以为只要求同一个表内索引不能同名,所以删除索引时必须指定表名
而在例如Oracle数据库中要求索引名必须不同,所以无须指定表名.