I have 2 fields in one mysql table.
One field has full sentence and another field has the same sentence but with one word replaced by “_“. How I can find the replaced word using mysql query?
Example:
Field1: We aim for an 85% success rate.
Field2: We _ for an 85% success rate.
I need a query which can find the word “aim” comparing both 2 sentences.
1 Answer