Answers for "pl sql escape character"

SQL
3

pl sql escape &

-- syntax (This is specifically for PLSQL)
||CHR(38)||

-- example (You want: 'This symbol, &, works!')
'This symbol, '||CHR(38)||', works!'

-- Note: You could also use the "SET DEFINE ~;" code. Please see the 
-- reference/source (URL) for more details
Posted by: Guest on May-06-2020
0

pl sql escape '

INSERT INTO TABLE_A VALUES ( 'Alex''s Tea Factory' );
Posted by: Guest on December-01-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language