gpt4 book ai didi

mysql - 数据库中所有表的字段总数

转载 作者:可可西里 更新时间:2023-11-01 06:44:13 26 4
gpt4 key购买 nike

我有一个包含数百个表的庞大数据库,我想找出所有表中定义的总字段(列)。

有没有可以给我的sql查询?如果没有,最好的方法是什么?

最佳答案

这是你想要的吗?

select count(*)
from information_schema.columns
where table_schema = 'your_schema'

你可以这样运行看看是否合理:

select table_name, column_name
from information_schema.columns
where table_schema = 'your_schema'
order by 1, 2

关于mysql - 数据库中所有表的字段总数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6082724/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com