Right now my code looks like:
SELECT *
FROM Table
WHERE Id in ('123','456','789')
And I want to make the list a variable so that the code would look something like this:
Id_list = ('123','456','789')
SELECT *
FROM Table
WHERE Id in Id_list
I'm not super familiar with SQL, I'm sorry if this is obvious or my description uses the wrong terminology. Thanks!
