Oracle pl-sql escape character (for a " ' ")
In SQL, you escape a quote by another quote:
SELECT 'Alex''s Tea Factory' FROM DUAL
To escape it, double the quotes:
INSERT INTO TABLE_A VALUES ( 'Alex''s Tea Factory' );
In SQL, you escape a quote by another quote:
SELECT 'Alex''s Tea Factory' FROM DUAL
To escape it, double the quotes:
INSERT INTO TABLE_A VALUES ( 'Alex''s Tea Factory' );