Mybatis中出现java.sql.SQLException: 无效的列类型: 1111
原因1:where 占位符被传递了 NULL
解决方法:
明确字段类型#{str,jdbcType=VARCHAR}(字符类型),#{num,jdbcType=NUMERIC}或#{num,jdbcType=DECIMAL}(数值类型)