Hello, I am jsut wondering how I can use decode in procedure in an insert into statement...here is what I try to accomplish...
insert into table select
field1,
field2,
(if field1 = this, and field2 = that) then 'thisthat' as field 3
from other table
Thanks in advance for any help
insert into table select
field1,
field2,
(if field1 = this, and field2 = that) then 'thisthat' as field 3
from other table
Thanks in advance for any help