How to insert a string that includes quotes in oracle? my code
INSERT INTO TIZ_VADF_TL_MODELS (name)
VALUES ('xxx'test'yy');
if i use
INSERT INTO TIZ_VADF_TL_MODELS (name)
VALUES ("xxx'test'yy");
I get the identifier too long because xxx'test'yy is clob.
How can i do this?
THX
source
share