Hi all.
I am accessing a certain database using SQL from a JSL script.
To pull the data I want, I need to provide a specification.
The specification comes in the form of a list or matrix in JMP/JSL.
If I manually type-in the single items names, it works. =>
/* Fetch Single Items from Database*/
A = Open Database("Server Specs", "SELECT * FROM CertainFolder a WHERE a.CertainColumn IN ('A','B','C','D')");
But, since the items might be thousands, I need to find a way to use a single name representing a list (or a matrix) of the items.
Of course, like this is not working. =>
/* Fetch Data from Data Table*/
Items_M = :Items << get as matrix();
/* Fetch Data from Database*/
A = Open Database("Server Specs", "SELECT * FROM CertainFolder a WHERE a.CertainColumn IN ('^Items_M^')");
What is the simplest way to do this?
Thank you!