set serveroutput on
declare
pstationid stationname.stationid%type;
pentrylane stationname.entrylane%type;
begin
select stationid,entrylane into (pstationid,pentrylane) from stationname t where t.stationid=30206;
dbms_output.put_line(pentrylane);
end;
/
set serveroutput on
我的也是这一句报错
什么问题,贴出来啊