This lesson shows how to classify SQL statements into four main categories: DDL, DML, DQL, and DCL. We start by checking if a statement changes the database structure, which means it is DDL. If not, we check if it changes data, which is DML. If it only reads data, it is DQL. Finally, if it manages permissions, it is DCL. We traced four example statements: CREATE TABLE (DDL), INSERT INTO (DML), SELECT (DQL), and GRANT (DCL). The execution table shows each step and why the statement fits its category. The variable tracker follows the current statement and category as we move through the steps. Key moments clarify common confusions, like why SELECT is not DML and why GRANT is DCL. The quiz tests understanding by asking about categories and steps. The snapshot summarizes the categories and their roles in simple terms.