15. 创建存储过程pro_select(),用指定的学号和课程号为参数查询学生成绩,输出参数为学生平时成绩和结业成绩。 16. 创建一个存储过程 pro_insert(),向 score表中插入一行记录,然后创建另一存储过程pro_out(),调用存储过程pro_insert(),并查询输出score表中插入的记录。 17. 查看p_student存储过程的定义。 18. 在student表上创建一个触发器(stud_insert),实现当插入一个学生学生记录的时候,保证学生的年龄只能是16~40岁,性别只能是男或女。 19. 在student表上创建一个触发器(stud_update),实现当更新一个学生的学号的时候,为了保证数据完整性,同时更新score表中该学生的学号。 20. 在student表上创建一个触发器(stud_delete),实现当删除一个学生记录的时候,为了保证数据完整性,同时删除该学生的所有课程成绩。
时间: 2024-02-09 15:09:01 浏览: 110
Keil.STM32F4xx_DFP.2.15.0.pack(STM32F4xx系列固件库for Keil MDK 5)
5星 · 资源好评率100%
这些问题涉及到数据库的具体操作,这是一个需要在特定环境下进行的任务,且需要了解数据库的具体结构和操作。以下是简单的示例代码,供参考:
15. 创建存储过程pro_select()
```
CREATE PROCEDURE pro_select @student_id int, @course_id int, @regular_score int OUTPUT, @final_score int OUTPUT AS
BEGIN
SELECT @regular_score = regular_score, @final_score = final_score
FROM score
WHERE student_id = @student_id AND course_id = @course_id;
END
```
16. 创建存储过程pro_insert()和pro_out()
```
CREATE PROCEDURE pro_insert @student_id int, @course_id int, @regular_score int, @final_score int AS
BEGIN
INSERT INTO score (student_id, course_id, regular_score, final_score)
VALUES (@student_id, @course_id, @regular_score, @final_score);
END
CREATE PROCEDURE pro_out @student_id int, @course_id int AS
BEGIN
DECLARE @regular_score int, @final_score int;
EXEC pro_insert @student_id, @course_id, @regular_score, @final_score;
SELECT * FROM score WHERE student_id = @student_id AND course_id = @course_id;
END
```
17. 查看p_student存储过程的定义
使用sp_helptext命令查看存储过程的定义:
```
sp_helptext p_student
```
18. 在student表上创建一个触发器(stud_insert)
```
CREATE TRIGGER stud_insert ON student
AFTER INSERT
AS
BEGIN
IF (SELECT COUNT(*) FROM inserted WHERE age < 16 OR age > 40 OR gender NOT IN ('男', '女')) > 0
BEGIN
RAISERROR('年龄只能是16~40岁,性别只能是男或女', 16, 1);
ROLLBACK TRANSACTION;
END
END
```
19. 在student表上创建一个触发器(stud_update)
```
CREATE TRIGGER stud_update ON student
AFTER UPDATE
AS
BEGIN
UPDATE score
SET student_id = inserted.student_id
FROM score
JOIN inserted ON score.student_id = deleted.student_id
END
```
20. 在student表上创建一个触发器(stud_delete)
```
CREATE TRIGGER stud_delete ON student
AFTER DELETE
AS
BEGIN
DELETE FROM score WHERE student_id IN (SELECT deleted.student_id FROM deleted)
END
```
需要注意的是,以上代码仅供参考,具体实现需要根据实际情况进行修改和调整。
阅读全文