.
Introduction Of DML
- It is defined as the language that provides set of operations to support the basic data manipulation operations on the data held in the database.
- It allows user to insert, update, delete, and retrieve data from the database. The data manipulation is :
- The retrieval of information stored in database
- The insertion of new information into the database.
- The deletion of information from the database
- The modification of information stored in database
- The part of the DML that involves the data retrieval is called a query language. Following are the commands used in DML
- SELECT : retrieves data from database
- INSERT : insert data into table
- UPDATE : update existing data with a table
- DELETE : delete all records from a database table
- MERGE : UPSERT operation (insert or update)
- CALL : call a PL/SQL or java subprogram
- EXPLAINPLAN : interpretation of the data access path
- LOCKTABLE : concurrency table
Comments
Post a Comment