暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

openGauss每日一练第13天 | openGauss导入数据-学习笔记

原创 cxb 2021-12-16
633

学习目标
学习openGauss导入数据

课程学习
连接数据库
root@modb:~# su - omm
omm@modb:~$ gsql -r
gsql ((openGauss 2.0.0 build 78689da9) compiled at 2021-03-31 21:03:52 commit 0 last mr )
Non-SSL connection (SSL connection is recommended when requiring high-security)
Type "help" for help.

omm=#
1.通过INSERT语句直接写入数据
omm=# CREATE TABLE reason_t1
omm-# (
omm(# r_reason_id character(16),
omm(# r_reason_sk integer,
omm(# r_reason_desc character(100)
omm(# );
omm=# CREATE TABLE

omm=# insert into reason_t1 values(1, 'AAAAAAAABAAAAAAA', 'reason1');
omm=# INSERT 0 1

–没有数值的字段将被填充为字段的缺省值
omm=# insert into reason_t1 values(1, 'AAAAAAAABAAAAAAA');
INSERT 0 1
–明确字段为缺省值
omm=# insert into reason_t1 values(1, 'AAAAAAAABAAAAAAA', DEFAULT);
INSERT 0 1
–明确整行为缺省值
omm=# insert into reason_t1 DEFAULT VALUES;
INSERT 0 1
omm=# select * from reason_t1;
r_reason_sk | r_reason_id | r_reason_desc
-------------+------------------+------------------------------------------------------------------------------------------------------
1 | AAAAAAAABAAAAAAA | reason1
1 | AAAAAAAABAAAAAAA |
1 | AAAAAAAABAAAAAAA |
| |
(4 rows)
2.使用合并方式更新和插入数据
–创建源表products,并插入数据
omm=# CREATE TABLE products
omm-# ( product_id INTEGER,
omm(# product_name VARCHAR2(60),
omm(# category VARCHAR2(60)
omm(# );
CREATE TABLE
omm=# INSERT INTO products VALUES
omm-# (1502, 'olympus camera', 'electrncs'),
omm-# (1601, 'lamaze', 'toys'),
omm-# omm-# (1666, 'harry potter', 'toys'),
(1700, 'wait interface', 'books');
INSERT 0 4
–创建目标表newproducts,并插入数据
omm=# CREATE TABLE newproducts
omm-# ( product_id INTEGER,
omm(# product_name VARCHAR2(60),
omm(# category VARCHAR2(60)
omm(# );
CREATE TABLE
omm=# INSERT INTO newproducts VALUES
omm-# (1501, 'vivitar 35mm', 'electrncs'),
omm-# (1502, 'olympus ', 'electrncs'),
omm-# omm-# (1600, 'play gym', 'toys'),
(1601, 'lamaze', 'toys'),
omm-# (1666, 'harry potter', 'dvd');
INSERT 0 5
–使用MERGE INTO 语句将源表products的数据合并至目标表newproducts
omm=# MERGE INTO newproducts np
omm-# USING products p
omm-# ON (np.product_id = p.product_id )
omm-# WHEN MATCHED THEN
omm-# UPDATE SET np.product_name = p.product_name, np.category = p.category
omm-# omm-# WHEN NOT MATCHED THEN
INSERT VALUES (p.product_id, p.product_name, p.category) ;
MERGE 4
–查询合并后的目标表newproducts。
omm=# SELECT * FROM newproducts
omm-# ;
product_id | product_name | category
------------+----------------+-----------
1501 | vivitar 35mm | electrncs
1600 | play gym | toys
1502 | olympus camera | electrncs
1601 | lamaze | toys
1666 | harry potter | toys
1700 | wait interface | books
(6 rows)

omm=# SELECT * FROM newproducts
omm-# ;
product_id | product_name | category
------------+----------------+-----------
1501 | vivitar 35mm | electrncs
1600 | play gym | toys
1502 | olympus camera | electrncs
1601 | lamaze | toys
1666 | harry potter | toys
1700 | wait interface | books
(6 rows)
3.使用COPY实现表和文件间的拷贝
–将表数据输出到stdout
omm=# copy reason_t1 to stdout;
1 AAAAAAAABAAAAAAA reason1
1 AAAAAAAABAAAAAAA \N
1 AAAAAAAABAAAAAAA \N
\N \N \N

–将表数据拷贝到文件
omm=# copy reason_t1 to '/home/omm/reason.dat';
COPY 4
omm=# CREATE TABLE reason_t3 (LIKE reason_t1);
CREATE TABLE
omm=#
–将数据从文件拷贝到表
omm=# copy reason_t3 from '/home/omm/reason.dat';
COPY 4
omm=# select * from reason_t3;
r_reason_sk | r_reason_id | r_reason_desc
-------------+------------------+------------------------------------------------------------------------------------------------------
1 | AAAAAAAABAAAAAAA | reason1
1 | AAAAAAAABAAAAAAA |
1 | AAAAAAAABAAAAAAA |
| |
(4 rows)
课程作业
1.创建表1并在表中插入数据,分别指定字段和整行为缺省值
CREATE TABLE t1
(
t_sk integer,
t_id character(16),
t_desc character(100)
);
insert into t1 values(1, 'AAAAAAAABAAAAAAA', 't1');
insert into t1 values(1, 'AAAAAAAABAAAAAAA', DEFAULT);
insert into t1 DEFAULT VALUES;

omm=# CREATE TABLE t1
omm-# (
omm(# t_sk integer,
omm(# t_id character(16),
omm(# t_desc character(100)
omm(# );
CREATE TABLE
omm=# insert into t1 values(1, 'AAAAAAAABAAAAAAA', 't1');
INSERT 0 1
omm=# insert into t1 values(1, 'AAAAAAAABAAAAAAA', DEFAULT);
INSERT 0 1
omm=# insert into t1 DEFAULT VALUES;
INSERT 0 1
omm=# select * from t1;
t_sk | t_id | t_desc
------+------------------+------------------------------------------------------------------------------------------------------
1 | AAAAAAAABAAAAAAA | t1
1 | AAAAAAAABAAAAAAA |
| |
(3 rows)


2.创建表2并将表1的数据全部导入表2中
CREATE TABLE t2
(
t_sk integer,
t_id character(16),
t_desc character(100)
);
INSERT INTO t2 SELECT * FROM t1;
select * from t2;
omm=# CREATE TABLE t2
omm-# (
omm(# t_sk integer,
omm(# t_id character(16),
omm(# t_desc character(100)
omm(# );
CREATE TABLE
omm=# INSERT INTO t2 SELECT * FROM t1;
INSERT 0 3
omm=# select * from t2;
t_sk | t_id | t_desc
------+------------------+------------------------------------------------------------------------------------------------------
1 | AAAAAAAABAAAAAAA | t1
1 | AAAAAAAABAAAAAAA |
| |
(3 rows)

3.创建表3和表4,并合并两个表的数据到表3
CREATE TABLE t3
( product_id INTEGER,
product_name VARCHAR2(60),
category VARCHAR2(60)
);

CREATE TABLE t4
( product_id INTEGER,
product_name VARCHAR2(60),
category VARCHAR2(60)
);

INSERT INTO t4 VALUES
(1502, 'olympus camera', 'electrncs'),
(1601, 'lamaze', 'toys'),
(1666, 'harry potter', 'toys'),
(1700, 'wait interface', 'books');

INSERT INTO t3 VALUES
(1501, 'vivitar 35mm', 'electrncs'),
(1502, 'olympus ', 'electrncs'),
(1600, 'play gym', 'toys'),
(1601, 'lamaze', 'toys'),
(1666, 'harry potter', 'dvd');

MERGE INTO t3 np
USING t4 p
ON (np.product_id = p.product_id )
WHEN MATCHED THEN
UPDATE SET np.product_name = p.product_name, np.category = p.category
WHEN NOT MATCHED THEN
INSERT VALUES (p.product_id, p.product_name, p.category) ;

--建立表t3
omm=# CREATE TABLE t3
omm-# ( product_id INTEGER,
omm(# product_name VARCHAR2(60),
omm(# category VARCHAR2(60)
omm(# );
CREATE TABLE
--建立表t4
omm=# CREATE TABLE t4
omm-# product_name VARCHAR2(60),
omm(# category VARCHAR2(60)
( product_id INTEGER,
omm(# omm(# );
CREATE TABLE
--插入数据
omm=# INSERT INTO t4 VALUES
omm-# (1502, 'olympus camera', 'electrncs'),
omm-# (1601, 'lamaze', 'toys'),
omm-# (1666, 'harry potter', 'toys'),
omm-# (1700, 'wait interface', 'books');
INSERT 0 4
--插入数据
omm=# INSERT INTO t3 VALUES
omm-# (1501, 'vivitar 35mm', 'electrncs'),
omm-# (1502, 'olympus ', 'electrncs'),
omm-# (1600, 'play gym', 'toys'),
omm-# (1601, 'lamaze', 'toys'),
omm-# (1666, 'harry potter', 'dvd');
INSERT 0 5
--合并数据
omm=# MERGE INTO t3 np
omm-# USING t4 p
omm-# ON (np.product_id = p.product_id )
omm-# WHEN MATCHED THEN
omm-# UPDATE SET np.product_name = p.product_name, np.category = p.category
omm-# WHEN NOT MATCHED THEN
omm-# INSERT VALUES (p.product_id, p.product_name, p.category) ;
MERGE 4


4.将表3的数据输出到文件,再将文件中的数据导入到表5
copy t3 to stdout;
copy t3 to '/home/omm/t3.dat';
CREATE TABLE t5 (LIKE t3);
copy t5 from '/home/omm/t3.dat';
–将表数据输出到stdout
omm=# copy t3 to stdout;
1501 vivitar 35mm electrncs
1600 play gym toys
1502 olympus camera electrncs
1601 lamaze toys
1666 harry potter toys
1700 wait interface books
–将表数据拷贝到文件
omm=# copy t3 to '/home/omm/t3.dat';
omm=# COPY 6

omm=# CREATE TABLE t5 (LIKE t3);
omm=# CREATE TABLE
–将数据从文件拷贝到表
omm=# copy t5 from '/home/omm/t3.dat';
COPY 6
omm=# select * from t5;
product_id | product_name | category
------------+----------------+-----------
1501 | vivitar 35mm | electrncs
1600 | play gym | toys
1502 | olympus camera | electrncs
1601 | lamaze | toys
1666 | harry potter | toys
1700 | wait interface | books
(6 rows)

「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论