从Firebird数据库表获取列名列表

从Firebird数据库表获取列名列表

本文介绍了从Firebird数据库表获取列名列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

How do you get a list of the column names in an specific table?

即.

Firebird表格:

Firebird table:


| name | id | phone_number |

获取这样的列表:

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

推荐答案

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

if you want to get a list of column names in an specific table, this is the sql query you need:

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

我在firebird 2.5中尝试过此方法,并且可以正常工作.

I tried this in firebird 2.5 and it works.

您的表名周围的单引号是必不可少的

the single quotes around YOUR-TABLE-NAME are necessary btw

这篇关于从Firebird数据库表获取列名列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 23:44