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 table1 values ((select * from table2), sysdate, 'open', Null, null);
これは私が実行したいものです。このクエリをどのように記述できますか?
句で使用されるサブクエリは、VALUES1 行のみを返す必要があります。クエリが複数の行を返す場合は、次のように書き直すことができます。
VALUES
insert into table1 select t2.*, sysdate, 'open', null, null from table2 t2;