how to insert a selected columns in a particular table.
supposing create table emp
(
eno number(3),
ename varchar2(20),
comapnay varchar2(30));
in this i have enter only employee number and employee name.
so how to insert only selected columns in a table.
could you pls help me at the earliest.
supposing create table emp
(
eno number(3),
ename varchar2(20),
comapnay varchar2(30));
in this i have enter only employee number and employee name.
so how to insert only selected columns in a table.
could you pls help me at the earliest.
Comment