Monday, December 18, 2023

CREATE TABLE Statement

 

CREATE TABLE Statement

Table is a combination of rows and columns. For creating a table we have to define the structure of a table by adding names to columns and providing data type and size of data to be stored in columns.

Syntax:

CREATE table table_name(

Column1 datatype (size),

column2 datatype (size),

.

.

columnN datatype(size)

); 

CREATE TABLE Customer(
    CustomerID INT PRIMARY KEY,
    CustomerName VARCHAR(50),
    LastName VARCHAR(50),
    Country VARCHAR(50),
    Age int(2),
  Phone int(10) 

);