They are useful in two common situations
- As the datasource for a form or report, where the original data is too complex to be easily queried.
- As temporary storage during complicated processing, to hold the results midway through the process.
;
CustTableTmp.setTmp();
while select CustTable
{
CustTableTmp.data(CustTable.data());
CustTableTmp.doInsert();
}
Select CustTableTmp;
Temporary tables
No comments:
Post a Comment