-- Altair Realtors --

USE AltairRealtors2;
GO

CREATE SCHEMA Listings;
GO
CREATE TABLE Listings.Properties
(
	PropertyID int identity(1, 1),
	PropertyNumber nvarchar(10) not null,
	PropertyType nvarchar(40),
	[Address] nvarchar(100),
	City nvarchar(50),
	[State] nchar(2),
	ZIPCode nvarchar(12),
	Bedrooms smallint,
	Bathrooms float,
	Stories smallint,
	FinishedBasement bit,
	IndoorGarage bit,
	YearBuilt smallint,
	Condition nvarchar(40),
	MarketValue money, SaleStatus nvarchar(50),
	Constraint PK_Properties Primary Key(PropertyNumber)
);
GO
INSERT INTO Listings.Properties(PropertyNumber, PropertyType, Address, City, State, ZIPCode, Bedrooms, Bathrooms,
                                Stories, FinishedBasement, IndoorGarage, YearBuilt, Condition, MarketValue, SaleStatus)
VALUES(N'830-596', N'Single Family', N'4288 Lucow Drive',    N'Rockville',     N'MD', N'20856', 3, 2.5,  2, 1, 1, 1988, N'Excellent',  665580, N'Available'),
      (N'820-418', N'Condominium',   N'6662 16th Street NW', N'Washington',    N'DC', N'20010', 1,   1,  4, 0, 1, 1984, N'Good Shape', 325000, N'Available'),
      (N'295-339', N'Single Family', N'10202 Lockwood Ave',  N'Silver Spring', N'MD', N'20906', 5, 3.5,  3, 0, 1, 2002, N'Unknown',    675880, N'Sold'),
      (N'940-580', N'Townhouse',     N'8604 L Street NE',    N'Washington',    N'DC', N'20018', 4, 2.5,  2, 1, 0, 1988, N'Excellent',  365500, N'Available'),
      (N'293-946', N'Townhouse',     N'4220 Melmann Road',   N'Baltimore',     N'MD', N'21208', 3, 2.5,  3, 1, 0, 1984, N'Excellent',  275500, N'Available'),
      (N'308-508', N'Single Family', N'6218 Mandarin Rd',    N'McLean',        N'VA', N'22101', 3, 1.5,  3, 0, 1, 1992, N'Unknown',    785680, N'Available'),
      (N'359-629', N'Condominium',   N'2644 Swanson Drv',    N'Charleston',    N'WV', N'25301', 2, 2.5, 10, 0, 1, 2010, N'Good Shape', 225450, N'Available'),
      (N'924-951', N'Townhouse',     N'719 Beanson Road',    N'Arlington',     N'VA', N'22201', 3, 1.5,  4, 0, 1, 1995, N'Good Shape', 580795, N'Sold'),
      (N'394-252', N'Condominium',   N'6662 16th Street NW', N'Washington',    N'DC', N'20012', 2,   2, 12, 1, 0, 1984, N'Good Shape', 425600, N'Available'),
      (N'949-605', N'Single Family', N'4288 Lucow Drive',    N'Rockville',     N'MD', N'20856', 4, 3.5,  3, 1, 1, 1995, N'Excellent',  725805, N'Available'),
      (N'249-695', N'Townhouse',     N'748 Beanson Road',    N'Arlington',     N'VA', N'22201', 5, 3.5,  3, 1, 1, 1995, N'Excellent',  650808, N'Sold'),
      (N'240-959', N'Single Family', N'508 Capitol Street',  N'Alexandria',    N'VA', N'22312', 5, 3.5,  3, 0, 1, 2006, N'Unknown',    825500, N'Sold');
GO

Return