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. Link to comment https://forums.phpfreaks.com/topic/85766-solved-newbie-question-copying-column-but-adding-txt/ 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') Link to comment https://forums.phpfreaks.com/topic/85766-solved-newbie-question-copying-column-but-adding-txt/#findComment-437977 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 Link to comment https://forums.phpfreaks.com/topic/85766-solved-newbie-question-copying-column-but-adding-txt/#findComment-438008 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.