gpt4 book ai didi

php - MySQL:information_schema.columns 错误?

转载 作者:行者123 更新时间:2023-11-29 04:29:26 24 4
gpt4 key购买 nike

为什么 information_schema.columns 总是重复结果?例如,

SELECT column_name 
FROM information_schema.columns
WHERE table_name = 'root_blocks'

我会得到这个,

column_name

blc_id
blc_email
cat_id
blc_created
blc_updated
blc_id
blc_email
cat_id
blc_created
blc_updated

当我尝试通过 phpmyadmin 查询时,其他表上的重复项变得不可预测。

如何让它不重复?

谢谢。

编辑:

enter image description here

最佳答案

SELECT column_name 
FROM information_schema.columns
WHERE table_name = 'root_blocks'
AND `table_schema` = 'SCHEMA_NAME'

请试试这个。

如果您想从所有数据库中进行选择并获得唯一的列名,那么请试试这个..

SELECT DISTINCT(column_name) 
FROM information_schema.columns
WHERE table_name = 'root_blocks'

关于php - MySQL:information_schema.columns 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5434550/

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