Create
tablename
tableoid
[bootstrap
] [shared_relation
] [rowtype_oid
OID
] (name1
= type1
[힘이 아님
| FORCE NULL
] [, name2
= type2
[힘이 아님
| FORCE NULL
], ...])이름이 지정된 무지개 토토 만들기tablename
tableoid
, with the columns given in parentheses.
다음 열 유형은에 의해 직접 지원됩니다.bootstrap.c
: bool
, BYTEA
, char
(1 byte),이름
, int2
, int4
, Regproc
, regclass
, Regtype
, 텍스트
, OID
, TID
, xid
, CID
, int2vector
, oidvector
, _int4
(array),_text
(array),_oid
(array),_char
(array),_aclitem
(배열). 다른 유형의 열이 포함 된 무지개 토토을 만들 수는 있지만 이후까지는 할 수 없습니다pg_type
적절한 항목으로 만들어져 채워졌습니다. (이는 효과적으로 이러한 열 유형 만 부트 스트랩 카탈로그에서 사용할 수 있음을 의미하지만 비 부트 스트랩 카탈로그에는 내장 유형이 포함될 수 있습니다.)
언제bootstrap
지정되어 있으며, 무지개 토토은 디스크에서만 생성됩니다. 아무것도 입력되지 않습니다pg_class
, pg_attribute
등. 따라서 이러한 항목이 어려운 방법으로 만들 때까지 일반 SQL 작업으로 무지개 토토에 액세스 할 수 없습니다 (with삽입
명령). This option is used for creatingpg_class
등. 그들 자신.
The table is created as shared ifshared_relation
is specified. The table's row type OID (pg_type
OID) can optionally be specified via therowtype_oid
절; 지정되지 않으면 OID가 자동으로 생성됩니다.rowtype_oid
절은 쓸모가 없다bootstrap
지정되어 있지만 어쨌든 문서화를 위해 제공 될 수 있습니다.)
Open
tablename
이름이 지정된 테이블 열tablename
데이터 삽입. 현재 열린 테이블이 닫혀 있습니다.
닫기
tablename
열린 테이블을 닫습니다. 테이블의 이름은 크로스 확인으로 제공되어야합니다.
삽입
(
[oid_value
] value1
value2
... )
Insert a new row into the open table usingvalue1
, value2
, etc., for its column values.
null 값은 특수 키 단어를 사용하여 지정할 수 있습니다_null_
. 식별자 또는 숫자 문자열처럼 보이지 않는 값은 단일 인용해야합니다.
선언
[고유 한
] 색인
indexname
indexoid
on
tablename
사용
Amname
(
opclass1
name1
[, ...] )
인덱스를 지정하는 색인 생성indexname
, having OIDindexoid
, 표에tablename
, using theAmname
액세스 방법. 인덱스 필드를라고합니다.name1
, name2
etc., and the operator classes to use areopclass1
, opclass2
15943_16097
토스트 선언
Toasttableoid
toastindexoid
on
tablename
Create a TOAST table for the table namedtablename
. The TOAST table is assigned OIDToasttableoid
and its index is assigned OIDtoastindexoid
. 와 마찬가지로인덱스 선언
, filling of the index is postponed.
build indices
이전에 선언 된 지수를 채우십시오.
문서에 올바른 것이 없으면 일치하지 않습니다.this formto report a documentation issue.