Can you name some of the DML commands in SQL?

devquora
devquora

Posted On: Feb 22, 2018

 

The commands which are used to manage the data which is present in the entire database are called as DML commands. They are of following types-

  • Select - this command is used to select the specific data from the entire database.
  • Insert - if any new record or a table has to be added into the database than this command is used.
  • Update - in order to update the existing records over the database this command is used.
  • Delete - if any existing record has to be deleted from the table then this command is used.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    SQL Server Interview Questions

    What are a database and a data warehouse?

    A database, in general, is a collection of information in a more organized form for better access...

    SQL Server Interview Questions

    What is normalization according to you and explain its different levels?

    In order to remove the redundant data, normalization is used. It also reduces the null values and enables the efficiency of indexing...

    SQL Server Interview Questions

    What do you understand by the denormalisation?

    Denormalization is the inverse process of normalization...