I tried to find the answer to this question, but could not.
So, for example, I have this table:
Table:
col1 | col2 123 0 124 1
and I want to change the value of col2 to 1, and thatβs how I am trying to do this:
<changeSet author="myName" id="7799"> <sql> UPDATE TABLENAME; SET COL1='1' WHERE col1='123'; </sql> </changeSet>
Alas, that will not work. Therefore, I was wondering, is it possible to do this with lipibase? Since most of the tags in the documentation are related to creating a table, adding columns, etc.
database oracle liquibase
user2187935
source share