我有一个SQL查询,我想在where查询之外指定日期,以便可以根据需要进行更改。以下代码无效,我不知道还有什么可以尝试。
startdate='2018-01-01'
test=pd.read_sql("""select * from database.table where date > :startdate ; """ , connection)
答案 0 :(得分:0)
这个怎么样
test=pd.read_sql('select * from database.table where date > {}'.format(startdate) , connection)