SQL is categorized into 3 subset:
- DML (Data Manipulation Language) - The one responsible for manipulating data on the database. Its syntax extend to SELECT, INSERT, UPDATE, and DELETE.
- DDL (Data Definition Language) - The one responsible for creation of the database objects, such as tables, index, primary and foreign keys. The syntax extend to CREATE, ALTER, and DROP.
- DCL (Data Control Language) - The one responsible for managing access of the database. The syntax extends to GRANT and DENY.
No comments:
Post a Comment