I've got interesting question.
How can I turn '1,4'
into enum 1,4
to be able to pass it in expression like this:
SELECT DICT_ID AS ITEM_ID FROM DICTIONARY WHERE SERIAL_NUMBER IN (#ARGUMENT#)
Where #ARGUMENT#
is '1,4'
.
In short, I want to make this query work like if we've passed not a string, but numbers.
Why am I passing '1,4' insteard of just passing numbers - well not me passing this string in query, but some application.
I can edit query, but not #ARGUMENT#