首页上一页 1 下一页尾页 1 条记录 1/1页
import
psycopg2
conn
=
psycopg2.connect(host
=
"***"
, port
=
5432
,
user
=
"postgres"
, password
=
"***"
,
database
=
'VionCount'
#
)
# print("数据库连接成功")
#获取游标
curs
=
conn.cursor()
sql
=
""" select * from d_mall_hour_count_data where countdate = '2021-07-01'; """
curs.execute(sql)
rows
=
curs.fetchall()
#获取所有数据
print
(rows)
执行 查询指定日期,查询出来数据为空。在sql中 是可以查到数据的。 countdate = '2021-07-01 这个的问题出在哪里