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;