gpt4 book ai didi

python - 从 Firebird 数据库表中获取列名列表

转载 作者:太空狗 更新时间:2023-10-29 20:11:11 24 4
gpt4 key购买 nike

如何获取特定表中的列名列表?

即。

Firebird 表:

| name | id | phone_number |

像这样获取列表:

columnList = ['name', 'id', 'phone_number']

最佳答案

如果你想获取特定表中的列名列表,这是你需要的sql查询:

select rdb$field_name from rdb$relation_fields
where rdb$relation_name='YOUR-TABLE_NAME';

我在 firebird 2.5 中试过了,它有效。

顺便说一句,YOUR-TABLE-NAME 周围的单引号是必要的

关于python - 从 Firebird 数据库表中获取列名列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19258749/

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