直接在mysql中正常运行时,MySQL TRIGGER无法与$ wpdb-> query一起使用

时间:2018-08-22 08:57:13

标签: php mysql database wordpress

HERE是我的触发器查询,当它直接在mysql数据库中触发时,它工作正常,但是当我在wordpress中使用此查询时,它不起作用。 所以您能给我一些解决方案,让我如何使用wordpress运行此查询吗?

drop trigger if exists table_1;

DELIMITER $$
CREATE TRIGGER table_1
AFTER 
INSERT ON table_2
FOR EACH ROW 
begin

INSERT INTO table_3 ( place_id, store_name, store_address) VALUES (new.place_id, new.store_name, new.vicinity);

end $$
DELIMITER ;

谢谢。

0 个答案:

没有答案