DML(データ操作言語)コマンドは、コミット/ロールバックする必要があります。これらのコマンドのリストは次のとおりです。
データ操作言語(DML)ステートメントは、スキーマオブジェクト内のデータを管理するために使用されます。いくつかの例:
INSERT - insert data into a table
UPDATE - updates existing data within a table
DELETE - deletes records from a table, the space for the records remain
MERGE - UPSERT operation (insert or update)
CALL - call a PL/SQL or Java subprogram
EXPLAIN PLAN - explain access path to data
LOCK TABLE - control concurrency