Question
Easy question concerning multiple values and lists
This should be easy for someone.
If I have a column in a database that has a value of 463,241 (the numbers 463 and 241) and these numbers are input to a query, how can I make these number like "select first_name from faculty where faculty_id in (463, 241)"
Is there a way to convert the numbers in that column to something like "463", "241" so that they can be used in a Where IN clause? I tried ListAppend but that didn't seem to work. Some type of list function so that the query correctly processes the values?
If I have a column in a database that has a value of 463,241 (the numbers 463 and 241) and these numbers are input to a query, how can I make these number like "select first_name from faculty where faculty_id in (463, 241)"
Is there a way to convert the numbers in that column to something like "463", "241" so that they can be used in a Where IN clause? I tried ListAppend but that didn't seem to work. Some type of list function so that the query correctly processes the values?
