openGauss | 导入数据
openGauss每日一练第13天 | openGauss导入数据
案例复制
1.通过INSERT语句直接写入数据
CREATE TABLE reason_t1
(
r_reason_sk integer,
r_reason_id character(16),
r_reason_desc character(100)
);
insert into reason_t1 values(1, 'AAAAAAAABAAAAAAA', 'reason1');
–没有数值的字段将被填充为字段的缺省值
insert into reason_t1 values(1, 'AAAAAAAABAAAAAAA');
–明确字段为缺省值
insert into reason_t1 values(1, 'AAAAAAAABAAAAAAA', DEFAULT);
–明确整行为缺省值
insert into reason_t1 DEFAULT VALUES;
select * from reason_t1;
–指定表插入数据到当前表
CREATE TABLE reason_t2
(
r_reason_sk integer,
r_reason_id character(16),
r_reason_desc character(100)
);
–将查询结果作为插入的数据
INSERT INTO reason_t2 SELECT * FROM reason_t1;
select * from reason_t2;
2.使用合并方式更新和插入数据
–创建源表products,并插入数据
CREATE TABLE products
( product_id INTEGER,
product_name VARCHAR2(60),
category VARCHAR2(60)
);
INSERT INTO products VALUES
(1502, 'olympus camera', 'electrncs'),
(1601, 'lamaze', 'toys'),
(1666, 'harry potter', 'toys'),
(1700, 'wait interface', 'books');
–创建目标表newproducts,并插入数据
CREATE TABLE newproducts
( product_id INTEGER,
product_name VARCHAR2(60),
category VARCHAR2(60)
);
INSERT INTO newproducts VALUES
(1501, 'vivitar 35mm', 'electrncs'),
(1502, 'olympus ', 'electrncs'),
(1600, 'play gym', 'toys'),
(1601, 'lamaze', 'toys'),
(1666, 'harry potter', 'dvd');
–使用MERGE INTO 语句将源表products的数据合并至目标表newproducts
MERGE INTO newproducts np
USING products 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) ;
–查询合并后的目标表newproducts。
SELECT * FROM newproducts
3.使用COPY实现表和文件间的拷贝
–将表数据输出到stdout
copy reason_t1 to stdout;
–将表数据拷贝到文件
copy reason_t1 to '/home/omm/reason.dat';
CREATE TABLE reason_t3 (LIKE reason_t1);
–将数据从文件拷贝到表
copy reason_t3 from '/home/omm/reason.dat';
select * from reason_t3;
复制
学习内容
–使用MERGE INTO 语句将源表products的数据合并至目标表newproducts
MERGE INTO 待插入表名 np
USING 源数据表名 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) ;
复制
作业内容
1.创建表1并在表中插入数据,分别指定字段和整行为缺省值
create table table1 (
id1 int,
name1 char(20),
detail char(30)
);
insert into table1 values (1,'kimi','esagahgrh');
insert into table1 values (2, 'daming' , default);
insert into table1 default values; /*注意顺序*/
复制
omm=# create table table1 ( omm(# id1 int, omm(# name1 char(20), omm(# detail char(30) omm(# ); CREATE TABLE omm=# insert into table1 values (1,'kimi','esagahgrh'); INSERT 0 1 omm=# insert into table1 values (2, 'daming' , default); INSERT 0 1 omm=# insert into table1 default values; INSERT 0 1
复制
2.创建表2并将表1的数据全部导入表2中
create table table2 (
id1 int,
name1 char(20),
detail char(30)
);
insert into table2 select * from table1;
select * from table2;
复制
omm=# create table table2 ( omm(# id1 int, omm(# name1 char(20), omm(# detail char(30) omm(# ); CREATE TABLE omm=# insert into table2 as select * from table1; ERROR: syntax error at or near "as" LINE 1: insert into table2 as select * from table1; ^ omm=# omm=# insert into table2 select * from table1; INSERT omm=# select * from table2; id1 | name1 | detail -----+----------------------+-------------------------------- 1 | kimi | esagahgrh 2 | daming | | | (3 rows)
复制
3.创建表3和表4,并合并两个表的数据到表3
create table table3 (
id1 int,
name1 char(20),
detail char(30)
);
create table table4 (
id1 int,
name1 char(20),
detail char(30)
);
未用merge into的效果是直接插入
insert into table3 select * from table1;
insert into table3 select * from table2;
select * from table3;
下面用merge into(ntb -> new table)
merge into table3 ntb
using table1 tb
on(ntb.id1 = tb.id1)
when matched then
update set ntb.name1 = tb.name1, ntb.detail = tb.detail
when not matched then
insert values(tb.id1, tb.name1, tb.detail);
select * from table3;
从结果可以看出,并没有新插入,维持了原状
复制
create table table3 ( omm(# id1 int, omm(# name1 char(20), omm(# detail char(30) omm(# ); CREATE TABLE omm=# create table table4 ( omm(# id1 int, omm(# name1 char(20), omm(# detail char(30) omm(# ); CREATE TABLE omm=# insert into table3 select * from table1; INSERT 0 3 omm=# insert into table3 select * from table2; INSERT 0 3 omm=# select * from table3; id1 | name1 | detail -----+----------------------+-------------------------------- 1 | kimi | esagahgrh 2 | daming | | | 1 | kimi | esagahgrh 2 | daming | | | (6 rows) omm=# merge into table3 ntb omm-# using table1 tb omm-# on(ntb.id1 = tb.id1) omm-# when matched then omm-# update set ntb.name1 = tb.name1, ntb.detail = tb.detail omm-# when not matched then omm-# insert values(tb.id1, tb.name1, tb.detail); MERGE 5 omm=# select * from table3; id1 | name1 | detail -----+----------------------+-------------------------------- | | | | 1 | kimi | esagahgrh 1 | kimi | esagahgrh 2 | daming | 2 | daming | | | (7 rows)
复制
4.将表3的数据输出到文件,再将文件中的数据导入到表5
copy table3 to '/home/omm/tbb.dat';
CREATE TABLE table5 (LIKE table3);
copy table5 from '/home/omm/tbb.dat';
select * from table5;
复制
omm=# copy table3 to '/home/omm/tbb.dat'; COPY 7 omm=# CREATE TABLE table5 (LIKE table3); CREATE TABLE omm=# omm=# copy table5 from '/home/omm/tbb.dat'; COPY 7 omm=# select * from table5; id1 | name1 | detail -----+----------------------+-------------------------------- | | | | 1 | kimi | esagahgrh 1 | kimi | esagahgrh 2 | daming | 2 | daming | | | (7 rows) omm=#
复制
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。
评论
相关阅读
openGauss荣获中国软件行业协会多奖项,技术升级再创行业新高度
openGauss
450次阅读
2025-04-30 14:30:58
MogDB 发布更新,解决 openGauss 数据库在长事务情况下Ustore表膨胀问题
MogDB
300次阅读
2025-04-17 10:41:41
MogDB 发布更新,解决 openGauss 数据库在长事务情况下Ustore表膨胀问题
云和恩墨
198次阅读
2025-04-16 09:52:02
GitCode 成 openGauss 新归宿,国产开源数据库里程碑事件
严少安
155次阅读
2025-04-27 11:37:53
荣誉时刻!openGauss认证证书快递已发,快来看看谁榜上有名!
墨天轮小教习
143次阅读
2025-04-23 17:39:13
单个执行机并行执行MySQL到openGauss数据迁移子任务
Clipnosis
128次阅读
2025-04-30 16:39:58
openGauss6.0.0适配操作系统自带的软件,不依赖三方库
来杯拿铁
90次阅读
2025-04-18 10:49:53
opengauss使用gs_probackup进行增量备份恢复
进击的CJR
85次阅读
2025-04-09 16:11:58
Postgresql数据库单个Page最多存储多少行数据
maozicb
78次阅读
2025-04-23 16:02:19
openGauss新特性 | openGauss-DataVec向量数据库特性介绍
openGauss
48次阅读
2025-04-17 10:41:47