Answers for "liquibase update row"

SQL
0

liquibase update row

<changeSet author="name" id="123">
    <update tableName="SomeTable">
        <column name="PropertyToSet" value="1" />
        <where>otherProperty = 'otherPropertyValue'</where>
    </update>
</changeSet>
Posted by: Guest on December-11-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language