zoukankan      html  css  js  c++  java
  • mysql处理百万数据遍历速度提升(遍历图片名字是否存在)

    CREATE DEFINER=`root`@`localhost` FUNCTION `fun_wcmappendix02`(image_name VARCHAR(50)) RETURNS int(11)
    BEGIN
      DECLARE sTemp LONGTEXT; 
       DECLARE sTempChd LONGTEXT; ##4g
     
       SELECT GROUP_CONCAT(t.APPFILE) into sTemp from wcmappendix t where APPFILE not like 'http%';
       SELECT GROUP_CONCAT(img) into sTempChd from test2 where img not like 'http%';
     
     if  FIND_IN_SET(image_name,sTemp)>0 OR FIND_IN_SET(image_name,sTempChd)>0 THEN
       RETURN 1;
     ELSE
       RETURN 0;
     end IF;
    END
    

      调用

    package test;
    import java.sql.Connection;
    
    import java.sql.DriverManager;
    
    import java.sql.SQLException;
    import java.sql.Types;
    
    import com.mysql.jdbc.CallableStatement;
    
    
    public class deleteImage2 {  
        public static void main(String[] args) {  
            Connection connection = null;  
            //用于执行 SQL 存储过程的接口  
            try {  
                Class.forName("com.mysql.jdbc.Driver");  
                String url = "jdbc:mysql://localhost:3306/gonganbao?useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&tcpRcvBuf=1024000";  
                String user = "root";  
                String password = "123123";  
                connection = DriverManager.getConnection(url, user, password);  
                String sql = "{?=call fun_wcmappendix02(?)}";  
      
                //调用存储过程  
                CallableStatement cstmt = (CallableStatement) connection.prepareCall(sql);
                cstmt.registerOutParameter(1,Types.INTEGER);
                cstmt.setString(2,"W020180109595367694267.jpg");
                cstmt.execute();
                int value = cstmt.getInt(1);
                System.out.println(value);
            } catch (ClassNotFoundException e) {  
                e.printStackTrace();  
            } catch (SQLException e) {  
                e.printStackTrace();  
            } catch (Exception e) {  
                e.printStackTrace();  
            } finally {  
                try {  
                        connection.close();  
                } catch (SQLException e) {  
                    e.printStackTrace();  
                }  
            }  
        }  
    }  
    

      

  • 相关阅读:
    POJ
    CodeForces
    51Nod 1256 扩展欧几里得求乘法逆元
    SDUT 3917
    SDUT 3918
    从零开始实现asp.net MVC4框架网站的用户登录以及权限验证模块 详细教程
    bootstrap资料索引
    理解Login函数
    细说@Html.ActionLink()的用法
    RGB颜色对照表
  • 原文地址:https://www.cnblogs.com/qinyios/p/11417290.html
Copyright © 2011-2022 走看看