>데이터 베이스 >MySQL 튜토리얼 >PostgreSQL 列所有表结构的查询语句

PostgreSQL 列所有表结构的查询语句

WBOY
WBOY원래의
2016-06-07 17:26:581178검색

PostgreSQL 列所有表结构的查询语句 SELECT tablename FROM pg_tables WHERE tablename NOT LIKE

PostgreSQL 列所有表结构的查询语句

SELECT  tablename  FROM  pg_tables 
WHERE  tablename  NOT  LIKE  'pg%' 
AND tablename NOT LIKE 'sql_%'
ORDER  BY  tablename;

查询表t_appointment_apply表的字段信息
SELECT a.attnum,a.attname AS field,t.typname AS type,a.attlen AS length,a
.atttypmod AS lengthvar,a.attnotnull AS notnull from pg_class c,pg_attribute a,pg_type t where c.relname='t_appointment_apply' and a.attnum>0 and a.attrelid=c.oid and a.atttypid=t.oid

linux

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:Hive外连HBase表다음 기사:Oracle 配置 catalog