Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
Sql = """select * from table1 where dt in (%(dt)s) union all select * from table2 where dt in(%(dt)s)""" data1 = "(select current_date - 1)" cur.execute(SQL, {"dt": data_1} )
Sql = “”” select * from table1 where dt in (%s) union all select * from table2 where dt in(%s)”””