CREATE TABLE
CREATE TABLE statement is used to create a new table in the database. A table definition consists of the table name, a list of columns, their data types, default values, and any integrity constraints as shown in below SQL server syntax โ
CREATE TABLE <table_name1> (
<column_name1> <data_type> <default_value> <identity_specification> <column_constraint>,
<column_name2> <data_type> <default_value>ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย <column_constraint>,
โฆ,
<table_constraint1>,
<table_constraint2>,
โฆ
);
Syntax Description: After the key words CREATE TABLE, the table_name is specified. Within a pair of parentheses, a list of column definitions follows.
Column Definition-Each column is defined by itsย name,ย data type, an optionalย default value(Constant value in accordance to data type defined), and optional columnย constraints
After the list of column definitions, we can specify table constraints like Primary and Foreign Keys, Unique conditions, and general column conditions.
Example-
CREATE TABLE msstudentsnew (
st_idย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย INTย ย ย ย ย ย ย ย ย ย IDENTITY(1,1)ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย PRIMARY KEY NOT NULL,
st_name ย ย ย ย ย ย ย ย ย ย VARCHAR(100)ย ย ย ย ย ย ย ย ย DEFAULT โn/aโย ย NOT NULL,
st_subjectย ย ย ย ย ย ย VARCHAR(100),
st_cityย ย ย ย ย ย ย ย ย ย ย ย ย VARCHAR(100),
st_feesย ย ย ย ย ย ย ย ย ย ย ย ย ย INT,
st_regnoย ย ย ย ย ย ย ย ย ย ย INT,
CONSTRAINT reg_check CHECK (st_regno>0)
);
Example Description-
Parameters | Key | Description |
<table_name1> | msstudentsnew | is the table name |
<column_name1> | st_id | is the columnโs name |
<data_type> | INT | is the data type |
<identity_specification> | IDENTITY(1,1) | states that column will have auto generated values starting at 1 and incrementing by 1 for each new row. |
<column_constraint> | PRIMARY KEY | states that all values in this column will have unique values |
NOT NULL | states that this column cannot have null values | |
<table_constraint> | CONSTRAINT | reg_check is constraint name, CHECK will check the expression provided after keyword CHECK |
CREATE TABLE FROM SELECT
Syntax-
CREATE TABLE <table_name1> AS [Select_querry] ;
Example-
CREATE TABLE msstudentsnew_copy AS SELECT * FROM msstudentsnew;
Leave a Reply