As of now, I am iterating through a pandas dataframe one by one and firing a select query to check whether the data is present or not, to the database based on few dataframe values.
for index, frame in dataframe.iterrows():
# select query based on multiple frame['column_1'],frame['column_2']
It would take forever if the data is huge. I was just curious, is there a way where I can fire all the select at once and filter out my dataframe for which I get a result back.?