Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

create database employee_db;

CREATE table Employees


(
EmployeeID
int identity(1,1),
LastName
nvarchar(20),
FirstName
nvarchar(10),
Title
nvarchar(30),
Address nvarchar(60),
City
nvarchar(15),
Region
nvarchar(15),
PostalCode
nvarchar(10),
Country nvarchar(15),
Extension
nvarchar(4)
)

You might also like