I have function in Snowflake where I would like to input a variable there contains a IN statment for a query.
It works when I only have one item:
select * from table(my_function('62696'))
But I can not figure out how to do when I have more items, I have tried different ways like:
select * from table(my_function(''62696','62695''))
select * from table(my_function('\'62696\',\'62695\''))
But no of them does work.