I've been asked to update a varchar2 field in a record to the following string:
0: NO MATCH WAS RUN, FOR 1994 AND LATER CASES;1: LAST NAME AND MAIDEN NAME;2: LAST NAME, DIDN'T CHECK MAIDEN NAME (OR MALE);3: LAST NAME, MISSING MAIDEN NAME;4: LAST NAME, MAID
Can anyone help me with the syntax to insert this string? I'm having trouble with the apostrophe in the word "DIDN'T". I've tried using double quotes around the apostrophe and using || to concatenate, but I still get an "invalid identifier" error.
0: NO MATCH WAS RUN, FOR 1994 AND LATER CASES;1: LAST NAME AND MAIDEN NAME;2: LAST NAME, DIDN'T CHECK MAIDEN NAME (OR MALE);3: LAST NAME, MISSING MAIDEN NAME;4: LAST NAME, MAID
Can anyone help me with the syntax to insert this string? I'm having trouble with the apostrophe in the word "DIDN'T". I've tried using double quotes around the apostrophe and using || to concatenate, but I still get an "invalid identifier" error.