I would like to determine whether the value of an expression is equal to any of the values of a list contained in a specified column field:
Suppose "fieldname" contains (value1, value2, ....)
What is the correct syntax for:
SELECT *
FROM Orders
WHERE ShipRegion In (fieldname)
Thank You very much.
Suppose "fieldname" contains (value1, value2, ....)
What is the correct syntax for:
SELECT *
FROM Orders
WHERE ShipRegion In (fieldname)
Thank You very much.