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;