zoukankan      html  css  js  c++  java
  • MySQL 缓存表建触发器

    BEGIN
    		IF (select new.name NOT REGEXP (SELECT IF((select filterword from t_crawl_configuration where id=new.crawl_id)='','fzuir',(select filterword from t_crawl_configuration where id=new.crawl_id))) and new.price>=(select lowest_price from t_crawl_configuration where id=new.crawl_id))  then
    						insert into t_product_data(crawl_url_id,pid,name,price,crawl_id) values(new.crawl_url_id,new.pid,new.name,new.price,new.crawl_id);
    		end if;
    END

    插入表格过程中建立触发器

    -- 触发器 同时插入有用数据
    DROP TRIGGER IF EXISTS t_afterinsert_on_t_product;
    CREATE TRIGGER t_afterinsert_on_t_product
    AFTER INSERT ON t_product
    FOR EACH ROW
    BEGIN
    IF (select new.name NOT REGEXP (SELECT IF((select filterword from t_crawl_configuration where id=new.crawl_id)='','fzuir',(select filterword from t_crawl_configuration where id=new.crawl_id))) and new.price>=(select lowest_price from t_crawl_configuration where id=new.crawl_id)) then
    insert into t_product_data(crawl_url_id,pid,name,price,crawl_id) values(new.crawl_url_id,new.pid,new.name,new.price,new.crawl_id);
    end if;
    END;


    -- 触发器 同时插入有用数据
    DROP TRIGGER IF EXISTS t_afterinsert_on_t_product_test;
    CREATE TRIGGER t_afterinsert_on_t_product_test
    AFTER INSERT ON t_product_test
    FOR EACH ROW
    BEGIN
    IF (select new.name NOT REGEXP (SELECT IF((select filterword from t_crawl_configuration where id=new.crawl_id)='','fzuir',(select filterword from t_crawl_configuration where id=new.crawl_id))) and new.price>=(select lowest_price from t_crawl_configuration where id=new.crawl_id)) then
    insert into t_product_data(crawl_url_id,pid,name,price,crawl_id) values(new.crawl_url_id,new.pid,new.name,new.price,new.crawl_id);
    end if;
    END;

  • 相关阅读:
    RESTful API 设计指南
    SpringBoot系列
    spring boot RESTFul
    mark--唧唧歪歪--2021.2.8
    接口踩坑:Status (blocked:other)
    获取layer.open弹出层的返回值
    VUE_CLI4.5 VUE+Cesium
    Android Studio AVD 模拟器 自带虚拟机 联网 连接网络
    一文搞懂TCP与UDP的区别
    springboot打包成war,部署到tomcat无法访问的问题
  • 原文地址:https://www.cnblogs.com/zeze/p/6296626.html
Copyright © 2011-2022 走看看