摘要:
(1)无参数存储过程创建和调用-统计emp表中职工人数 create or replace procedure emp_count as v_total number(10); begin select count(*) into v_total from emp; dbms_output.put_ 阅读全文
摘要:
1使用PL/SQL块查询表的信息 (1)查询编号为7369的员工名称和职务信息。 set serveroutput on desc emp declare v_ename varchar2(10); v_job varchar2(9); begin select ename,job into v_e 阅读全文