remero Posted January 13, 2008 Share Posted January 13, 2008 I'm new to mysql but learning, so thanks for any help. I am trying to copy a column on my table but also to add txt to the end of the copied column but cant seem to figure out how ie UPDATE MYTABLE SET IMAGEFILE=USERNAME this copies the column USERNAME to IMAGEFILE but i would like to add the txt .jpg to the end of all the entries in the IMAGEFILE column so they end up USERNAME.jpg, but i cannot seem to find a way to do this without the .jpg replacing the whole column. Quote Link to comment Share on other sites More sharing options...
GingerRobot Posted January 13, 2008 Share Posted January 13, 2008 Try: UPDATE tbl SET IMAGEFILE = CONCAT(USERNAME,'jpg') Quote Link to comment Share on other sites More sharing options...
remero Posted January 13, 2008 Author Share Posted January 13, 2008 Cheers mate worked perfect thx for the help Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.