create or replace procedure p_test
 is
   cr NE_INFO%ROWTYPE;
 begin
    select * INTO cr
    From NE_INFO where rownum=1;
 end p_test;
 /