I have sql statement like
- UPDATE MY_TASK
- SET TASK_STATUS="DONE"
- WHERE TASK_ID in('101', '212', '345',......);
How can I write liquibase change set for this
- <changeSet author="aman" id="REMOVE_MY_TASK">
- <update tableName="MY_TASK">
- <column name="STATUS" value="DONE" />
- <where>????</where>
- </update>
- </changeSet>