CREATE TABLE is used to create tables in a database. The CREATE TABLE statement must specify the table name and include a list of fields defined by name and data type. Data types can be predefined types like INT for numbers or VARCHAR for variable-width character strings. The example shows a CREATE TABLE statement that defines a Students table with three fields: StudentID as a fixed-width CHAR, and LastName and FirstName as variable-width VARCHAR fields.