我是 Oracle 的新手,正在尝试创建一个新程序但出现错误,
错误表达式 P_EMP_SAL 不能用作 SELECT/FETCH 语句的 INTO 目标。
CREATE OR REPLACE PROCEDURE getempsal(
p_emp_id IN NUMBER,
p_emp_month IN CHAR,
p_emp_sal in INTEGER)
AS
BEGIN
SELECT EMP_SAL
INTO p_emp_sal
FROM EMPLOYEE_SAL
WHERE EMP_ID = p_emp_id
and EMP_MONTH = p_emp_month;
END getempsal;