(4) .查询招生人数最多的院校 查询招生人数最多的院校:
SQL>select 院校名称 , 招生人数 from college where 招生人数 =(select max( 招生人数 ) from college);
(5) .查询考生分数 查询考生分数:
SQL> set serveroutput on; SQL> exec show_score(10005);
(6) .检查 operation 触发器的记录 SQL> select * from operation_log;
2. 投档过程 (1) .初始化 初始化程序为:
SQL> set serveroutput on size 10000; SQL> exec clearstatus;
说明:在每次重新开始模拟投档时,都要先调用该过程进行初始化,清除原来的录取信息。 (2) .一志愿自动投档 一志愿自动投档程序为: SQL> exec autoproc(1);
(3) .查询考生录取状态 查询考生录取状态的程序为: SQL> exec show_result(10005);