当前位置:   article > 正文

SQL Server触发器的创建

sql server触发器的创建

 参考http://blog.csdn.net/fredrickhu/article/details/4708906一


(一)先打开sql server数据库,创建数据库Stu ,创建两个表:

create database Stu

  1. create table Student(
  2. StudentID int primary key,
  3. StudentName nvarchar(50),
  4. StudentAge int
  5. )
  6. create table BorrowRecord(
  7. BorrowRecord int identity(1,1),
  8. StudentID int,
  9. BorrowDate Datetime,
  10. ReturnDate Datetime
  11. )

注意这里不能添加外键,添加外键后有约束,就不能激发触发器了。下面的外键操作供自己复习:

  1. --添加外键
  2. alter table BorrowRecord
  3. add constraint fk_StudentID
  4. foreign key(StudentID) references Student(StudentID)
  5. --删除外键
  6. alter table BorrowRecord drop constraint fk_StudentID


向表 Student和表BorrowRecord插入数据:

  1. insert into Student values(1,'王五',20)
  2. insert into Student
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/秋刀鱼在做梦/article/detail/786066
推荐阅读
相关标签
  

闽ICP备14008679号