在语句中:declare Cursor s1 is select sno,sname,age from student; Vc s1%rowtype;Begin … end;变量VC有( )个分变量。
A. 1
B. 2
C. 3
D. 4
在PL/SQL中,非法的标识符是()。
A. table$123
B. 123table
C. table123
D. table_123
判断if语句:If vnum<5 then vexample:=1;Elsif vnum<10 then vexample:=2;Elsif vnum>20 then vexample:=3;Elsif vnum>35 then vexample:=4;Else vexample:=5;End if;如果vnum是37,则vexample的值为()。
A. 1
B. 2
C. 3
D. 4
在下面if语句中错误有()处。If a>10 then B:=0;Else if a>5 then B:=1;Else then B:=2;End;
A. 1
B. 2
C. 3
D. 4