MySQL - Data Manipulation Statements



Sr.No Statement & Description
1

MySQL CALL Statement

This statement is used to call the stored procedure.

2

MySQL DELETE Statement

This statement is use to remove records from a table.

3

MySQL DO Statement

This statement is used execute MySQL statement.

4

MySQL INSERT Statement

This statement is used to insert records into a table.

5

MySQL LOAD DATA Statement

This statement loads the contents of a file into a table.

6

MySQL LOAD XML Statement

This statement is used to load the contents of an XML file into a table.

7

MySQL REPLACE Statement

This statement inserts a new record into a table. if you try to insert a new column with duplicate value for the column with UNIQUE or PRIMARY KEY constraints the old record will be completely replaced by the new record.

8

MySQL SELECT Statement

This statement is used to retrieve rows from MySQL tables.

9

MySQL Subquries Statement

A subquery is a query with in a query.

10

MySQL TABLE Statement

This statement is used to retrieve the rows and columns of a specified table.

11

MySQL UPDATE Statement

This statement is used to update one or more records of an existing table.

12

MySQL VALUES Statement

This statement is used to return a set of rows as a table.

13

MySQL WITH Statement

This statement is used to create common table expressions.

mysql_statements_reference.htm
Advertisements