是否有任何特殊的脚本可以插入 Oracle 集群 table
is there any special script to insert into Oracle cluster table
如何插入 oracle 集群 tables 以及如何验证插入到这两个 tables 的数据是否正确?
如果我有两个 tables 放大器和部门。
这两个 table 是集群 table 并且共享相同的数据块。
我可以通过简单的插入语句将数据插入到两个 table 中吗?
can I insert data into both table by simple insert statement.
是的,使用INSERT ALL
,比如
insert all
into emp (empno, ename) values (1, 'Little')
into emp (empno, ename) values (2, 'Foot')
--
into dept (deptno, dname) values (100, 'IT')
select * from dual;
如何插入 oracle 集群 tables 以及如何验证插入到这两个 tables 的数据是否正确?
如果我有两个 tables 放大器和部门。 这两个 table 是集群 table 并且共享相同的数据块。 我可以通过简单的插入语句将数据插入到两个 table 中吗?
can I insert data into both table by simple insert statement.
是的,使用INSERT ALL
,比如
insert all
into emp (empno, ename) values (1, 'Little')
into emp (empno, ename) values (2, 'Foot')
--
into dept (deptno, dname) values (100, 'IT')
select * from dual;