亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么使用PostgreSQL中的COPY命令

發布時間:2021-11-08 16:40:43 來源:億速云 閱讀:695 作者:iii 欄目:關系型數據庫

這篇文章主要講解了“怎么使用PostgreSQL中的COPY命令”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么使用PostgreSQL中的COPY命令”吧!

Copy命令在PG 12有所增強,在COPY FROM時可添加WHERE條件過濾.

PG 11
Copy命令

testdb=# \help copy
Command:     COPY
Description: copy data between a file and a table
Syntax:
COPY table_name [ ( column_name [, ...] ) ]
    FROM { 'filename' | PROGRAM 'command' | STDIN }
    [ [ WITH ] ( option [, ...] ) ]
COPY { table_name [ ( column_name [, ...] ) ] | ( query ) }
    TO { 'filename' | PROGRAM 'command' | STDOUT }
    [ [ WITH ] ( option [, ...] ) ]
where option can be one of:
    FORMAT format_name
    OIDS [ boolean ]
    FREEZE [ boolean ]
    DELIMITER 'delimiter_character'
    NULL 'null_string'
    HEADER [ boolean ]
    QUOTE 'quote_character'
    ESCAPE 'escape_character'
    FORCE_QUOTE { ( column_name [, ...] ) | * }
    FORCE_NOT_NULL ( column_name [, ...] )
    FORCE_NULL ( column_name [, ...] )
    ENCODING 'encoding_name'

簡單使用

testdb=# drop table if exists t_copy;
DROP TABLE
testdb=# CREATE TABLE t_copy(id int,c1 varchar(20));
CREATE TABLE
testdb=# insert into t_copy SELECT x,'c1-'||x FROM generate_series(1, 1000) AS x;
INSERT 0 1000
testdb=# 
testdb=# COPY t_copy TO '/tmp/data/t_copy.txt' with DELIMITER '|';
COPY 1000
testdb=# drop table if exists t_import;
DROP TABLE
testdb=# CREATE TABLE t_import(id int,c1 varchar(20));
CREATE TABLE
testdb=# COPY t_import FROM '/tmp/data/t_copy.txt'  with DELIMITER '|';
COPY 1000
testdb=# select * from t_import limit 10;
 id |  c1   
----+-------
  1 | c1-1
  2 | c1-2
  3 | c1-3
  4 | c1-4
  5 | c1-5
  6 | c1-6
  7 | c1-7
  8 | c1-8
  9 | c1-9
 10 | c1-10
(10 rows)

不支持WHERE條件過濾

testdb=# COPY t_import FROM '/tmp/data/t_copy.txt'  with DELIMITER '|' where id < 5;
ERROR:  syntax error at or near "where"
LINE 1: ...t FROM '/tmp/data/t_copy.txt'  with DELIMITER '|' where id <...

PG 12
COPY命令語法

[local]:5432 pg12@testdb=# \help copy
Command:     COPY
Description: copy data between a file and a table
Syntax:
COPY table_name [ ( column_name [, ...] ) ]
    FROM { 'filename' | PROGRAM 'command' | STDIN }
    [ [ WITH ] ( option [, ...] ) ]
    [ WHERE condition ]
COPY { table_name [ ( column_name [, ...] ) ] | ( query ) }
    TO { 'filename' | PROGRAM 'command' | STDOUT }
    [ [ WITH ] ( option [, ...] ) ]
where option can be one of:
    FORMAT format_name
    FREEZE [ boolean ]
    DELIMITER 'delimiter_character'
    NULL 'null_string'
    HEADER [ boolean ]
    QUOTE 'quote_character'
    ESCAPE 'escape_character'
    FORCE_QUOTE { ( column_name [, ...] ) | * }
    FORCE_NOT_NULL ( column_name [, ...] )
    FORCE_NULL ( column_name [, ...] )
    ENCODING 'encoding_name'
URL: https://www.postgresql.org/docs/12/sql-copy.html

支持WHERE條件過濾

[local]:5432 pg12@testdb=# drop table if exists t_copy;
DROP TABLE
Time: 50.327 ms
[local]:5432 pg12@testdb=# CREATE TABLE t_copy(id int,c1 varchar(20));
CREATE TABLE
Time: 5.038 ms
[local]:5432 pg12@testdb=# insert into t_copy SELECT x,'c1-'||x FROM generate_series(1, 1000) AS x;
INSERT 0 1000
Time: 16.422 ms
[local]:5432 pg12@testdb=# 
[local]:5432 pg12@testdb=# COPY t_copy TO '/tmp/data/t_copy.txt' with DELIMITER '|';
COPY 1000
Time: 4.795 ms
[local]:5432 pg12@testdb=# drop table if exists t_import;
DROP TABLE
Time: 4.798 ms
[local]:5432 pg12@testdb=# CREATE TABLE t_import(id int,c1 varchar(20));
CREATE TABLE
Time: 2.462 ms
[local]:5432 pg12@testdb=# COPY t_import FROM '/tmp/data/t_copy.txt'  with DELIMITER '|' WHERE id < 5;
COPY 4
Time: 4.842 ms
[local]:5432 pg12@testdb=# select * from t_import;
 id |  c1  
----+------
  1 | c1-1
  2 | c1-2
  3 | c1-3
  4 | c1-4
(4 rows)
Time: 6.103 ms

感謝各位的閱讀,以上就是“怎么使用PostgreSQL中的COPY命令”的內容了,經過本文的學習后,相信大家對怎么使用PostgreSQL中的COPY命令這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江川县| 德化县| 万宁市| 汝阳县| 简阳市| 友谊县| 常山县| 罗定市| 昌平区| 丰台区| 昌都县| 临沭县| 司法| 济南市| 仲巴县| 揭阳市| 尼勒克县| 鄄城县| 隆回县| 木里| 兰西县| 古蔺县| 通州区| 车致| 密山市| 富锦市| 合肥市| 山西省| 九龙城区| 新竹县| 旺苍县| 金湖县| 和平区| 丽江市| 桐柏县| 葫芦岛市| 湖口县| 通河县| 白玉县| 沾化县| 灵武市|