create or replace procedure p_inout
(v_emp_lname in varchar2(25))
as
v_first_name varchar2(20);
begin
select first_name into v_first_name
from employees
where last_name=v_emp_lname;
dbms_output.put_line(v_first_name);
end;
我得到 錯誤(2,25):PLS-00103:出現符號「(」在需要下列之一時::=),@%默認字符符號「:=」代替「(」繼續程序來輸入姓氏時返回名字
您的問題標題似乎是誤導...請具體 – Arnab