mybatis中模糊查询的语法: 有多个模糊查询的条件: SELECT * FROM tableName WHERE name LIKE '%${text1}%' AND othername LIKE '%${text2}%' ;这里的text1和text2需要指明 只有一个模糊查询的条件: SELECT * FROM tableName WHERE name