Returns a list of attributes from a table in a database.
sql
list-attributes table &key database owner => result
table⇩ |
A table in the database. |
database⇩ |
A database. |
owner⇩ | nil , :all or a string. |
result |
A list of attributes. |
The function list-attributes
returns a list of attributes from table in database, which has a default value of *default-database*.
If owner is nil
, only user-owned attributes are considered. This is the default.
If owner is :all
, all attributes are considered.
If owner is a string, this denotes a username and only attributes owned by owner are considered.
LispWorks® User Guide and Reference Manual - 01 Dec 2021 19:30:56