Is it possible to use an array or dictionary as the table in a SQL statement.
e.g. strSQL = \"SELECT * FROM \" & myArray & \"\"
Thanks in advance.
SQL array like search function:
SELECT TABLEARRAY.* FROM ( SELECT P.* FROM Person P WHERE P.id IN (1, 2, 3, 4, 18) --This would be your array with ID's ) AS TABLEARRAY