Hi,
I need some help, as always, I currently have a table called 'notificationMessageTbl' and I have a TEXT field called 'userReadID' what I want to do is add text to the end of current text within the field using SQL
If I use the following code it just replaces the exsisting text with '12,' and does not append.
Thanks in advance
Simon
I need some help, as always, I currently have a table called 'notificationMessageTbl' and I have a TEXT field called 'userReadID' what I want to do is add text to the end of current text within the field using SQL
If I use the following code it just replaces the exsisting text with '12,' and does not append.
VB.NET:
UPDATE notificationMessageTbl SET userReadID = '12,'
Thanks in advance
Simon