The Data manipulation Lanaguage (DML) basically is the manipulation of the data. In the DML there are the following operation we can perform.
- INSERT
- DELETE
- UPDATE
- SELECT
The INSERT statement basically used to insert the data row into data table. The syntax of the INSERT is:-
INSERT into table_name(column_name) values('value which you want to store')
The DELETE statement is used to delete the data from data table. The syntax of the DELETE is:-
DELETE from table_name
The above query delete all records from the table. if we want to delete the particular record from the table then we use the following query.
DELETE from table_name where <condtiion>
The UPDATE statement is used to update the record in the table. The syntax of the UPDATE is:-
UPDATE table_name set column_Name=value
The above query update all the column records in the table. if want to update the particular row then we use the following query.
UPDATE table_name set column_Name=value UPDATE table_name set column_Name=value
The SELECT statement is used to select and retrive the records from table. The syntax of the SELECT is:-
SELECT * from table_name
The above query retrive all the information from the table. if we want to retrive the particular column with some condition then we use the following query.
SELECT column_name1,column_name2 from table_name where <condtiion>
No comments:
Post a Comment