标签: python python-2.7 datetime sqlite
我可以将存储在数据库表中的 text 数据类型的日期与使用python datetime找到的今天日期进行比较吗? 我在python中导入了sqlite和datetime。
我的python代码的屏幕截图。
https://i.stack.imgur.com/Y0Uxr.jpg
答案 0 :(得分:1)
使用parameter substitution。
parameter substitution
<强>实施例强>
c.execute("select name from table where date =?", (x,)
<强> MoreInfo 强>