Using multiple values can be accomplished by using an IN statement and bind literals in automation and replace the entire IN clause.
The variable would be…
a
string type
value = (1,2,3) note: include the parentheses
SQL would be like below. At run time the #a# will be replaced with the (1,2,3)
select * from ADDRESS
where region_id IN #a#