Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Insert into TableA as ( nonsequenced validtime select id,type from TableB );
这里表 A 是非临时的。它只有 id 和 type 列
插入失败 3707:语法错误
基本上我想将时间选择查询的结果插入到非时间易失性表中。
任何帮助将不胜感激。
这应该是正确的语法:
nonsequenced validtime Insert into TableA select id,type from TableB;