warleb Posted November 1, 2006 Posted November 1, 2006 Trying to run an SQL to update all products on a certain manufacturer to be out of stock. but it throws up errors. I do know SQL but it must be different on this platform. Can anyone point me in the right direction.. SELECT * FROM `products` SET `products_status` = 0 WHERE `manufacturers_id` = 106 Cheers Steve I don't bother doing backups. I love the thrill of screwing it all up!
kagg Posted November 1, 2006 Posted November 1, 2006 update products set products_status='0' where manufacturers_id='106';
Recommended Posts
Archived
This topic is now archived and is closed to further replies.