Passing sequence nextval in insert statement
Hi,
Want to insert a record in table A using incremented sequence value to be get inserted in the ID column of table.
ID column is having a primary key constraint
created sequence test1_seq for that table
How to use this sequence number's NEXTVAL to be get inserted in ID column of table A, along with other data.
How to pass the values to the below procedure for inserting record ?
There are total six fields in the column
execute pk_test1.insert_test1('*How to pass next sequence value here ?*','rec2','rec3','rec4','rec5','rec6')
With Regards
Edited by: user640001 on Aug 10, 2010 12:25 AM