Jump to content

#1064 when import a trigger


Bartjuh1994

Recommended Posts

Hi All,

 

When i add a trigger via SQL, i get this error:

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 4

 

The trigger i've tried to import:

CREATE TRIGGER updatestock AFTER UPDATE ON ps_stock_available
FOR EACH ROW
BEGIN
UPDATE ps_product_shop SET active=0 WHERE id_product IN (SELECT id_product FROM ps_stock_available WHERE quantity=0);
UPDATE ps_product_shop SET active=1 WHERE id_product IN (SELECT id_product FROM ps_stock_available WHERE quantity>0);
END

i hope someone can help me.

Version MySQL: 5.5.21

Link to comment
https://forums.phpfreaks.com/topic/278322-1064-when-import-a-trigger/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.