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.
データベースにデータを挿入しようとしていますが、次の例外が発生します:
java.sql.SqlException:[Oracle][ODBC]ORA-00928:SELECT キーワードがありません
Oracleテーブルにデータを挿入しようとしているようです。次のようなステートメントを作成してみてください。
INSERT INTO MyTable(Column1, Column2) VALUES (1, 'SomeString');
また
INSERT INTO MyTable(Column1, Column2) SELECT Foo, Bar From MySecondTable;