I want to take a table as represented by a multidimensional string array (column names in another array) and use a SQL SELECT statement to get a subset of rows.
The Catch: - the table is input by the user (different table each time) - the SQL is also input by the user
Do I need to: 1) Create a table in SQL 2) Populate the table in SQL 3) Query the table
or is the a simpler solution? E.g. converting the multidimensional array to a DataTable and then running the SQL on that object?