InterviewSolution
Saved Bookmarks
| 1. |
What Are The Different Dml Commands In Sql? |
|
Answer» DML commands are used for managing data PRESENT in the database. SELECT: To select specific data from a database INSERT: To insert new records into a table UPDATE: To update existing records DELETE: To delete existing records from a table DML commands are used for managing data present in the database. SELECT: To select specific data from a database INSERT: To insert new records into a table UPDATE: To update existing records DELETE: To delete existing records from a table |
|