What is DML in MySQL?



What is DML in MySQL?..

Answer / hrindows@gmail.com

DML is a short form for Data Manipulation Language which is used in data manipulation and mostly includes common SQL statements to store, modify, retrieve, delete and update data in a database.
The list of DML Queries:
 SELECT
 INSERT
 UPDATE
 DELETE
 MERGE
 CALL
 EXPLAIN PLAN
 LOCK TABLE

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MySQL Interview Questions

Write a command with which mysql table can be repaired

0 Answers  


What is the maximum size of table in mysql?

0 Answers  


How can an index be declared in mysql?

0 Answers  


List some comparisons operators used in mysql?

0 Answers  


Which one of the following is the correct way to select all columns and all rows from "vtable"? Choice 1 SELECT FROM vtable SELF JOIN vtable Choice 2 SELECT ALL COLUMNS FROM vtable WHERE ALL ROWS = * Choice 3 SELECT EVERYTHING FROM vtable Choice 4 SELECT vtable.* WHERE vtable = vtable Choice 5 SELECT * FROM vtable WHERE 1 = 1

3 Answers  


How to include numeric values in sql statements?

0 Answers  


How to get full name of monthname ?

4 Answers  


What is dirty read and phantom read?

0 Answers  


What is sharding in mysql?

0 Answers  


What happens if you no create privilege in a database?

0 Answers  


How do I connect to mysql database?

0 Answers  


What is difference between function and procedure in mysql?

0 Answers  


Categories