Function should take a stringlist of the values or columns to be used, and an sql query string to evaluate.
Will then need to find a way to insert the values into the sql query.
How can the values be linked to the query?
- Maybe the sql query uses a, b, c etc as placeholders for the values. The function can then replace a, b, c with the values from the stringlist in the order they appear.
Function should take a stringlist of the values or columns to be used, and an sql query string to evaluate.
Will then need to find a way to insert the values into the sql query.
How can the values be linked to the query?