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 Cherry64,520 pts.
All Answer Wiki Contributors: Denny Cherry64,520 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.
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 …
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