R
Roy Gourgi
Hi,
How can I insert variables instead of values in the VALUES() part of the
insert into command, i.e.
var1=10;
var2=20;
var3=30
insert into emp_test (emp_no1, emp_no2, emp_no3) VALUES (var1, var2, var3)";
The above does not work.
TIA
Roy
How can I insert variables instead of values in the VALUES() part of the
insert into command, i.e.
var1=10;
var2=20;
var3=30
insert into emp_test (emp_no1, emp_no2, emp_no3) VALUES (var1, var2, var3)";
The above does not work.
TIA
Roy