I have a column in my database named details_location which references the second part of a url ex. “manager\reports\user\description\UsersRights.htm” I’d like to append a semi-colon to each row value, so that the above appears as “manager\reports\user\description\UsersRights.htm;”
I’ve tried using something like
update reportdescriptions
set details_location = details_location+';'
To no avail, I’m sure it’s something simple I’m missing. Thanks!
Try CONCAT function