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;

  • 相关阅读:
    MongoDB面试题
    spider 爬虫文件基本参数(3)
    命令行工具(2)
    初始scrapy,简单项目创建和CSS选择器,xpath选择器(1)
    数据分析实例(离海洋距离与最高温度之间的关系分析)
    路飞业务分析
    MYSQL 主从复制,读写分离(8)
    pyquery 学习
    selenium case报错重新执行
    python小技巧
  • 原文地址:https://www.cnblogs.com/zeze/p/6296626.html
Copyright © 2011-2022 走看看