Here is what I want to do:
current table:
+----+-------------+
| id | data |
+----+-------------+
| 1 | cow cow2 |
| 2 | cat cat2 |
| 3 | cam cam2 |
| 4 | cal cal |
+----+-------------+
here is what I want
+----+-------------+
| id | data |
+----+-------------+
| 1 | cow a cow2 |
| 2 | cat a cat2 |
| 3 | cam a cam2 |
| 4 | cal a cal |
+----+-------------+
thats it! I just want to add one little word between 2 already existing in my databases tables and wonder how this can be done?
concat, butreplaceor something like that.