I have some 2 csv files, the second having references to the first. I’d like to import them using loaddata. The references should point to the (to be generated) primary keys of the first table, but in the csv file the reference points to another (unique) field. Is that possible?
I would e.g. need something like
<loadData catalogName=“team” …>
<loadData catalogName=“member” …>
<column header=“teamName” name=“teamId” valueComputed=“SELECT (ID) FROM team WHERE name={teamName}” …/>