Please check this INSERT function syntax. I'm getting error: SQLSyntaxErrorException. Can you help me with the syntax? Thanks.
SELECT INSERT( 'abcdefg' 1, 3, 'xxx' ) from dual
Yes, a comma is missing:
SELECT INSERT( 'abcdefg', 1, 3, 'xxx' ) from dual
Thanks. Next time I'll type it in twice.
Log in to post a comment.
Please check this INSERT function syntax.
I'm getting error: SQLSyntaxErrorException.
Can you help me with the syntax?
Thanks.
SELECT INSERT( 'abcdefg' 1, 3, 'xxx' ) from dual
Yes, a comma is missing:
SELECT INSERT( 'abcdefg', 1, 3, 'xxx' ) from dual
Thanks.
Next time I'll type it in twice.