我正在尝试创建一个临时表,它与数据库中已存在的表完全相同。如何将每行添加到临时表?
DEFINE TEMP-TABLE o_ttProducts。
对于每个产品: / * …
DEFINE TEMP-TABLE o_ttProducts no-undo like Product. FOR EACH Product no-lock: /*Add current row to the o_ttProducts temp table*/ create o_ttProducts. buffer-copy Product to o_ttProducts. END.