PROMPT ' Data entry for the Publishers '
ACCEPT v_pub_id varchar2(30) FORMAT 'A10' PROMPT 'Enter Publisher ID: '
ACCEPT v_pub_name char FORMAT 'A80' PROMPT 'Enter Publisher Name: '
ACCEPT v_pubdate date FORMAT 'dd/mm/yyyy' PROMPT 'Enter the pulication date(dd/mm/yyyy):'
INSERT INTO PUBLISHERS
('&v_pub_id','&v_pub_name','&v_pubdate');
I not sure what is missing in the statement.
You are missing the
values
keyword before the list of values: