Question on query. #15
Answered
by
bokwoon95
rinuthomashm
asked this question in
Q&A
-
Hallo team, Good day to you. update table1 set row1 = row1 + 15 where id = 25. |
Beta Was this translation helpful? Give feedback.
Answered by
bokwoon95
May 13, 2022
Replies: 1 comment 1 reply
-
Hi, it looks something like this: q := sq.
Update(tbl).
Set(
tbl.ROW1.Set(sq.Fieldf("? + ?", tbl.ROW1, 15)),
).
Where(tbl.ID.EqInt(25)) Hope that helps. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
rinuthomashm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, it looks something like this:
Hope that helps.