Insert into TableA as
( nonsequenced validtime
select id,type from TableB );
这里表A是非暂时的。它只有id和type列
插入失败3707:语法错误
基本上我想将时态选择查询的结果插入到非时间易失性表中。
任何帮助将不胜感激。
答案 0 :(得分:0)
这应该是正确的语法:
nonsequenced validtime
Insert into TableA
select id,type from TableB;