SQL adaptation guide For Oracle MySQL 5.x / Data manipulation |
Informix® identifies database object names with double quotes, while MySQL does not use the double quotes as database object identifiers.
Check your programs for database object names having double quotes:
WHERE "tabname"."colname" = "string"
should be written as follows:
WHERE tabname.colname = 'string'