Viewing 8 posts - 1 through 8 (of 8 total)
Indeed, I tried this code and it works fine. I agree with you it will prevent possible error. Thank you so much
January 15, 2016 at 12:28 pm
Ok, I finally found what I needed
UPDATE `categories_images` SET `categories_image`=REPLACE (`categories_image`,'.gif','');
UPDATE `categories_images` SET `categories_image`=REPLACE (`categories_image`,'','');
Thank you!
January 15, 2016 at 6:48 am
Thank you for your help,
Actually I tried it on a backup I had.:-D In the process I try to installed, I need to repeat the process in reverse once...
January 15, 2016 at 6:30 am
If a need to remove the '.gif' for all the field on the table....
January 14, 2016 at 2:48 pm
Ok I find it...
UPDATE `categories_images` SET`categories_image`=concat(trim(`categories_image`),'.gif');
Now, I would to know if a need to reverse the process... do you have a idea?
Thanks
January 14, 2016 at 1:58 pm
OK , I resolve my error syntax:
UPDATE `categories` SET `parent_id`= 2055 WHERE `sort_order`= 1
Thank you so must 😛
January 7, 2016 at 1:00 pm
I try this :
UPDATE `categories` SET `parent_id`= 0 [2055] WHERE `sort_order`= 1
the 2055 is the value to try to applie, but I have error syntax... I use the sql...
January 7, 2016 at 12:52 pm
Viewing 8 posts - 1 through 8 (of 8 total)