需要提交/回退DML(数据操作语言)命令。这是这些命令的列表。
数据操作语言(DML)语句用于管理架构对象中的数据。一些例子:
INSERT - insert data into a tableUPDATe - updates existing data within a tableDELETE - deletes records from a table, the space for the records remainMERGE - UPSERT operation (insert or update)CALL - call a PL/SQL or Java subprogramEXPLAIN PLAN - explain access path to dataLOCK TABLE - control concurrency



