I save sql-commands manually in a column. Normally it works fine and the whole command will be inserted properly (automatically masked at insert or update).
A value like ” find_in_set(…) ” will not be inserted properly, the program tries to interpret it! The quotation marks are not present.
The created sql is wrong: insert into tablename (columns-names) values (…, FIND_IN_SET(..,..), … );
It should be something like this: insert into tablename (columns-names) values (…, “FIND_IN_SET(..,..)”, … );
I know it is a rarely used value…
With best regards,
Swen
OS: you are doing great work!