Thursday, 22 March 2018

Data Manipulation Language Short Note

                                                  DML(Data Manipulation Language)

DML deals with the record stored in the particular database.To know it in a better way some of the DDL Commands are below.

Commands:-

Insert
      Syntex:- Insert into <table_name> values(<all_attribute_records> );

Update
       Syntex:- Update <table_name> set <attribute_name>=<condition> where <attribute_name>=<>;

Delete
       Syntex:- Delete From <table_name> where <attribute_name>=<>;

No comments:

Post a Comment