(2)在输入insert into scott.emp(empno, ename, hiredate) values (7999, ’JONE’,’25-11月-2002’);,然后单击按钮,出现如图4.42所示的结果。
:第4章4.6461-2.sql。
(3)在输入select * from scott.emp where empno=7999;,然后单击按钮,出现如图4.43所示的结果。
:第4章4.6461-3.sql。
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)4.6.2 多行记录的录入
在数据的录入中,经常需要将从数据表中查询到的数据稍做修改成批录入的情况,这就是多行数据的录入。
1. 语法
insert into 数据表(字段名1,字段名2,)
(select(字段名1或运算, 字段名2或运算,) from 数据表 where 条件)
实际上,首先利用子查询语句查询结果,然后再利用insert语句将结果插入数据表。子查询和insert中的数据表既可以相同,也可以不同,但要求查询结果的字段和insert插入的数据表中字段属性完全一致。
2. 实例
在执行以下语句。
―――――――――――――――――――――――――――――――――――――
insert into scott.emp(empno,ename,hiredate) (select empno+100,ename,hiredate from scott.emp where empno=6999 );
―――――――――――――――――――――――――――――――――――――
:第4章4.6462.sql。
单击按钮,出现如图4.44所示的结果。
4.6.3 表间数据复制
可以从一个数据表中选择需要的数据插入到全新的数据表中。
(1)在执行以下语句。
――――――――――――――――――――――――――――――――――――― create table scott.test as ( select distinct empno,ename,hiredate from scott.emp where empno=7000 ); ―――――――――――――――――――――――――――――――――――――
:第4章4.6463.sql。
然后单击按钮,出现如图4.45所示的结果。
上述语句的功能是创建一个名为scott.test的数据表,表结构包含3个字段。并将scott.emp中具有不同的empno字段,且empno=7000的数据复制到scott.test数据表中。
(2)在输入select * from scott.test;语句,然后单击按钮,出现如图4.46所示的结果。
这里的create table语句的功能是创建新的数据表,上述过程实际是分3步执行的。首先查询符合要求的数据,其次建立3个字段的名为test的数据空表,最后是将查询的数据插入到test数据表中。