python django查询数据库中所有表名
时间: 2023-09-14 12:14:22 浏览: 204
c#_获取数据库中所有表名称的方法
4星 · 用户满意度95%
可以使用以下代码查询数据库中所有表名:
```python
from django.db import connection
# 获取数据库连接
cursor = connection.cursor()
# 查询所有表名
cursor.execute("show tables")
tables = cursor.fetchall()
# 打印所有表名
for table in tables:
print(table[0])
```
阅读全文