gpt4 book ai didi

mysql - 仅显示表中 MySQL 中列的名称

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

select FIELD from (show columns FROM users)

这似乎应该可行,因为 show columns 正在显示有关该表的信息表。我真的不明白为什么这不能正确显示,但无论如何这可能不是提取此信息的最简单方法。

最佳答案

您可以从信息模式数据库中获取列名、类型和其他元信息。示例:

mysql> select column_name from information_schema.columns where table_schema='test' and table_name='t3';
+-------------+
| column_name |
+-------------+
| col1 |
| col2 |
| col3 |
| col4 |
| col5 |
+-------------+
5 rows in set (0.00 sec)

关于mysql - 仅显示表中 MySQL 中列的名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6585822/

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