I have an existing access query for example called *RunExampleQuery:
select name from table_x where date = [start];
But I can't seem to find the sql code that will run this query i.e
sql = """SELECT * FROM *RunExampleQuery WHERE [start] = ?"""
params = (datetime.date(2016,11,25))
cursor.execute(sql,params)
Thanks for your help in advance.