对于使用 ORACLE PLsql 的第一部分 程序 2: 对于由姓氏给出的作者所写的每一本书,更改他的书的所有 ISBN 程序的第二个参数是什么?
如何获取和更改图书的 ISBN?
set serveroutput on
create or replace procedure changeISBN(Last_Name varchar(100),ISBN int)
no_book exception;
no_author exception;
cursor c1 is
select * from book where book.idAuthor= Auhtor.idAuthor and Author.LastName =Last_Name;
if
