I'd like a bit of help please with an SQL command
I have some text and I need to add and an extension to the end of the string on anything.
I've tried this but it doesn't work the way I want it to:
UPDATE table1 SET column1 = '%TEST%' WHERE 'column1' LIKE '%TEST%' + '.exe'
as the output I'd like is
TEST1.exe
TEST2.exe
TEST3.exe