【MySQL】视图、触发器、存储过程、存储函数专题

文章目录

  • 视图
  • 触发器
  • 存储过程
  • 存储函数

视图

  1. 建立95211班的学生的年龄视图v_student_c(sno,sname,sage),并对视图加入检查约束
create view v_student_c(sno,sname,sage) as
select sno,sname,sage from student where sno like "95211%"

你可能感兴趣的:(《,MySQL数据库,》,mysql,数据库,java)