Hi experts,
I have a table A that has a field named sessionId.
For some reasons, I have to use Query to insert multiple records into table A.
Some field of table A are mapped with field from other tables.
But for sessionId, I need to set a constant value for it.
So is there a way to initialize field sessionId with a constant value using Query::insert_recordset()?
Or I can only insert other fields firstly, and then use update_recordset to set the field sessionId?
Thanks.