Hi,
I am trying to run the following SQL Insert
The problem i am having is that i need to insert the next number in the sequence into progress_detail_id.
Anyone got any ideas how i can get this to work?
Cheers James
I am trying to run the following SQL Insert
Code:
INSERT INTO CALL_PROGRESS_DETAIL
(CLIENT_ID,
FAULT_REFERENCE,
PROGRESS_DETAIL_ID,
PROGRESS_DATE,
PROGRESSED_BY_WHOM,
PROGRESS_ACTION_DATE_AND_TIME,
PROG_CAT_ID)
VALUES ('6', PROGRESS_DEATIL_ID.NEXTVAL, '136426', SYSDATE, 'JAMESF', SYSDATE, '705');
The problem i am having is that i need to insert the next number in the sequence into progress_detail_id.
Anyone got any ideas how i can get this to work?
Cheers James