我在http://old.nabble.com/insert-statement-td21157498.html上找到了这个 我想做同样的事情。我的表中有两列。我可以通过映射 hashmap 键来插入 hash map 值到列名。现在我想将键值对放在表中,而不考虑键名。
从上面的链接粘贴。
我想写一个动态插入语句,但是字段和值都是动态的。
我是说
<insert id="someIDhere" parameterClass="java.util.HashMap">
insert into table_one (
!!! dynamic list of keys from the HashMap
) values (
!!! values
);
</insert>