|
-
"INSERT INTO DELITM_TABLE (NAME, WHEN) VALUES ('Access Point');"
You are telling Oracle that you are inserting two columns, but you are only providing one value. Here is an example of how to make the insert statement work.
"INSERT INTO DELITM_TABLE (NAME, WHEN) VALUES ('Access Point', SYSDATE);"
SYSDATE is a function that returns the current time.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|