Folgendes möchte ich tun:
aktuelle Tabelle:
+----+-------------+
| id | data |
+----+-------------+
| 1 | max |
| 2 | linda |
| 3 | sam |
| 4 | henry |
+----+-------------+
Mystery Query (so etwas wie "UPDATE table SET data = CONCAT(data, 'a')"
)
resultierende Tabelle:
+----+-------------+
| id | data |
+----+-------------+
| 1 | maxa |
| 2 | lindaa |
| 3 | sama |
| 4 | henrya |
+----+-------------+
das ist es! Ich muss es nur in einer einzigen Abfrage tun, kann aber keinen Weg finden. Ich benutze mySQL auf Bluehost (ich denke, es ist Version 4.1)
Vielen Dank an alle.
cat_id
ein Zeichenfeld (Varchar, Text usw.) oder numerisch?