如何在python中将日期值传递给sql查询

时间:2013-01-16 06:57:37

标签: python

import MySQLdb

我实际上是尝试使用包含id和日期的where子句从val中选择bars。这种语法对于传递日期是否正确?

 def get_bars(foo_id,cr_date):
    cursor = mysql.cursor()
    cursor.execute("""select val from bars where foo_id = %s and cr_date = %s""", (foo_id, cr_date))
    row = cursor.fetchone()

0 个答案:

没有答案