I\'m doing some work in MS Access and I need to append a prefix to a bunch of fields, I know SQL but it doesn\'t quite seem to work the same in Access
Basically I ne
Since there is no Concat function in MS-ACCESS, you can simply combine both strings with + operator:
+
UPDATE myTable SET [My Column] = "Prefix " + [My Column] WHERE [Different Column]='someValue';