HP Neoview SQL Reference Manual page 162

Hide thumbs Also See for Neoview SQL:
Table of Contents

Advertisement

from (
insert into identity_table values
(DEFAULT,100,100),
(DEFAULT,200,200)
)X;
A
---------------
216944652091640
216944652091641
INSERT...SELECT statements are supported with embedded INSERT statements:
insert into another_table values (300,300,300),
select P.a, P.b, P.c
from (
A
---------------
162
SQL Statements
B
------ ------
100
200
insert into identity_table
select * from another_table where y < 500
) as P where P.a = 300;
B
------ -------
300
300
C
100
200
(400,400,400),
(500,500,500);
C
300

Advertisement

Table of Contents
loading

Table of Contents