下面是实现预订业务的程序,请补全空缺处的代码。其中主变量":Cid"、":Bdate"、":Edate"、":Rtype"、":Num"分别代表身份证号、起始日期、结束日期、房间类别和订房数量。 SET TRANSACTION ISOLATION LEVEL REPEATABLE READ; UPDATE 空房表 SET 数量=数量-:Num WHERE (a); if error then {ROLLBACK; return -1;} INSERT INTO 预订表 VALUES (:cid,:Bdate,:Edate,:Rtype,:Num); if error then {ROLLBACK; return -2;} (b);