Skip to main content
Log inGet a demo
Back to SQL Dictionary
Database functions

SQL Create Table

What is SQL CREATE TABLE?

The SQL CREATE TABLE statement is used to define and create a new table within a relational database. Tables are fundamental components of a database, used to store structured data in rows and columns. This statement specifies the table's structure, including column names, data types, constraints, and more.

When you would use it

You would use the CREATE TABLE statement when you need to:

  1. Define a New Data Structure: To create a table to store specific types of data in an organized and structured manner.

  2. Expand an Existing Database: When adding new entities, such as customers, products, or orders, you create a table to represent these entities.

  3. Data Migration: When moving data from one source to another, you may need to create tables in the destination database to match the data structure.

  4. Reporting and Analysis: To prepare tables for business intelligence, reporting, or analytical purposes, you can create tables that organize data for easier access and analysis.

Syntax

The syntax for the CREATE TABLE statement is as follows:

CREATE TABLE table_name
(
   column1 datatype constraints,
   column2 datatype constraints,
   ...
   columnN datatype constraints
);
  • table_name: The name of the table you want to create.
  • column1, column2, ... columnN: The names of the columns within the table.
  • datatype: The data type for each column, specifying the type of data that can be stored in it.
  • constraints: Optional constraints, such as primary keys, unique constraints, and foreign keys, that define rules and relationships within the table.

Parameter values

  • table_name: The name of the table to be created. This is a required parameter.
  • columnN: The names of the columns to be defined within the table.
  • datatype: The data type to be assigned to each column, ensuring the data's consistency and validity.
  • constraints: Optional rules and relationships applied to the columns for data integrity and referential integrity.

Example query

Here's an example SQL query to create a simple table called "Customers" with three columns:

CREATE TABLE Customers
(
   CustomerID INT PRIMARY KEY,
   FirstName VARCHAR(50),
   LastName VARCHAR(50)
);

Example table response

The CREATE TABLE statement does not produce a table response. It's a Data Definition Language (DDL) command used to define the table's structure. Upon successful execution, it defines the table's schema, but it doesn't return data.

Use cases

  1. Data Storage: To create tables for storing data efficiently, ensuring that each piece of information is stored in its proper format.

  2. Data Organization: To structure data for better organization and retrieval, making it easier to manage and maintain.

  3. Data Migration: When moving data from one source to another, creating tables in the destination database to match the data structure is essential.

  4. Reporting and Analysis: Preparing tables for reporting, business intelligence, and data analysis by structuring data for easier access and querying.

SQL Languages Availability

The CREATE TABLE statement is a fundamental feature supported by most SQL-based relational database management systems (RDBMS). It is available in:

  • MySQL
  • PostgreSQL
  • Microsoft SQL Server (T-SQL)
  • Oracle Database
  • IBM Db2
  • SQLite
  • and many more.

While the basic syntax is consistent across these systems, there may be variations in data types, constraints, and other options. It's essential to refer to the documentation of your specific RDBMS for precise usage details.

Related

SQL Backup Database

SQL Drop Table

SQL Alter Table

Ready to put your SQL knowledge to work?

Practice writing SQL to call data from the warehouse and sync it into Google Sheets in this 5 minute interactive demo.

Hightouch Audiences user interface.

Activate your data in less than 5 minutes