if exists(select * from sysobjects where name='return_name_num' and type='p') drop procedure return_name_num go create procedure return_name_num as select name,r.Bbook_num,b.book_name,borrowtime from borrow bo,reader r,book b where bo.book_ISBN=b.book_ISBN and bo.Bbook_num=r.Bbook_num and bo.borrow_exist='否'and returntime<getdate();
时间: 2023-12-10 11:39:17 浏览: 193
change-file-name-from-excel.rar_VB excel
这是一个 SQL Server 存储过程,名为 return_name_num。该存储过程会查询 borrow、reader 和 book 表,返回所有已借阅但未归还的书籍信息,包括读者姓名、读者证号、书籍名称和借阅时间。可以执行以下语句来调用该存储过程:
```
EXEC return_name_num;
```
注意,该存储过程只适用于特定的数据库架构,如果要在其他数据库中使用,需要根据实际情况进行修改。同时,也需要确保数据库连接信息已经正确配置。
阅读全文