大神帮帮忙
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;
/