I have a mysql table with a row that contains vocabulary, like this:
- aller to go
- manger to eat
- soulager to relieve
There is also a unique column. The problem is that not all of the verbs have the to in the infinitive like above, so in reality the table looks more like this:
- aller go
- manger to eat
- soulager relieve
Is it possible to edit all these lines without the to so that they have it, i. e. so that the second example looks like the first one above? Otherwise I would have to go through the whole thing and edit them manually, which is time consuming as you can imagine.
It's easy to see them all:
SELECT * FROM vocab where french not like "to %";
But edit them?