Pull Data using SQL and JMP string in JSL script
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')"
...