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 NEW_TABLE (No_COUNT) VALUES (SELECT COUNT(*) FROM TABLE2)
で実行すると
ORA-00936: missing expression error.
上記のクエリでエラーが表示される理由はありますか?
INSERT INTO NEW_TABLE ( No_COUNT ) SELECT COUNT(*) FROM TABLE2;