Hi all,
How can I insert a list from JSL to my SQL query?
Currently I am using this to get the list that I need:
NameList = Associative array( dtNames:"Names" ) << Get Keys;
And will use it as a SQL query
dt = Open Database( "DSN=db;UID=uname;PWD=pw;APP=JMP;DATABASE=dbname;",
"select name, age, address, sex
from db_Details
where name in ('"||NameList||"')", // Im getting an error here
"Details" );
I am using JMP 15