学习内容
学习如何导入文件以及插入含有缺省值的数据。
课程学习
连接数据库
#第一次进入等待15秒 #数据库启动中... su - omm gsql -r
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;
课程作业
1.创建表1并在表中插入数据,分别指定字段和整行为缺省值
create table student (s_id int ,s_name varchar(30));
insert into student(s_id,s_name) values(111,'qian_shen');
insert into student values(1);
insert into student values(2,default);
insert into student values(default);
select * from student;
2.创建表2并将表1的数据全部导入表2中
create table student_new(like student);
insert into student_new select * from student;
select * from student_new;
3.创建表3和表4,并合并两个表的数据到表3
create table student3 (like student);
create table student4 (like student);
insert into student3 to student3(1,'qian');
insert into student3 values (2,'shen');
insert into student4 values(3,'NB');
insert into student4 values(2,'SHEN');
merge into student3 np using student4 p on np.s_id = p.s_id
when matched then update set np.s_name = p.s_name
when not matched then insert values(p.s_id,p.s_name);
select * from student3;
4.将表3的数据输出到文件,再将文件中的数据导入到表5
create table student5(like student);
copy student3 to stdout;
copy student3 to '/home/omm/student.dat';
copy student5 from '/home/omm/stuent.dat';
select * from student5;总结
最后修改时间:2021-12-13 17:35:39
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。




