You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user-java@ibatis.apache.org by Larry Meadors <la...@gmail.com> on 2009/04/15 18:16:08 UTC

Re: how to update a column value by old column value within update statement in ibatis?

You would say:

<update name='blah'>
  update foo_table set column=column+1 where name='abc'
</update>

Larry