Visit Our Channel Here we will create a table in 2 ways : Using SSMS task Using Query Syntax In this tutorial only give simple table with 2 data type, Varchar and Int (Integer). For more explanation about data type we will learn in other time. Watch the tutorial video carefully, if any question please write on comments below. 1. Using SQL Server Management Studio Like shown picture above, just right click Tables on the HOSPITAL database tree, choose New Table. Then it will appear 3 columns for create new table. Just fill the columns, field/column name, data type and don't forget if you want to not allow nulls you have to type default value for your field/column. If it's done click Save Button on Toolbar or click menu File-Save. 2. Using Query Syntax To create table using SQL Syntax, first click New Query button on Toolbar, then you type the syntax like picture above. Then just click Execute button on Toolbar or just hit F5 on keyboard. For...