标签:def 相同 主键 prim images 修改 update set blog
创建表
create table student(
`id` int not null primary key auto_increment,
`name` char(32));
插入数据
insert into student(name) values (‘pan‘);
insert into student(name) values (‘zhang‘);
添加字段
alter table `student` add column stu_id int not null default 0 after name;删除字段
alter table `student` drop column stu_id;
修改字段
update student set stu_id=9001 where id=1;
创建第二张表
create table study_record(
`id` int not null primary key auto_increment,
`day` int(11) not null,
`status` char(32) not null,
`stu_id` int(11) not null,
key `fk_student_key` (`stu_id`),
constraint `fk_student_key` foreign key (`stu_id`) references `student` (id) #主外键更多的是某表的主键与子表的某个列进行关联,要求是具备相同的数据类型和属性
);
插入数据
insert into study_record (day,status,stu_id) values (01,‘yes‘,1);
insert into study_record (day,status,stu_id) values (01,‘no‘,2);
标签:def 相同 主键 prim images 修改 update set blog
原文地址:http://www.cnblogs.com/ttyypjt/p/7814189.html