1,025 pts.
 DML
What is DML.How to use DML in AS400. What is the advantage of using it?

Software/Hardware used:
ASKED: August 29, 2008  10:18 AM
UPDATED: August 29, 2008  5:42 PM

Answer Wiki:
SQL is divided in three types of commands: DDL, DML and DCL. DDL is Data Definition Language (CREATE, ALTER). DML is Data Manipulation Language (SELECT, INSERT, UPDATE and DELETE). DCL is Data Control Language (GRANT, REVOKE).
Last Wiki Answer Submitted:  August 29, 2008  5:42 pm  by  Denny Cherry   64,520 pts.
All Answer Wiki Contributors:  Denny Cherry   64,520 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Hello,

This portion of the SQL standard is concerned with manipulating the data in a database as opposed to the structure of a database. The core verbs for DML are SELECT, INSERT, DELETE, UPDATE, COMMIT and ROLLBACK.

You can look at this website to read more information …

http://www.geekinterview.com/question_details/12782

 4,165 pts.