就比如说我要select这个list集合中包含的字段的值,我该怎么做?
select
#{item,jdbcType=VARCHAR}
from bus_bitem
where proc_inst_id = #{var.processInstanceId,jdbcType=VARCHAR}
这样写就一直报错
就比如说我要select这个list集合中包含的字段的值,我该怎么做?
select
#{item,jdbcType=VARCHAR}
from bus_bitem
where proc_inst_id = #{var.processInstanceId,jdbcType=VARCHAR}
这样写就一直报错
select
foreach items="o" colleaction="list" index="index" open="" separator="," close="" >
#{list[${index}],jdbcType=VARCHAR}
</foreach
from table
Mybatis的foreach使用在select子句中时要这样写,你试一下,我没有测试