バージョンごとのドキュメント一覧

SQLコマンド


<title>SQL Commands</title>

This part contains reference information for the <acronym>SQL</acronym> commands supported by <productname>PostgreSQL</productname>. By <quote>SQL</quote> the language in general is meant; information about the standards conformance and compatibility of each command can be found on the respective reference page. ここにはPostgreSQLでサポートされるSQLコマンドのリファレンス情報があります。 SQLとは一般に言語を意味し、各コマンドの標準への準拠や互換性に関する情報がそれぞれの対応するリファレンスページから分かります。

目次

ABORT — 現在のトランザクションをアボートする
ALTER AGGREGATE — 集約関数定義を変更する
ALTER COLLATION — 照合順序の定義を変更する
ALTER CONVERSION — 変換の定義を変更する
ALTER DATABASE — データベースを変更する
ALTER DEFAULT PRIVILEGES — デフォルトのアクセス権限を定義する
ALTER DOMAIN — ドメイン定義を変更する
ALTER EVENT TRIGGER — イベントトリガの定義を変更する
ALTER EXTENSION — 拡張の定義を変更する
ALTER FOREIGN DATA WRAPPER — 外部データラッパーの定義を変更する
ALTER FOREIGN TABLE — 外部テーブルの定義を変更する
ALTER FUNCTION — 関数定義を変更する
ALTER GROUP — ロールの名前またはメンバ資格を変更する
ALTER INDEX — インデックス定義を変更する
ALTER LANGUAGE — 手続き言語の定義を変更する
ALTER LARGE OBJECT — ラージオブジェクトの定義を変更する
ALTER MATERIALIZED VIEW — マテリアライズドビューの定義を変更する
ALTER OPERATOR — 演算子の定義を変更する
ALTER OPERATOR CLASS — 演算子クラスの定義を変更する
ALTER OPERATOR FAMILY — 演算子族の定義を変更する
ALTER POLICY — 行単位のセキュリティポリシーの定義を変更する
ALTER PROCEDURE — プロシージャの定義を変更する
ALTER PUBLICATION — パブリケーションの定義を変更する
ALTER ROLE — データベースロールを変更する
ALTER ROUTINE — ルーチンの定義を変更する
ALTER RULE — ルールの定義を変更する
ALTER SCHEMA — スキーマ定義を変更する
ALTER SEQUENCE — シーケンスジェネレータの定義を変更する
ALTER SERVER — 外部サーバの定義を変更する
ALTER STATISTICS — 拡張統計オブジェクトの定義を変更する
ALTER SUBSCRIPTION — サブスクリプションの定義を変更する
ALTER SYSTEM — サーバの設定パラメータを変更する
ALTER TABLE — テーブル定義を変更する
ALTER TABLESPACE — テーブル空間の定義を変更する
ALTER TEXT SEARCH CONFIGURATION — テキスト検索設定の定義を変更する
ALTER TEXT SEARCH DICTIONARY — テキスト検索辞書の定義を変更する
ALTER TEXT SEARCH PARSER — テキスト検索パーサの定義を変更する
ALTER TEXT SEARCH TEMPLATE — テキスト検索テンプレートの定義を変更する
ALTER TRIGGER — トリガ定義を変更する
ALTER TYPE — 型定義を変更する
ALTER USER — データベースロールを変更する
ALTER USER MAPPING — ユーザマップの定義を変更する
ALTER VIEW — ビュー定義を変更する
ANALYZE — データベースに関する統計を収集する
BEGIN — トランザクションブロックを開始する
CALL — プロシージャを呼び出す
CHECKPOINT — 先行書き込みログのチェックポイントを強制的に実行する
CLOSE — カーソルを閉じる
CLUSTER — インデックスに従ってテーブルをクラスタ化する
COMMENT — オブジェクトのコメントを定義する、または変更する
COMMIT — 現在のトランザクションをコミットする
COMMIT PREPARED — 二相コミット用に事前に準備されたトランザクションをコミットする
COPY — ファイルとテーブルの間でデータをコピーする
CREATE ACCESS METHOD — 新しいアクセスメソッドを定義する
CREATE AGGREGATE — 新しい集約関数を定義する
CREATE CAST — 新しいキャストを定義する
CREATE COLLATION — 新しい照合順序を定義する
CREATE CONVERSION — 新しい符号化方式変換を定義する
CREATE DATABASE — 新しいデータベースを作成する
CREATE DOMAIN — 新しいドメインを定義する
CREATE EVENT TRIGGER — 新しいイベントトリガを定義する
CREATE EXTENSION — 拡張をインストールする
CREATE FOREIGN DATA WRAPPER — 新しい外部データラッパーを定義する
CREATE FOREIGN TABLE — 新しい外部テーブルを定義する
CREATE FUNCTION — 新しい関数を定義する
CREATE GROUP — 新しいデータベースロールを定義する
CREATE INDEX — 新しいインデックスを定義する
CREATE LANGUAGE — 新しい手続き言語を定義する
CREATE MATERIALIZED VIEW — 新しいマテリアライズドビューを定義する
CREATE OPERATOR — 新しい演算子を定義する
CREATE OPERATOR CLASS — 新しい演算子クラスを定義する
CREATE OPERATOR FAMILY — 新しい演算子族を定義する
CREATE POLICY — テーブルに新しい行単位のセキュリティポリシーを定義する
CREATE PROCEDURE — 新しいプロシージャを定義する
CREATE PUBLICATION — 新しいパブリケーションを定義する
CREATE ROLE — 新しいデータベースロールを定義する
CREATE RULE — 新しい書き換えルールを定義する
CREATE SCHEMA — 新しいスキーマを定義する
CREATE SEQUENCE — 新しいシーケンスジェネレータを定義する
CREATE SERVER — 新しい外部サーバを定義する
CREATE STATISTICS — 拡張統計情報を定義する
CREATE SUBSCRIPTION — 新しいサブスクリプションを定義する
CREATE TABLE — 新しいテーブルを定義する
CREATE TABLE AS — 問い合わせの結果によって新しいテーブルを定義する
CREATE TABLESPACE — 新しいテーブル空間を定義する
CREATE TEXT SEARCH CONFIGURATION — 新しいテキスト検索設定を定義する
CREATE TEXT SEARCH DICTIONARY — 新しいテキスト検索辞書を定義する
CREATE TEXT SEARCH PARSER — 新しいテキスト検索パーサを定義する
CREATE TEXT SEARCH TEMPLATE — 新しいテキスト検索テンプレートを定義する
CREATE TRANSFORM — 新しい変換を定義する
CREATE TRIGGER — 新しいトリガを定義する
CREATE TYPE — 新しいデータ型を定義する
CREATE USER — 新しいデータベースロールを定義する
CREATE USER MAPPING — 外部サーバのユーザマップを新しく定義する
CREATE VIEW — 新しいビューを定義する
DEALLOCATE — プリペアド文の割り当てを解除する
DECLARE — カーソルを定義する
DELETE — テーブルから行を削除する
DISCARD — セッションの状態を破棄する
DO — 無名コードブロックを実行します。
DROP ACCESS METHOD — アクセスメソッドを削除する
DROP AGGREGATE — 集約関数を削除する
DROP CAST — キャストを削除する
DROP COLLATION — 照合順序を削除する
DROP CONVERSION — 符号化方式変換を削除する
DROP DATABASE — データベースを削除する
DROP DOMAIN — ドメインを削除する
DROP EVENT TRIGGER — イベントトリガを削除する
DROP EXTENSION — 拡張を削除する
DROP FOREIGN DATA WRAPPER — 外部データラッパーを削除する
DROP FOREIGN TABLE — 外部テーブルを削除する
DROP FUNCTION — 関数を削除する
DROP GROUP — データベースロールを削除する
DROP INDEX — インデックスを削除する
DROP LANGUAGE — 手続き言語を削除する
DROP MATERIALIZED VIEW — マテリアライズドビューを削除する
DROP OPERATOR — 演算子を削除する
DROP OPERATOR CLASS — 演算子クラスを削除する
DROP OPERATOR FAMILY — 演算子族を削除する
DROP OWNED — データベースロールにより所有されるデータベースオブジェクトを削除します。
DROP POLICY — テーブルから行単位のセキュリティポリシーを削除する
DROP PROCEDURE — プロシージャを削除する
DROP PUBLICATION — パブリケーションを削除する
DROP ROLE — データベースロールを削除する
DROP ROUTINE — ルーチンを削除する
DROP RULE — 書き換えルールを削除する
DROP SCHEMA — スキーマを削除する
DROP SEQUENCE — シーケンスを削除する
DROP SERVER — 外部サーバの記述子を削除する
DROP STATISTICS — 拡張統計を削除する
DROP SUBSCRIPTION — サブスクリプションを削除する
DROP TABLE — テーブルを削除する
DROP TABLESPACE — テーブル空間を削除する
DROP TEXT SEARCH CONFIGURATION — テキスト検索設定を削除する
DROP TEXT SEARCH DICTIONARY — テキスト検索辞書を削除する
DROP TEXT SEARCH PARSER — テキスト検索パーサを削除する
DROP TEXT SEARCH TEMPLATE — テキスト検索テンプレートを削除する
DROP TRANSFORM — 変換を削除する
DROP TRIGGER — トリガを削除する
DROP TYPE — データ型を削除する
DROP USER — データベースロールを削除する
DROP USER MAPPING — 外部サーバ用のユーザマップを削除します。
DROP VIEW — ビューを削除する
END — 現在のトランザクションをコミットする
EXECUTE — プリペアド文を実行する
EXPLAIN — 問い合わせ文の実行計画を表示する
FETCH — カーソルを使用して問い合わせから行を取り出す
GRANT — アクセス権限を定義する
IMPORT FOREIGN SCHEMA — 外部サーバからテーブル定義をインポートする
INSERT — テーブルに新しい行を作成する
LISTEN — 通知を監視する
LOAD — 共有ライブラリファイルの読み込みを行う
LOCK — テーブルをロックする
MERGE — テーブルの行を条件付きでINSERT、UPDATE、DELETEする
MOVE — カーソルの位置を決める
NOTIFY — 通知を生成する
PREPARE — 実行する文を準備する
PREPARE TRANSACTION — 二相コミット用に現在のトランザクションを準備する
REASSIGN OWNED — あるデータベースロールにより所有されたデータベースオブジェクトの所有権を変更する
REFRESH MATERIALIZED VIEW — マテリアライズドビューの内容を置換する
REINDEX — インデックスを再構築する
RELEASE SAVEPOINT — 設定済みのセーブポイントを解放する
RESET — 実行時パラメータの値をデフォルト値に戻す
REVOKE — アクセス権限を取り消す
ROLLBACK — 現在のトランザクションをアボートする
ROLLBACK PREPARED — 二相コミット用に事前に準備されたトランザクションを取り消す
ROLLBACK TO SAVEPOINT — セーブポイントまでロールバックする
SAVEPOINT — 現在のトランザクション内に新規にセーブポイントを定義する
SECURITY LABEL — オブジェクトに適用するセキュリティラベルを定義または変更する
SELECT — テーブルもしくはビューから行を検索する
SELECT INTO — 問い合わせの結果からの新しいテーブルを定義する
SET — 実行時パラメータを変更する
SET CONSTRAINTS — 現在のトランザクションの制約検査のタイミングを設定する
SET ROLE — 現在のセッションにおける現在のユーザ識別子を設定する
SET SESSION AUTHORIZATION — セッションのユーザ識別子、現在のセッションの現在のユーザ識別子を設定する
SET TRANSACTION — 現在のトランザクションの特性を設定する
SHOW — 実行時パラメータの値を表示する
START TRANSACTION — トランザクションブロックを開始する
TRUNCATE — 1テーブルまたはテーブル群を空にする
UNLISTEN — 通知の監視を停止する
UPDATE — テーブルの行を更新する
VACUUM — データベースの不要領域の回収とデータベースの解析(オプション)を行う
VALUES — 行セットを計算する
doc/src/sgml/ref/abort.sgml PostgreSQL documentation doc/src/sgml/ref/alter_aggregate.sgml PostgreSQL documentation doc/src/sgml/ref/alter_collation.sgml PostgreSQL documentation doc/src/sgml/ref/alter_conversion.sgml PostgreSQL documentation doc/src/sgml/ref/alter_database.sgml PostgreSQL documentation doc/src/sgml/ref/alter_default_privileges.sgml PostgreSQL documentation doc/src/sgml/ref/alter_domain.sgml PostgreSQL documentation doc/src/sgml/ref/alter_event_trigger.sgml PostgreSQL documentation doc/src/sgml/ref/alter_extension.sgml PostgreSQL documentation doc/src/sgml/ref/alter_foreign_data_wrapper.sgml PostgreSQL documentation doc/src/sgml/rel/alter_foreign_table.sgml PostgreSQL documentation doc/src/sgml/ref/alter_function.sgml PostgreSQL documentation doc/src/sgml/ref/alter_group.sgml PostgreSQL documentation doc/src/sgml/ref/alter_index.sgml PostgreSQL documentation doc/src/sgml/ref/alter_language.sgml PostgreSQL documentation doc/src/sgml/ref/alter_large_object.sgml PostgreSQL documentation doc/src/sgml/ref/alter_materialized_view.sgml PostgreSQL documentation doc/src/sgml/ref/alter_operator.sgml PostgreSQL documentation doc/src/sgml/ref/alter_opclass.sgml PostgreSQL documentation doc/src/sgml/ref/alter_opfamily.sgml PostgreSQL documentation doc/src/sgml/ref/alter_policy.sgml PostgreSQL documentation doc/src/sgml/ref/alter_procedure.sgml PostgreSQL documentation doc/src/sgml/ref/alter_publication.sgml PostgreSQL documentation doc/src/sgml/ref/alter_role.sgml PostgreSQL documentation doc/src/sgml/ref/alter_routine.sgml PostgreSQL documentation doc/src/sgml/ref/alter_rule.sgml PostgreSQL documentation doc/src/sgml/ref/alter_schema.sgml PostgreSQL documentation doc/src/sgml/ref/alter_sequence.sgml PostgreSQL documentation doc/src/sgml/ref/alter_server.sgml PostgreSQL documentation doc/src/sgml/ref/alter_statistics.sgml PostgreSQL documentation doc/src/sgml/ref/alter_subscription.sgml PostgreSQL documentation doc/src/sgml/ref/alter_system.sgml PostgreSQL documentation doc/src/sgml/ref/alter_table.sgml PostgreSQL documentation doc/src/sgml/ref/alter_tablespace.sgml PostgreSQL documentation doc/src/sgml/ref/alter_tsconfig.sgml PostgreSQL documentation doc/src/sgml/ref/alter_tsdictionary.sgml PostgreSQL documentation doc/src/sgml/ref/alter_tsparser.sgml PostgreSQL documentation doc/src/sgml/ref/alter_tstemplate.sgml PostgreSQL documentation doc/src/sgml/ref/alter_trigger.sgml PostgreSQL documentation doc/src/sgml/ref/alter_type.sgml PostgreSQL documentation doc/src/sgml/ref/alter_user.sgml PostgreSQL documentation doc/src/sgml/ref/alter_user_mapping.sgml PostgreSQL documentation doc/src/sgml/ref/alter_view.sgml PostgreSQL documentation doc/src/sgml/ref/analyze.sgml PostgreSQL documentation doc/src/sgml/ref/begin.sgml PostgreSQL documentation doc/src/sgml/ref/call.sgml PostgreSQL documentation doc/src/sgml/ref/checkpoint.sgml PostgreSQL documentation doc/src/sgml/ref/close.sgml PostgreSQL documentation doc/src/sgml/ref/cluster.sgml PostgreSQL documentation doc/src/sgml/ref/comment.sgml PostgreSQL documentation doc/src/sgml/ref/commit.sgml PostgreSQL documentation doc/src/sgml/ref/commit_prepared.sgml PostgreSQL documentation doc/src/sgml/ref/copy.sgml PostgreSQL documentation doc/src/sgml/ref/create_access_method.sgml PostgreSQL documentation doc/src/sgml/ref/create_aggregate.sgml PostgreSQL documentation doc/src/sgml/ref/create_cast.sgml PostgreSQL documentation doc/src/sgml/ref/create_collation.sgml PostgreSQL documentation doc/src/sgml/ref/create_conversion.sgml PostgreSQL documentation doc/src/sgml/ref/create_database.sgml PostgreSQL documentation doc/src/sgml/ref/create_domain.sgml PostgreSQL documentation doc/src/sgml/ref/create_event_trigger.sgml PostgreSQL documentation doc/src/sgml/ref/create_extension.sgml PostgreSQL documentation doc/src/sgml/ref/create_foreign_data_wrapper.sgml PostgreSQL documentation doc/src/sgml/ref/create_foreign_table.sgml PostgreSQL documentation doc/src/sgml/ref/create_function.sgml PostgreSQL documentation doc/src/sgml/ref/create_group.sgml PostgreSQL documentation doc/src/sgml/ref/create_index.sgml PostgreSQL documentation doc/src/sgml/ref/create_language.sgml PostgreSQL documentation doc/src/sgml/ref/create_materialized_view.sgml PostgreSQL documentation doc/src/sgml/ref/create_operator.sgml PostgreSQL documentation doc/src/sgml/ref/create_opclass.sgml PostgreSQL documentation doc/src/sgml/ref/create_opfamily.sgml PostgreSQL documentation doc/src/sgml/ref/create_policy.sgml PostgreSQL documentation doc/src/sgml/ref/create_procedure.sgml PostgreSQL documentation doc/src/sgml/ref/create_publication.sgml PostgreSQL documentation doc/src/sgml/ref/create_role.sgml PostgreSQL documentation doc/src/sgml/ref/create_rule.sgml PostgreSQL documentation doc/src/sgml/ref/create_schema.sgml PostgreSQL documentation doc/src/sgml/ref/create_sequence.sgml PostgreSQL documentation doc/src/sgml/ref/create_server.sgml PostgreSQL documentation doc/src/sgml/ref/create_statistics.sgml PostgreSQL documentation doc/src/sgml/ref/create_subscription.sgml PostgreSQL documentation doc/src/sgml/ref/create_table.sgml PostgreSQL documentation doc/src/sgml/ref/create_table_as.sgml PostgreSQL documentation doc/src/sgml/ref/create_tablespace.sgml PostgreSQL documentation doc/src/sgml/ref/create_tsconfig.sgml PostgreSQL documentation doc/src/sgml/ref/create_tsdictionary.sgml PostgreSQL documentation doc/src/sgml/ref/create_tsparser.sgml PostgreSQL documentation doc/src/sgml/ref/create_tstemplate.sgml PostgreSQL documentation doc/src/sgml/ref/create_transform.sgml PostgreSQL documentation doc/src/sgml/ref/create_trigger.sgml PostgreSQL documentation doc/src/sgml/ref/create_type.sgml PostgreSQL documentation doc/src/sgml/ref/create_user.sgml PostgreSQL documentation doc/src/sgml/ref/create_user_mapping.sgml PostgreSQL documentation doc/src/sgml/ref/create_view.sgml PostgreSQL documentation doc/src/sgml/ref/deallocate.sgml PostgreSQL documentation doc/src/sgml/ref/declare.sgml PostgreSQL documentation doc/src/sgml/ref/delete.sgml PostgreSQL documentation doc/src/sgml/ref/discard.sgml PostgreSQL documentation doc/src/sgml/ref/do.sgml PostgreSQL documentation doc/src/sgml/ref/drop_access_method.sgml PostgreSQL documentation doc/src/sgml/ref/drop_aggregate.sgml PostgreSQL documentation doc/src/sgml/ref/drop_cast.sgml PostgreSQL documentation doc/src/sgml/ref/drop_collation.sgml PostgreSQL documentation doc/src/sgml/ref/drop_conversion.sgml PostgreSQL documentation doc/src/sgml/ref/drop_database.sgml PostgreSQL documentation doc/src/sgml/ref/drop_domain.sgml PostgreSQL documentation doc/src/sgml/ref/drop_event_trigger.sgml PostgreSQL documentation doc/src/sgml/ref/drop_extension.sgml PostgreSQL documentation doc/src/sgml/ref/drop_foreign_data_wrapper.sgml PostgreSQL documentation doc/src/sgml/ref/drop_foreign_table.sgml PostgreSQL documentation doc/src/sgml/ref/drop_function.sgml PostgreSQL documentation doc/src/sgml/ref/drop_group.sgml PostgreSQL documentation doc/src/sgml/ref/drop_index.sgml PostgreSQL documentation doc/src/sgml/ref/drop_language.sgml PostgreSQL documentation doc/src/sgml/ref/drop_materialized_view.sgml PostgreSQL documentation doc/src/sgml/ref/drop_operator.sgml PostgreSQL documentation doc/src/sgml/ref/drop_opclass.sgml PostgreSQL documentation doc/src/sgml/ref/drop_opfamily.sgml PostgreSQL documentation doc/src/sgml/ref/drop_owned.sgml PostgreSQL documentation doc/src/sgml/ref/drop_policy.sgml PostgreSQL documentation doc/src/sgml/ref/drop_procedure.sgml PostgreSQL documentation doc/src/sgml/ref/drop_publication.sgml PostgreSQL documentation doc/src/sgml/ref/drop_role.sgml PostgreSQL documentation doc/src/sgml/ref/drop_routine.sgml PostgreSQL documentation doc/src/sgml/ref/drop_rule.sgml PostgreSQL documentation doc/src/sgml/ref/drop_schema.sgml PostgreSQL documentation doc/src/sgml/ref/drop_sequence.sgml PostgreSQL documentation doc/src/sgml/ref/drop_server.sgml PostgreSQL documentation doc/src/sgml/ref/drop_statistics.sgml PostgreSQL documentation doc/src/sgml/ref/drop_subscription.sgml PostgreSQL documentation doc/src/sgml/ref/drop_table.sgml PostgreSQL documentation doc/src/sgml/ref/drop_tablespace.sgml PostgreSQL documentation doc/src/sgml/ref/drop_tsconfig.sgml PostgreSQL documentation doc/src/sgml/ref/drop_tsdictionary.sgml PostgreSQL documentation doc/src/sgml/ref/drop_tsparser.sgml PostgreSQL documentation doc/src/sgml/ref/drop_tstemplate.sgml PostgreSQL documentation doc/src/sgml/ref/drop_transform.sgml PostgreSQL documentation doc/src/sgml/ref/drop_trigger.sgml PostgreSQL documentation doc/src/sgml/ref/drop_type.sgml PostgreSQL documentation doc/src/sgml/ref/drop_user.sgml PostgreSQL documentation doc/src/sgml/ref/drop_user_mapping.sgml PostgreSQL documentation doc/src/sgml/ref/drop_view.sgml PostgreSQL documentation doc/src/sgml/ref/end.sgml PostgreSQL documentation doc/src/sgml/ref/execute.sgml PostgreSQL documentation doc/src/sgml/ref/explain.sgml PostgreSQL documentation doc/src/sgml/ref/fetch.sgml PostgreSQL documentation doc/src/sgml/ref/grant.sgml PostgreSQL documentation doc/src/sgml/ref/import_foreign_schema.sgml PostgreSQL documentation doc/src/sgml/ref/insert.sgml PostgreSQL documentation doc/src/sgml/ref/listen.sgml PostgreSQL documentation doc/src/sgml/ref/load.sgml PostgreSQL documentation doc/src/sgml/ref/lock.sgml PostgreSQL documentation doc/src/sgml/ref/merge.sgml PostgreSQL documentation doc/src/sgml/ref/move.sgml PostgreSQL documentation doc/src/sgml/ref/notify.sgml PostgreSQL documentation doc/src/sgml/ref/prepare.sgml PostgreSQL documentation doc/src/sgml/ref/prepare_transaction.sgml PostgreSQL documentation doc/src/sgml/ref/reassign_owned.sgml PostgreSQL documentation doc/src/sgml/ref/refresh_materialized_view.sgml PostgreSQL documentation doc/src/sgml/ref/reindex.sgml PostgreSQL documentation doc/src/sgml/ref/release_savepoint.sgml PostgreSQL documentation doc/src/sgml/ref/reset.sgml PostgreSQL documentation doc/src/sgml/ref/revoke.sgml PostgreSQL documentation doc/src/sgml/ref/rollback.sgml PostgreSQL documentation doc/src/sgml/ref/rollback_prepared.sgml PostgreSQL documentation doc/src/sgml/ref/rollback_to.sgml PostgreSQL documentation doc/src/sgml/ref/savepoint.sgml PostgreSQL documentation doc/src/sgml/ref/security_label.sgml PostgreSQL documentation doc/src/sgml/ref/select.sgml PostgreSQL documentation doc/src/sgml/ref/select_into.sgml PostgreSQL documentation doc/src/sgml/ref/set.sgml PostgreSQL documentation doc/src/sgml/ref/set_constraints.sgml PostgreSQL documentation doc/src/sgml/ref/set_role.sgml PostgreSQL documentation doc/src/sgml/ref/set_session_auth.sgml PostgreSQL documentation doc/src/sgml/ref/set_transaction.sgml PostgreSQL documentation doc/src/sgml/ref/show.sgml PostgreSQL documentation doc/src/sgml/ref/start_transaction.sgml PostgreSQL documentation doc/src/sgml/ref/truncate.sgml PostgreSQL documentation doc/src/sgml/ref/unlisten.sgml PostgreSQL documentation doc/src/sgml/ref/update.sgml PostgreSQL documentation doc/src/sgml/ref/vacuum.sgml PostgreSQL documentation doc/src/sgml/ref/values.sgml PostgreSQL documentation