gpt4 book ai didi

mysql - 在 MySql 中查询不同的列名

转载 作者:行者123 更新时间:2023-11-29 05:15:23 25 4
gpt4 key购买 nike

如果我有下表:

[table_1]
id
name
address
zip

[table_2]
id
power_source
zip

我需要一个将返回 DISTINCT 列名的查询:

id
name
address
power_source
zip

table 的数量很多,但具体数量未知。我需要整个数据库的不同列名。

最佳答案

information_schema 对这类信息很有用...

SELECT DISTINCT `column_name` 
FROM `information_schema`.`columns`
WHERE table_schema = "[my schema name]";

关于mysql - 在 MySql 中查询不同的列名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33641373/

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