CONCAT equivalent in MS Access

后端 未结 4 1764
一整个雨季
一整个雨季 2020-12-03 15:31

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

4条回答
  •  一整个雨季
    2020-12-03 16:20

    UPDATE myTable
    SET [My Column] = "Prefix " & [My Column] 
    WHERE [Different Column]='someValue';
    

    As far as I am aware there is no CONCAT

提交回复
热议问题