Skip to content

Instantly share code, notes, and snippets.

@zhongxiao37
Created July 19, 2021 08:59
Show Gist options
  • Save zhongxiao37/87c99863db001d8799a01b1cb8db5ad2 to your computer and use it in GitHub Desktop.
Save zhongxiao37/87c99863db001d8799a01b1cb8db5ad2 to your computer and use it in GitHub Desktop.
Use Arel::UpdateManager to generate query
table = Dev::Account.arel_table
stmt = Arel::UpdateManager.new
stmt.table table
stmt.where(table[:sfid].eq('0010H00002Ez1waQAB'))
stmt.set("name='Tracy'")
stmt.to_sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment