To create the tables for the database, create a new database in SQL Server and then run 
the scripts below to create the tables.

CREATE TABLE Orders (
	ID int IDENTITY (1, 1),
	ProductID int NOT NULL,
	Quantity int NOT NULL,
	LastName varchar (50) NOT NULL,
	FirstName varchar (50) NOT NULL
	)

CREATE TABLE Products (
	ID int IDENTITY (1, 1),
	Name varchar (50) NOT NULL,
	Price money DEFAULT 0.00 NOT NULL,
	InventoryLevel int DEFAULT 0 NOT NULL
	)

INSERT Products (
	Name,
	Price,
	InventoryLevel
	)
VALUES ("Professional ASP 3.0",
	59.99,
	100
	)
INSERT Products (
	Name,
	Price,
	InventoryLevel
	)
VALUES  ("Beginning ASP 3.0",
	39.99,
	75
	) 	
INSERT Products (
	Name,
	Price,
	InventoryLevel
	)
VALUES  ("ASP 3.0 Programmer's Reference",
	24.99,
	75
	) 