I have an old table that has a column named \"RANK\" and this name is a keyword in Oracle, I don\'t know how this table created and I can\'t rename this column because it is
In my case, there is , in my query.
UPDATE SCHEMA.TABLE SET PART_NO = '1S7F530400', WHERE PART_NO = '1S7?F5304?00';
This should be:
UPDATE SCHEMA.TABLE SET PART_NO = '1S7F530400' WHERE PART_NO = '1S7?F5304?00';