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