美文网首页zhaoyqiu的数据分析进阶之路1.0
【2020-06-17】如何在python中查看sqlite3中

【2020-06-17】如何在python中查看sqlite3中

作者: 喝奶茶不加奶茶 | 来源:发表于2020-06-17 14:47 被阅读0次

问题:
如何在python中查看sqlite3中某数据库中的tables?
问题分析及解决办法:
sqlite3数据库里表的信息存储在了一个名为sqlite_master的表中
因此可以通过这条语句来查看数zhi据库中所有表的名称

SELECT name FROM sqlite_master WHERE type='table';

相应的python语句

con = sqlite3.connect('database.db')
cursor = con.cursor()
cursor.execute("SELECT name FROM sqlite_master WHERE type='table';")
print(cursor.fetchall())

相关文章

网友评论

    本文标题:【2020-06-17】如何在python中查看sqlite3中

    本文链接:https://www.haomeiwen.com/subject/kahsxktx.html