Hi there,
I would like to know is there any chance for this and how to pull it
<insert tableName="print_template">
<column name="fk_po_service" valueNumeric="some_sql_here_to_find_this_id/>
<column name="template" valueBlobFile="../al-pos.vm"/>
<column name="is_deleted" valueBoolean="false"/>
<column name="created_by" valueNumeric="1"/>
<column name="updated_by" valueNumeric="1"/>
<column name="description" value="al-pos"/>
</insert>
Important part is this one some_sql_here_to_find_this_id. I would like to insert some sql there like
SELECT id FROM some_table
. Is there a way of doing this ?