将est datetime传递给MySql

时间:2013-05-04 13:26:10

标签: python mysql python-2.7

在MySql db中有DATETIME类型的列。我需要通过此列选择记录 - 那些小于当前est日期的记录。我使用Python - datetime of a specific timezone中的代码来确定最新日期:

import MySQLdb
import datetime

class EST(datetime.tzinfo):
    def utcoffset(self, dt):
      return datetime.timedelta()

    def dst(self, dt):
        return datetime.timedelta(0)


def get_est():
    return datetime.datetime.now(EST()) 

这是一个选择请求:

a = 'SELECT * FROM Table1 WHERE Date <= %s' % get_est()
print a
cursor.execute(a)
data = cursor.fetchall()
for item in data:
  print item

此时,我有一个错误:

File "/usr/lib/python2.7/dist-packages/MySQLdb/connections.py", line 36, in defaulterrorhandler
    raise errorclass, errorvalue
_mysql_exceptions.ProgrammingError: (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '= 2013-05-04 13:23:21.776521+00:00' at line 1")

我如何摆脱它?请注意,我必须使用当前的est日期时间并将其传递给sql请求。

select * FROM Table1 WHERE Date <= '2013-05-04 13:34:03.461407+00:00'

1 个答案:

答案 0 :(得分:1)

看起来您的日期值不在引号中。

a = "SELECT * FROM Table1 WHERE Date <= '%s'" % get_est()

(我不知道python,所以如果我的语法不正确,我会道歉。)