我正在使用 python psycopg2 连接到 PostGreSQL 并根据时间戳获取一些数据。create_date 定义如下:
create_date | timestamp without time zone | not null
我的查询在这里
SELECT *
FROM table_name
WHERE EXTRACT(EPOCH FROM create_date) < 1367945358;
但它会抛出这样的错误,ConnectionError: Transaction failed, failure was 'int' object does not support indexing
知道为什么吗?