The CREATE statements are used to create the database structures like table , view, sequence, function, procedure, package, trigger, etc. The CREATE TABLE statement is used to create a new table in the database. The CREATE TABLE command in SQL defines how your data will be stored, including the table name, column names, data types, and rules (constraints) such as NOT NULL, PRIMARY KEY, and CHECK. This tutorial will teach you how to use SQL to create tables in RDBMS. We use CREATE TABLE command to create a Table in a Database. In this tutorial, you will learn how to use the SQL CREATE TABLE statement to create a new table in the database.