I want to insert values into a table and the same time select a value
from the same table.
I insert a record of a parent type and use a function to create a
subscriberType for the record.
Next i insert a record of child type and want to select the
subscriberType from the parent record.
This do not work when i use
INSERT TABLE
SELECT ,Name
,"function to generate subscribertype"
,.............
I DO NOT WANT TO USE CURSOR!!
from the same table.
I insert a record of a parent type and use a function to create a
subscriberType for the record.
Next i insert a record of child type and want to select the
subscriberType from the parent record.
This do not work when i use
INSERT TABLE
SELECT ,Name
,"function to generate subscribertype"
,.............
I DO NOT WANT TO USE CURSOR!!
Comment