mysql连接like模糊查询

 if (productname != null && productname.trim().length() > 0) {
            builder.append(" AND t3.productname like ? ");
            params.add("%"+productname+"%");
        }
        if (recipientsname != null && recipientsname.trim().length()>0){
            builder.append(" AND t1.recipientsname like ? ");
            params.add("%"+recipientsname+"%");
        }
        builder.append(" ORDER BY t1.create_time DESC ");
        builder.append(" limit ?,? ");
        params.add(start);
        params.add(limit);

 以上的添加,已经证实是可以成功的。之前看了大部分的连接都是不能通过

t3.productname =?

param.add("%"+productname+"%"); 行不通

t3.productname '%?%'  这样同样也不行  如果这样连接,会出现数组下标越界,因为此时的like后边的?不是我们正常想的那样,按照一个参数的 ? 去编译。要谨慎,小白搞了好久才明白过来。

 

转载于:https://www.cnblogs.com/persister-Rocky/p/7002809.html

你可能感兴趣的:(mysql连接like模糊查询)