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()