I want to update some column and trying to add .jpg
at the end of the value. Values example 4003 and I'm trying to update ImageFileName
column to 4003.jpg
but QuestionId
is INT
. I tried to be INT
but did not do it. Thanks for help
UPDATE Questions
SET ImageFileName = (QuestionId + '.jpg')