no I created a table and I wanted to write a plsql to insert data into that table. Just trying to some stuff but i think I got it to work.
DECLARE
v_emp_id employees.emp_id%TYPE := EMPLOYEES_SEQ.NEXTVAL;
v_dept_id employees.dept_id%TYPE;
v_first_name employees.first_name%TYPE;
v_last_name...
There isn't any data in the table. I guess what I want to do is to see if I can write a plsql statement that will insert data into a table that I just created.
Hello i am fairly new to plsql and i am tring to create a cursor that inserts a record into my employees table
This is the structure of my employees table:
EMP_ID NOT NULL NUMBER
DEPT_ID NOT NULL NUMBER
FIRST_NAME VARCHAR2(30)
LAST_NAME...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.