dootch Posted April 3, 2006 Share Posted April 3, 2006 I forgot to add an image column to my db I just want it to be vendor_id.jpg I figure its something close to this but I cant get it. [code]UPDATE `products` SET `image` = vendor_id,'.jpg' [/code]Help please Link to comment https://forums.phpfreaks.com/topic/6524-mysql-update-query/ Share on other sites More sharing options...
ToonMariner Posted April 3, 2006 Share Posted April 3, 2006 If you have phpmyadmin then just go in and add your column with that file as teh default value.If you HAVE to do it through php then..$query = mysql_query("ALTER TABLE `image` ADD `im` VARCHAR( 255 ) DEFAULT 'image.jpg' NOT NULL ");now varchar limits you to 255 characters - if you need more then use teh text datatype; NOTE you cannot set a default value for text type so you will have to do and extra update after.PS if that fails it will be down to the privilages you have on teh database Link to comment https://forums.phpfreaks.com/topic/6524-mysql-update-query/#findComment-23652 Share on other sites More sharing options...
dootch Posted April 4, 2006 Author Share Posted April 4, 2006 Thanks Solved [code]UPDATE products SET image = CONCAT(product_sku, '.jpg ')[/code] Link to comment https://forums.phpfreaks.com/topic/6524-mysql-update-query/#findComment-23999 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.