SQL commands are grouped into categories by their purpose: DDL (define schema), DML (manipulate data), DCL (control access), and TCL (control transactions). Understanding these categories organizes your knowledge of SQL and clarifies how the language is structured.
DDL — Data Definition Language (defines structure)
users (id , name ());
users email ();
users;
logs;
