Week 2 Notes Flashcards
1
Q
three categories of SQL statements
A
Data definition language, data manipulation language, and data control language
2
Q
data definition language
A
statements create, alter, and drop metadata for tables and many other object in the database. i.e DROP TABLE would remove any raw data stored in that table
3
Q
data manipulation language
A
statements insert, update, delete, and access the raw data stored in tables.
4
Q
data control language
A
statements grant and revoke privileges to database users to execute some or all of the DML and DDL statements