I'm trying to pass parameters through sqldf in python:
id = '001F5'
q = """select * from df where id= %id; """
test = sqldf(q, globals())
I've tried many things e.g. +id, "+id;"" and %id etc and nothing works, is it possible to do this at all?
Many Thanks