问题描述
我想写这么句sql,insert into table(a,....) values( select b from table_b where c='xx',....)现在在ibatis里,我在xml文件里这么写<insert id="insert" parameterClass="ClassA"> insert into table(a,....) values( select b from table_b where c=#property#,....)</insert>property是ClassA的一个属性,但是执行报错,ORA-00936: missing expression,看ibatis生成的sql是[preparestatement]: insert into table(a,....) values( ?,....) 然后在?处绑定的是select b from table_b where c='xx'但我要的效果是[preparestatement]: insert into table(a,....) values( select b from table_b where c=?,....)接触ibatis不久,不知道问题有没有说清楚,希望各位帮忙说下这个应该怎么写。p.s.用的是ibatis2.3 问题补充:vegas51225 写道
解决方案
你是SQL写错了吧。insert into table_a (aa,bb) (selece aa,bb from table_b)
时间: 2024-09-20 00:45:36