Create Table in SQL Server

Rumman Ansari   Software Engineer   2023-03-25   6356 Share
☰ Table of Contents

Table of Content:


The aim of this article is to create TablePerson and TableGender tables and establish primary key and foreign key constraints. In SQL Server, tables can be created graphically using SQL Server Management Studio (SSMS) or using a query.

create table in sql server

To create TablePerson table, graphically, using SQL Server Management Studio

  • Right click on Tables folder in Object explorer window
  • Select New
  • Select Table
  • Fill Column Name, Data Type and Allow Nulls, as shown below and save the table as TablePerson.
Create table in SQL Server

Type all column names and respective data types, specify which columns can take null values

Create table in SQL Server

Save table

Create table in SQL Server

Type table name and press OK.

Create table in SQL Server

Follow the below image to see the data inside the TablePerson. It will contain no value because we not inserted any rows yet.

Create table in SQL Server

The following statement creates TableGender table, with GengerID and Gender columns. The following statement creates TableGender table, with GengerID and Gender columns. GenderID column, is the primary key column. The primary key is used to uniquely identify each row in a table. Primary key does not allow nulls.

Create table in SQL Server

Code:


Create Table TableGender(
GenderID int Not Null Primary Key,
Gender nvarchar(50)
)


 Commands completed successfully.

Code: To add a foreign key reference using a query


Alter table TablePerson 
add constraint TablePerson_GenderId_FK FOREIGN KEY (GenderID) references TableGender(ID)

Syntax: The general formula is here



Alter table ForeignKeyTable add constraint ForeignKeyTable_ForiegnKeyColumn_FK 
FOREIGN KEY (ForiegnKeyColumn) references PrimaryKeyTable (PrimaryKeyColumn)

Foreign keys are used to enforce database integrity. In layman's terms, A foreign key in one table points to a primary key in another table. The foreign key constraint prevents invalid data form being inserted into the foreign key column. The values that you enter into the foreign key column, has to be one of the values contained in the table it points to.

To graphically add a foreign key reference

  • Right click TablePerson table and select Design.
  • In the table design window, right click on GenderId column and select Relationships
  • In the Foreign Key Relationships window, click Add button
  • Now expand, in Tables and Column Specification row, by clicking the, + sign
  • Click on the elipses button, that is present in Tables and Column Specification row
  • From the Primary Key Table, dropdownlist, select tblGender
  • Click on the row below, and select ID column
  • From the column on the right hand side, select GenderID
  • Click OK and then click close.
  • Finally save the table.