I am trying to select from a table where values of one of the columns is equal to values of a list. For example:
TABLE
------------
ID price
a 100
b 200
...
z 2600
python list: ["a", "d" , "e"]. And i want to find the prices of each of those IDs. The obvious way of doing this is to do a JOIN on ID but that list is not a table. what should i do?