I want to do something like
insert into table
( A,
B,
C
)
(select '1', one.A, one.B from table_1 one)
UNION
(select '2', one.A, one.B from table_1 one)
Will this call select query twice ? Are there any better way of doing this ?
I want to do something like
insert into table
( A,
B,
C
)
(select '1', one.A, one.B from table_1 one)
UNION
(select '2', one.A, one.B from table_1 one)
Will this call select query twice ? Are there any better way of doing this ?