Postgresql 中文操作指南
53.6. pg_attrdef #
pg_attrdef 目录存储列默认值。列的主要信息存储在 pg_attribute 中。只有已明确设置默认值列才会有相应条目。
Table 53.6. pg_attrdef Columns
Column Type Description |
oid oid Row identifier |
adrelid oid (引用 pg_class . oid )此列所属的表 |
adnum int2 (引用 pg_attribute . attnum )列的数目 |
adbin pg_node_tree 列默认值,以 nodeToString() 形式表示。使用 pg_get_expr(adbin, adrelid) 将其转换为 SQL 表达式。 |