我需要在liquibase中运行以下更新查询,但我不确定语法。有人可以帮忙:
currentDevice
答案 0 :(得分:1)
试试这个
<update tableName="xyz.users">
<column name="email" valueComputed="(select CONCAT(username, '@gmail.com ')
from xyz.users)"/>
<where>email like '%@yahoo.com%'</where>
</update>