Basic Oracle Concepts and Programming Question:
What Are DML Statements in Oracle?
Answer:
DML (Data Manipulation Language) statements are statements to change data values in database tables. The are 3 primary DML statements:
* INSERT - Inserting new rows into database tables.
* UPDATE - Updating existing rows in database tables .
* DELETE - Deleting existing rows from database tables.
* INSERT - Inserting new rows into database tables.
* UPDATE - Updating existing rows in database tables .
* DELETE - Deleting existing rows from database tables.
Previous Question | Next Question |
How To Drop an Existing View in Oracle? | How To Create a Testing Table in Oracle? |