Get list of column names from a Firebird database table

后端 未结 2 1573
一整个雨季
一整个雨季 2021-02-08 04:49

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

ie.

Firebird table:

| name | id | phone_number |

get list like this:

2条回答
  •  -上瘾入骨i
    2021-02-08 05:18

    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';
    

    I tried this in firebird 2.5 and it works.

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

提交回复
热议问题