Hi,
When use data type varchar2(20) , char value must we enclosed single quota example ( 'JIMMY')
you use in where varchar or char single quotation. According to me, have no compilation error
create or replace procedure proc_Second
AS
BEGIN
insert into emp_information (eno,ename,job,salary,status) values(EMP_INFORMATIONID.nextval,'varchar','varchar',number,number)
COMMIT;
end;
create sequence sequence_name
start with pass_value(1..etc)
increment by pass_number(1...etc)
where nextval and currval are pseudo column that use show nextval and currval show the current value
Use that code.