1、首先我们打开Workbench创一个建数据库(这里都使用闪电1执行选定命令行)。
2、先创建Student学生表。
3、再创建course课程表。
4、然后就可以创建sc关联表了我们先写上Student的主键和course的主键,并写上sc自己的属性成绩。
5、再写上主键约束,以及把sc表的学号属性和Studnet的学号关联、课程号属性和course的课程号关联。
6、再次运行就可以看到我们成功创建了学生表和课程表的关联表sc。
mysql:1、先给B表添加主键列
alter table tableB add constraint b_PK primary key(date,channel)
2、将B表的组合主键关联到A表的外键组合键中
alter table tableB add constraint tableB_fk foreign key(date,channel) references tableA (date,channel) on DELETE CASCADE
3 delete from tableA where date =? and channel =? 就出发相关记录··~
create trigger update_id on afor delete
as
Declare @qqlx_bid varchar(20)
Declare @qqlx_cid varchar(20)
--获得删除记录
select @qqlx_bid=bid,@qqlx_cid=cid from deleted
update b set bid=0 where bid=@qqlx_bid
update c set cid=0 where cid=@qqlx_cid
end
go
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)