-
Hi. Please review the images provided below. I'm able to see that the column values are separated by a coma for the Value and semicolon for the Label, how can a create an Update statement that will set this column with multiple values e.g. 0,1,2 |
Beta Was this translation helpful? Give feedback.
Answered by
MarkMpn
Oct 4, 2023
Replies: 1 comment 1 reply
-
You should be able to do this like: UPDATE systemuser
SET new_approver_region = '0,1,2'
WHERE … |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
MarkMpn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You should be able to do this like: