---
title: "Create Table in Microsoft SQL Server"  
description: "Syntax to create table in MSSQl Server2008CREATE TABLE table  [name](  Column1  Column2  Column3ExampleCustomers  is the name of table.CREATE TABLE Cu"  
author: "Anonymous User"  
published: 2010-07-18  
updated: 2020-03-04  
canonical: https://www.mindstick.com/articles/34/create-table-in-microsoft-sql-server  
category: "database"  
tags: ["database"]  
reading_time: 1 minute  

---

# Create Table in Microsoft SQL Server

##### Syntax to create table in MSSQl Server2008

```
CREATE TABLE table
[name](Column1,Column2,Column3)
```

##### Example

Customers is the name of table.

```
CREATE TABLE Customers (DrvLicNbr nvarchar(32),DateIssued DATE,DateExpired date,FullName nvarchar(50),Address NVARCHAR(120),City NvarChar(40),State NVarChar(50),PostalCode nvarchar(20),HomePhone nvarchar(20), OrganDonor BIT); 
```

---

Original Source: https://www.mindstick.com/articles/34/create-table-in-microsoft-sql-server

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
