置百丈玄冰而崩裂,掷须臾池水而漂摇。

[数据库]PG 常用数据库语句收藏

数据库 强强

PG 常用数据库语句收藏


查看表信息:

SELECT
s.column_name, --列名
s.data_type, --类型
s. character_maximum_length, --最大长度
s. column_default, --默认值
s. is_nullable , --是否为空
s.table_name, --表名
s.table_schema --schema
FROM
information_schema.columns s
where 1=1


发表评论:

验证码