我正在使用sqlalchemy连接到一个mysql数据库示例,并尝试通过执行以下操作查看表:
engine = create_engine('mysql+pymysql://root:@localhost:3306', echo=True)
engine.execute("USE mydb;")
q = engine.execute("show tables;")
our_tables = q.fetchall()
print(our_tables)
当我尝试以这种方式打印表格时,它显示为空白。但是,当我检查数据库时,这些表的一切看起来都很好。
如何正确查看表?
暂无答案!
目前还没有任何答案,快来回答吧!