Created
May 16, 2017 13:04
-
-
Save sfrechette/6b0897c977076fe26c8cabfcecd19add to your computer and use it in GitHub Desktop.
SQL Script to create the CraftCans relational database
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--Create CraftCans database | |
CREATE DATABASE CraftCans; | |
GO | |
USE CraftCans; | |
GO | |
/****** Object: Table [dbo].[Beer] ******/ | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO | |
CREATE TABLE [dbo].[Beer]( | |
[BeerID] [int] NOT NULL, | |
[BeerName] [nvarchar](75) NULL, | |
[Ounces] [nvarchar](5) NULL, | |
[ABV] [nvarchar](5) NULL, | |
[IBU] [nvarchar](5) NULL, | |
[StyleID] [int] NULL, | |
[BreweryID] [int] NULL, | |
CONSTRAINT [PK_Beer] PRIMARY KEY CLUSTERED | |
( | |
[BeerID] ASC | |
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] | |
) ON [PRIMARY] | |
GO | |
/****** Object: Table [dbo].[Brewery] ******/ | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO | |
CREATE TABLE [dbo].[Brewery]( | |
[BreweryID] [int] NOT NULL, | |
[BreweryName] [nvarchar](50) NULL, | |
[CityID] [int] NULL, | |
CONSTRAINT [PK_Brewery] PRIMARY KEY CLUSTERED | |
( | |
[BreweryID] ASC | |
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] | |
) ON [PRIMARY] | |
GO | |
/****** Object: Table [dbo].[City] ******/ | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO | |
CREATE TABLE [dbo].[City]( | |
[CityID] [int] IDENTITY(1,1) NOT NULL, | |
[CityName] [nvarchar](40) NULL, | |
[StateCode] [nchar](2) NULL, | |
CONSTRAINT [PK_City] PRIMARY KEY CLUSTERED | |
( | |
[CityID] ASC | |
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] | |
) ON [PRIMARY] | |
GO | |
/****** Object: Table [dbo].[State] ******/ | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO | |
CREATE TABLE [dbo].[State]( | |
[StateCode] [nchar](2) NOT NULL, | |
[StateName] [nvarchar](20) NULL, | |
CONSTRAINT [PK_State] PRIMARY KEY CLUSTERED | |
( | |
[StateCode] ASC | |
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] | |
) ON [PRIMARY] | |
GO | |
/****** Object: Table [dbo].[Style] ******/ | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO | |
CREATE TABLE [dbo].[Style]( | |
[StyleID] [int] IDENTITY(1,1) NOT NULL, | |
[StyleName] [nvarchar](40) NULL, | |
CONSTRAINT [PK_Style] PRIMARY KEY CLUSTERED | |
( | |
[StyleID] ASC | |
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] | |
) ON [PRIMARY] | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1, N'Pub Beer', N'12.0', N'0.05', N'N/A', 19, 409) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2, N'Devil''s Cup', N'12.0', N'0.066', N'N/A', 18, 178) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (3, N'Rise of the Phoenix', N'12.0', N'0.071', N'N/A', 16, 178) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (4, N'Sinister', N'12.0', N'0.09', N'N/A', 12, 178) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (5, N'Sex and Candy', N'12.0', N'0.075', N'N/A', 16, 178) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (6, N'Black Exodus', N'12.0', N'0.077', N'N/A', 80, 178) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (7, N'Lake Street Express', N'12.0', N'0.045', N'N/A', 18, 178) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (8, N'Foreman', N'12.0', N'0.065', N'N/A', 22, 178) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (9, N'Jade', N'12.0', N'0.055', N'N/A', 18, 178) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (10, N'Cone Crusher', N'12.0', N'0.086', N'N/A', 12, 178) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (11, N'Sophomoric Saison', N'12.0', N'0.072', N'N/A', 90, 178) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (12, N'Regional Ring Of Fire', N'12.0', N'0.073', N'N/A', 90, 178) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (13, N'Garce Selé', N'12.0', N'0.069', N'N/A', 90, 178) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (14, N'Troll Destroyer', N'12.0', N'0.085', N'N/A', 29, 178) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (15, N'Bitter Bitch', N'12.0', N'0.061', N'60.0', 18, 178) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (16, N'Ginja Ninja', N'12.0', N'0.06', N'N/A', 39, 155) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (17, N'Cherried Away', N'12.0', N'0.06', N'N/A', 39, 155) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (18, N'Rhubarbarian', N'12.0', N'0.06', N'N/A', 39, 155) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (19, N'BrightCider', N'12.0', N'0.06', N'N/A', 39, 155) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (20, N'He Said Baltic-Style Porter', N'12.0', N'0.082', N'N/A', 27, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (21, N'He Said Belgian-Style Tripel', N'12.0', N'0.082', N'N/A', 96, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (22, N'Lower De Boom', N'8.4', N'0.099', N'92.0', 7, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (23, N'Fireside Chat', N'12.0', N'0.079', N'45.0', 99, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (24, N'Marooned On Hog Island', N'12.0', N'0.079', N'N/A', 23, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (25, N'Bitter American', N'12.0', N'0.044', N'42.0', 18, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (26, N'Hell or High Watermelon Wheat (2009)', N'12.0', N'0.049', N'17.0', 61, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (27, N'Hell or High Watermelon Wheat (2009)', N'12.0', N'0.049', N'17.0', 61, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (28, N'21st Amendment Watermelon Wheat Beer (2006)', N'12.0', N'0.049', N'17.0', 61, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (29, N'21st Amendment IPA (2006)', N'12.0', N'0.07', N'70.0', 16, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (30, N'Brew Free! or Die IPA (2008)', N'12.0', N'0.07', N'70.0', 16, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (31, N'Brew Free! or Die IPA (2009)', N'12.0', N'0.07', N'70.0', 16, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (32, N'Special Edition: Allies Win The War!', N'12.0', N'0.085', N'52.0', 54, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (33, N'Hop Crisis', N'12.0', N'0.097', N'94.0', 12, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (34, N'Bitter American (2011)', N'12.0', N'0.044', N'42.0', 18, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (35, N'Fireside Chat (2010)', N'12.0', N'0.079', N'45.0', 99, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (36, N'Back in Black', N'12.0', N'0.068', N'65.0', 8, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (37, N'Monk''s Blood', N'12.0', N'0.083', N'35.0', 28, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (38, N'Brew Free! or Die IPA', N'12.0', N'0.07', N'65.0', 16, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (39, N'Hell or High Watermelon Wheat', N'12.0', N'0.049', N'17.0', 61, 369) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (40, N'Bimini Twist', N'12.0', N'0.07', N'82.0', 16, 68) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (41, N'Beach Blonde', N'12.0', N'0.05', N'N/A', 9, 68) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (42, N'Rod Bender Red', N'12.0', N'0.059', N'N/A', 5, 68) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (43, N'Passion Fruit Prussia', N'12.0', N'0.035', N'11.0', 33, 61) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (44, N'Send Help', N'12.0', N'0.045', N'18.0', 9, 61) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (45, N'Cast Iron Oatmeal Brown', N'12.0', N'0.055', N'N/A', 10, 61) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (46, N'Reprise Centennial Red', N'12.0', N'0.06', N'N/A', 5, 61) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (47, N'Alter Ego', N'12.0', N'0.055', N'N/A', 8, 61) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (48, N'Divided Sky', N'12.0', N'0.065', N'N/A', 16, 61) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (49, N'Resurrected', N'12.0', N'0.065', N'N/A', 16, 61) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (50, N'Contact High', N'12.0', N'0.05', N'28.0', 20, 61) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (51, N'Galaxyfest', N'16.0', N'0.065', N'N/A', 16, 28) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (52, N'Citrafest', N'16.0', N'0.05', N'45.0', 16, 28) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (53, N'Barn Yeti', N'16.0', N'0.09', N'N/A', 31, 28) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (54, N'Scarecrow', N'16.0', N'0.069', N'65.0', 16, 28) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (55, N'Ironman', N'16.0', N'0.09', N'50.0', 54, 28) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (56, N'Honey Kolsch', N'16.0', N'0.046', N'15.0', 70, 28) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (57, N'Copperhead Amber', N'16.0', N'0.052', N'18.0', 28, 28) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (58, N'Rude Parrot IPA', N'16.0', N'0.059', N'75.0', 16, 482) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (59, N'British Pale Ale (2010)', N'16.0', N'0.054', N'30.0', 51, 482) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (60, N'British Pale Ale', N'16.0', N'0.054', N'30.0', 51, 482) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (61, N'Ballz Deep Double IPA', N'16.0', N'0.084', N'82.0', 12, 482) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (62, N'Wolfman''s Berliner', N'12.0', N'0.038', N'N/A', 33, 374) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (63, N'Colorado Native', N'12.0', N'0.055', N'26.0', 6, 463) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (64, N'Colorado Native (2011)', N'12.0', N'0.055', N'26.0', 6, 463) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (65, N'Jockamo IPA', N'12.0', N'0.065', N'52.0', 16, 534) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (66, N'Purple Haze', N'12.0', N'0.042', N'13.0', 61, 534) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (67, N'Abita Amber', N'12.0', N'0.045', N'17.0', 6, 534) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (68, N'Citra Ass Down', N'16.0', N'0.082', N'68.0', 16, 63) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (69, N'The Brown Note', N'16.0', N'0.05', N'20.0', 10, 63) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (70, N'Citra Ass Down', N'16.0', N'0.08', N'68.0', 12, 63) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (71, N'London Balling', N'16.0', N'0.125', N'80.0', 46, 2) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (72, N'35 K', N'16.0', N'0.077', N'25.0', 77, 2) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (73, N'A Beer', N'16.0', N'0.042', N'42.0', 18, 2) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (74, N'Rules are Rules', N'16.0', N'0.05', N'25.0', 62, 2) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (75, N'Flesh Gourd''n', N'16.0', N'0.066', N'21.0', 83, 2) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (76, N'Sho''nuff', N'16.0', N'0.04', N'13.0', 30, 2) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (77, N'Bloody Show', N'16.0', N'0.055', N'17.0', 21, 2) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (78, N'Rico Sauvin', N'16.0', N'0.076', N'68.0', 12, 2) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (79, N'Coq de la Marche', N'16.0', N'0.051', N'38.0', 90, 2) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (80, N'Kamen Knuddeln', N'16.0', N'0.065', N'N/A', 26, 2) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (81, N'Pile of Face', N'16.0', N'0.06', N'65.0', 16, 2) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (82, N'The Brown Note', N'16.0', N'0.05', N'20.0', 48, 63) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (83, N'Maylani''s Coconut Stout', N'16.0', N'0.053', N'35.0', 23, 368) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (84, N'Oatmeal PSA', N'16.0', N'0.05', N'35.0', 18, 368) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (85, N'Pre Flight Pilsner', N'16.0', N'0.052', N'33.0', 21, 368) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (86, N'P-Town Pilsner', N'12.0', N'0.04', N'20.0', 21, 118) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (87, N'Klickitat Pale Ale', N'12.0', N'0.053', N'36.0', 18, 118) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (88, N'Yellow Wolf Imperial IPA', N'12.0', N'0.082', N'103.0', 12, 118) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (89, N'Freeride APA', N'12.0', N'0.053', N'40.0', 18, 271) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (90, N'Alaskan Amber', N'12.0', N'0.053', N'18.0', 3, 271) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (91, N'Hopalicious', N'12.0', N'0.057', N'N/A', 18, 74) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (92, N'Kentucky Kölsch', N'16.0', N'0.043', N'N/A', 70, 389) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (93, N'Kentucky IPA', N'16.0', N'0.065', N'N/A', 16, 389) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (94, N'Dusty Trail Pale Ale', N'16.0', N'0.054', N'N/A', 18, 402) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (95, N'Damnesia', N'16.0', N'0.062', N'N/A', 16, 402) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (96, N'Desolation IPA', N'16.0', N'0.062', N'43.0', 16, 402) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (97, N'Liberty Ale', N'12.0', N'0.059', N'N/A', 16, 36) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (98, N'IPA', N'12.0', N'0.065', N'N/A', 16, 36) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (99, N'Summer Wheat', N'12.0', N'0.045', N'N/A', 20, 36) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (100, N'California Lager', N'12.0', N'0.049', N'N/A', 6, 36) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (101, N'Brotherhood Steam', N'12.0', N'0.056', N'N/A', 37, 36) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (102, N'Blood Orange Gose', N'12.0', N'0.042', N'N/A', 63, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (103, N'Keebarlin'' Pale Ale', N'12.0', N'0.042', N'N/A', 18, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (104, N'the Kimmie, the Yink and the Holy Gose', N'12.0', N'0.048', N'N/A', 63, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (105, N'Fall Hornin''', N'12.0', N'0.06', N'N/A', 83, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (106, N'Barney Flats Oatmeal Stout', N'12.0', N'0.057', N'13.0', 80, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (107, N'Summer Solstice', N'12.0', N'0.056', N'4.0', 40, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (108, N'Hop Ottin'' IPA', N'12.0', N'0.07', N'80.0', 16, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (109, N'Boont Amber Ale', N'12.0', N'0.058', N'15.0', 5, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (110, N'Barney Flats Oatmeal Stout', N'12.0', N'0.057', N'13.0', 80, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (111, N'El Steinber Dark Lager', N'16.0', N'0.055', N'25.0', 97, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (112, N'Boont Amber Ale (2010)', N'12.0', N'0.058', N'15.0', 5, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (113, N'Summer Solstice Cerveza Crema (2009)', N'12.0', N'0.056', N'4.0', 40, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (114, N'Barney Flats Oatmeal Stout (2012)', N'12.0', N'0.057', N'13.0', 80, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (115, N'Winter Solstice', N'12.0', N'0.069', N'6.0', 99, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (116, N'Hop Ottin'' IPA (2011)', N'12.0', N'0.07', N'80.0', 16, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (117, N'Boont Amber Ale (2011)', N'12.0', N'0.058', N'15.0', 5, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (118, N'Summer Solstice (2011)', N'12.0', N'0.056', N'4.0', 40, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (119, N'Poleeko Gold Pale Ale (2009)', N'12.0', N'0.055', N'28.0', 18, 172) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (120, N'Charlie''s Rye IPA', N'16.0', N'0.06', N'N/A', 16, 147) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (121, N'River Pig Pale Ale', N'16.0', N'0.054', N'N/A', 18, 543) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (122, N'Oaky''s Oatmeal Stout', N'16.0', N'0.047', N'N/A', 80, 543) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (123, N'Angry Orchard Apple Ginger', N'16.0', N'0.05', N'N/A', 39, 435) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (124, N'Angry Orchard Crisp Apple', N'16.0', N'0.05', N'N/A', 39, 435) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (125, N'Angry Orchard Crisp Apple', N'12.0', N'0.05', N'N/A', 39, 435) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (126, N'Golden One', N'12.0', N'0.068', N'N/A', 30, 194) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (127, N'Arjuna', N'12.0', N'0.06', N'N/A', 100, 194) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (128, N'Uroboros', N'12.0', N'0.085', N'N/A', 23, 194) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (129, N'Long Leaf', N'16.0', N'0.071', N'75.0', 16, 70) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (130, N'Honey Badger Blonde', N'16.0', N'0.047', N'19.0', 9, 70) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (131, N'Porter (a/k/a Black Gold Porter)', N'16.0', N'0.06', N'23.0', 22, 70) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (132, N'Sky High Rye', N'12.0', N'0.06', N'55.0', 18, 542) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (133, N'Whitsun', N'12.0', N'0.062', N'17.0', 20, 542) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (134, N'On-On Ale (2008)', N'12.0', N'0.052', N'N/A', 18, 514) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (135, N'Quakertown Stout', N'12.0', N'0.092', N'50.0', 14, 427) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (136, N'Greenbelt Farmhouse Ale', N'12.0', N'0.051', N'20.0', 90, 427) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (137, N'Mo''s Gose', N'16.0', N'0.052', N'10.0', 63, 462) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (138, N'Green Bullet Organic India Pale Ale', N'16.0', N'0.07', N'45.0', 16, 430) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (139, N'Rocket Girl', N'12.0', N'0.032', N'27.0', 70, 529) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (140, N'Ninja Porter', N'12.0', N'0.053', N'26.0', 22, 529) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (141, N'Shiva IPA', N'12.0', N'0.06', N'69.0', 16, 529) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (142, N'Aslan Kölsch', N'16.0', N'0.048', N'N/A', 70, 354) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (143, N'Aslan IPA', N'16.0', N'0.077', N'N/A', 16, 354) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (144, N'Aslan Amber', N'16.0', N'0.077', N'N/A', 5, 354) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (145, N'This Season''s Blonde', N'12.0', N'0.056', N'27.0', 9, 524) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (146, N'Independence Pass Ale', N'12.0', N'0.07', N'67.0', 16, 524) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (147, N'Trolley Stop Stout', N'12.0', N'0.057', N'40.0', 23, 375) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (148, N'Bitter Bitch Imperial IPA', N'12.0', N'0.082', N'138.0', 12, 375) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (149, N'Poop Deck Porter', N'12.0', N'0.062', N'35.0', 22, 375) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (150, N'Old Red Beard Amber Ale', N'12.0', N'0.06', N'35.0', 5, 375) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (151, N'Hop A-Peel', N'16.0', N'0.075', N'115.0', 12, 73) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (152, N'Vanilla Java Porter', N'16.0', N'0.055', N'12.0', 22, 73) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (153, N'Michelada', N'16.0', N'0.052', N'N/A', 61, 73) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (154, N'Dirty Blonde Ale', N'12.0', N'0.045', N'8.0', 9, 73) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (155, N'Grand Circus IPA', N'12.0', N'0.05', N'62.0', 16, 73) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (156, N'Atwater''s Lager', N'12.0', N'0.05', N'12.0', 79, 73) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (157, N'Heavy Machinery IPA Series #1: Heavy Fist', N'16.0', N'0.07', N'N/A', 8, 414) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (158, N'Fire Eagle IPA', N'12.0', N'0.062', N'N/A', 16, 414) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (159, N'Peacemaker', N'12.0', N'0.051', N'N/A', 18, 414) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (160, N'Pearl-Snap', N'12.0', N'0.053', N'N/A', 62, 414) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (161, N'Black Thunder', N'12.0', N'0.052', N'N/A', 91, 414) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (162, N'Raja', N'12.0', N'0.08', N'N/A', 12, 38) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (163, N'Perzik Saison', N'12.0', N'0.064', N'N/A', 90, 38) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (164, N'Avery Joe’s Premium American Pilsner', N'12.0', N'0.047', N'42.0', 62, 38) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (165, N'White Rascal', N'12.0', N'0.056', N'10.0', 100, 38) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (166, N'Avery India Pale Ale', N'12.0', N'0.063', N'69.0', 16, 38) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (167, N'Ellie’s Brown Ale', N'12.0', N'0.055', N'17.0', 10, 38) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (168, N'Pumpkin Beast', N'12.0', N'0.062', N'17.0', 83, 361) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (169, N'OktoberBeast', N'12.0', N'0.072', N'22.0', 75, 361) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (170, N'Mad Beach', N'12.0', N'0.048', N'23.0', 20, 361) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (171, N'Hog Wild India Pale Ale', N'12.0', N'0.067', N'N/A', 16, 361) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (172, N'Devils Tramping Ground Tripel', N'12.0', N'0.092', N'5.0', 96, 361) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (173, N'Hot Rod Red', N'12.0', N'0.061', N'41.0', 5, 361) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (174, N'Palate Mallet', N'12.0', N'0.086', N'N/A', 12, 236) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (175, N'Back East Porter', N'12.0', N'0.06', N'N/A', 22, 236) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (176, N'Back East Golden Ale', N'12.0', N'0.049', N'N/A', 9, 236) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (177, N'Misty Mountain IPA', N'12.0', N'0.07', N'N/A', 16, 236) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (178, N'Back East Ale', N'12.0', N'0.05', N'N/A', 5, 236) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (179, N'Truck Stop Honey Brown Ale', N'12.0', N'0.06', N'N/A', 48, 287) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (180, N'Naked Pig Pale Ale', N'12.0', N'0.06', N'43.0', 18, 287) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (181, N'Topcutter India Pale Ale', N'12.0', N'0.068', N'70.0', 16, 484) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (182, N'Field 41 Pale Ale', N'12.0', N'0.044', N'38.0', 18, 484) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (183, N'Grapefruit Sculpin', N'12.0', N'0.07', N'N/A', 16, 35) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (184, N'Even Keel', N'12.0', N'0.038', N'40.0', 16, 35) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (185, N'Ballast Point Pale Ale', N'12.0', N'0.052', N'23.0', 70, 35) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (186, N'Big Eye India Pale Ale', N'12.0', N'0.07', N'75.0', 16, 35) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (187, N'Longfin Lager', N'12.0', N'0.046', N'N/A', 79, 35) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (188, N'Sculpin IPA', N'12.0', N'0.07', N'70.0', 16, 35) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (189, N'All Nighter Ale', N'12.0', N'0.045', N'N/A', 57, 319) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (190, N'Banner American Rye', N'12.0', N'0.045', N'20.0', 89, 319) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (191, N'Banner American Ale', N'12.0', N'0.035', N'45.0', 5, 319) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (192, N'Thai.p.a', N'16.0', N'0.07', N'46.0', 16, 21) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (193, N'Barrio Blanco', N'12.0', N'0.06', N'60.0', 16, 252) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (194, N'Barrio Tucson Blonde', N'12.0', N'0.045', N'N/A', 9, 252) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (195, N'Hop in the ‘Pool Helles', N'12.0', N'0.049', N'22.0', 21, 117) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (196, N'Ultra Gnar Gnar IPA', N'12.0', N'0.067', N'60.0', 16, 117) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (197, N'In-Tents India Pale Lager', N'12.0', N'0.068', N'62.0', 19, 117) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (198, N'Lost Meridian Wit', N'12.0', N'0.05', N'20.0', 100, 117) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (199, N'Celestial Meridian Cascadian Dark Lager', N'12.0', N'0.051', N'45.0', 55, 117) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (200, N'Wagon Party', N'12.0', N'0.054', N'55.0', 37, 259) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (201, N'Sky-Five', N'12.0', N'0.067', N'70.0', 16, 259) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (202, N'Stargrazer', N'12.0', N'0.05', N'28.0', 91, 259) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (203, N'Wonderstuff', N'12.0', N'0.054', N'48.0', 62, 259) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (204, N'Tarnation California-Style Lager', N'12.0', N'0.053', N'N/A', 37, 293) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (205, N'On the Count of 3 (2015)', N'16.0', N'0.07', N'42.0', 65, 293) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (206, N'Summer Swelter', N'12.0', N'0.047', N'N/A', 20, 293) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (207, N'Phantom Punch Winter Stout', N'12.0', N'0.068', N'N/A', 60, 293) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (208, N'Hayride Autumn Ale', N'12.0', N'0.066', N'N/A', 89, 293) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (209, N'Celsius Summer Ale (2012)', N'12.0', N'0.047', N'N/A', 20, 293) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (210, N'Amber Road', N'12.0', N'0.055', N'35.0', 5, 293) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (211, N'Pamola Xtra Pale Ale', N'12.0', N'0.049', N'28.0', 18, 293) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (212, N'Stowaway IPA', N'12.0', N'0.069', N'69.0', 16, 293) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (213, N'Hoptopus Double IPA', N'16.0', N'0.088', N'108.0', 12, 307) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (214, N'Watermelon Ale', N'12.0', N'0.05', N'10.0', 61, 104) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (215, N'Fenway American Pale Ale', N'12.0', N'0.058', N'45.0', 18, 104) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (216, N'Back Bay IPA', N'12.0', N'0.068', N'85.0', 16, 104) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (217, N'Bunker Hill Blueberry Ale ', N'12.0', N'0.048', N'16.0', 82, 104) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (218, N'Oberon', N'12.0', N'0.058', N'N/A', 20, 77) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (219, N'Smitten', N'16.0', N'0.06', N'N/A', 89, 77) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (220, N'Winter White', N'16.0', N'0.05', N'N/A', 100, 77) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (221, N'Oberon', N'16.0', N'0.058', N'N/A', 20, 77) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (222, N'Two Hearted', N'16.0', N'0.07', N'N/A', 16, 77) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (223, N'Best Brown', N'16.0', N'0.058', N'N/A', 10, 77) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (224, N'Moar', N'12.0', N'0.044', N'44.0', 50, 54) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (225, N'Uber Lupin Schwarz IPA', N'16.0', N'0.083', N'N/A', 12, 54) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (226, N'Nordic Blonde', N'12.0', N'0.057', N'27.0', 9, 54) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (227, N'Cold Press', N'12.0', N'0.06', N'N/A', 8, 76) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (228, N'Harness the Winter', N'12.0', N'0.072', N'87.0', 16, 76) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (229, N'14° ESB ', N'12.0', N'0.056', N'32.0', 57, 76) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (230, N'Bent Hop Golden IPA', N'12.0', N'0.062', N'68.0', 16, 76) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (231, N'Bent Paddle Black Ale', N'12.0', N'0.06', N'34.0', 8, 76) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (232, N'Venture Pils', N'12.0', N'0.05', N'38.0', 62, 76) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (233, N'Lost Sailor IPA', N'12.0', N'0.055', N'40.0', 50, 279) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (234, N'Steel Rail Extra Pale Ale', N'12.0', N'0.053', N'20.0', 18, 279) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (235, N'La Frontera Premium IPA', N'12.0', N'0.078', N'N/A', 16, 464) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (236, N'Tejas Lager', N'12.0', N'0.047', N'N/A', 41, 464) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (237, N'Number 22 Porter', N'12.0', N'0.064', N'N/A', 22, 464) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (238, N'Big Bend Hefeweizen', N'12.0', N'0.056', N'N/A', 65, 464) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (239, N'Terlingua Gold', N'12.0', N'0.06', N'N/A', 9, 464) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (240, N'Aprè Shred', N'16.0', N'0.081', N'17.0', 24, 221) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (241, N'Hemlock Double IPA', N'12.0', N'0.095', N'104.0', 12, 221) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (242, N'West Portal Colorado Common Summer Ale', N'16.0', N'0.041', N'N/A', 37, 221) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (243, N'Disconnected Red', N'16.0', N'0.067', N'85.0', 5, 221) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (244, N'Big Elm IPA', N'12.0', N'0.07', N'N/A', 16, 478) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (245, N'Gerry Dog Stout', N'12.0', N'0.065', N'N/A', 23, 478) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (246, N'413 Farmhouse Ale', N'12.0', N'0.06', N'N/A', 90, 478) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (247, N'Dark Star', N'16.0', N'0.08', N'54.0', 23, 9) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (248, N'Ryecoe', N'16.0', N'0.062', N'N/A', 16, 9) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (249, N'Blueberry Blonde', N'12.0', N'0.06', N'N/A', 61, 41) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (250, N'Galaxy IPA', N'16.0', N'0.075', N'60.0', 16, 41) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (251, N'Big River Pilsner', N'12.0', N'0.05', N'32.0', 41, 520) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (252, N'House Brand IPA', N'12.0', N'0.06', N'55.0', 16, 520) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (253, N'Big Sky IPA', N'12.0', N'0.062', N'65.0', 16, 337) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (254, N'Scape Goat Pale Ale', N'12.0', N'0.05', N'40.0', 51, 337) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (255, N'Montana Trout Slayer Ale', N'12.0', N'0.05', N'35.0', 20, 337) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (256, N'Moose Drool Brown Ale', N'12.0', N'0.051', N'26.0', 10, 337) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (257, N'Powder Hound Winter Ale', N'12.0', N'0.072', N'60.0', 54, 337) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (258, N'Moose Drool Brown Ale (2011)', N'12.0', N'0.051', N'26.0', 10, 337) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (259, N'Montana Trout Slayer Ale (2012)', N'12.0', N'0.05', N'35.0', 20, 337) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (260, N'Big Sky IPA (2012)', N'12.0', N'0.062', N'65.0', 16, 337) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (261, N'Summer Honey', N'12.0', N'0.047', N'N/A', 9, 337) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (262, N'Scape Goat Pale Ale (2010)', N'12.0', N'0.05', N'40.0', 51, 337) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (263, N'Montana Trout Slayer Ale (2009)', N'12.0', N'0.05', N'35.0', 20, 337) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (264, N'Moose Drool Brown Ale (2009)', N'12.0', N'0.051', N'26.0', 10, 337) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (265, N'Arcus IPA', N'12.0', N'0.069', N'81.0', 16, 222) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (266, N'Wavemaker', N'12.0', N'0.058', N'38.0', 5, 222) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (267, N'Jack Pine Savage', N'16.0', N'0.053', N'43.0', 18, 445) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (268, N'Forest Fire Imperial Smoked Rye', N'16.0', N'0.099', N'85.0', 89, 445) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (269, N'Bad Axe Imperial IPA', N'16.0', N'0.098', N'76.0', 12, 445) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (270, N'Morning Wood', N'16.0', N'0.055', N'35.0', 80, 445) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (271, N'Bark Bite IPA', N'16.0', N'0.066', N'50.0', 16, 445) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (272, N'Jalapeno Pale Ale', N'16.0', N'0.055', N'45.0', 18, 71) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (273, N'Blown Out Brown', N'12.0', N'0.052', N'N/A', 10, 408) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (274, N'Single Hop Ale', N'12.0', N'0.063', N'N/A', 18, 408) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (275, N'Sawtooth Ale', N'12.0', N'0.054', N'N/A', 9, 408) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (276, N'Saucy Intruder', N'16.0', N'0.072', N'75.0', 89, 19) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (277, N'Deception', N'12.0', N'0.045', N'16.0', 9, 113) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (278, N'Blackmarket Rye IPA', N'12.0', N'0.075', N'35.0', 16, 113) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (279, N'Black Market Hefeweizen', N'12.0', N'0.05', N'8.0', 65, 113) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (280, N'Aftermath Pale Ale', N'12.0', N'0.058', N'44.0', 18, 113) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (281, N'American India Red Ale', N'12.0', N'0.071', N'83.0', 24, 295) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (282, N'American Red Porter', N'12.0', N'0.071', N'45.0', 22, 295) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (283, N'American Red Saison', N'12.0', N'0.078', N'34.0', 90, 295) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (284, N'Colorado Red Ale', N'12.0', N'0.066', N'44.0', 5, 295) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (285, N'Saddle Bronc Brown Ale', N'12.0', N'0.048', N'16.0', 10, 80) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (286, N'Bomber Mountain Amber Ale', N'12.0', N'0.046', N'20.0', 5, 80) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (287, N'Flying Sailor', N'12.0', N'0.073', N'N/A', 89, 96) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (288, N'Nordskye ', N'12.0', N'0.048', N'47.0', 16, 13) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (289, N'North Third Stout', N'12.0', N'0.06', N'30.0', 60, 13) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (290, N'Honey Lav', N'12.0', N'0.052', N'N/A', 20, 13) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (291, N'Coconut Brown Ale', N'12.0', N'0.068', N'N/A', 10, 13) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (292, N'51K IPA', N'12.0', N'0.07', N'51.0', 16, 13) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (293, N'Grand Rabbits', N'12.0', N'0.055', N'N/A', 40, 13) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (294, N'1800 Big Log Wheat (2012)', N'12.0', N'0.05', N'N/A', 20, 381) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (295, N'Double Play Pilsner', N'12.0', N'0', N'N/A', 21, 381) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (296, N'Brewerhood Brown Ale', N'12.0', N'0.055', N'N/A', 10, 381) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (297, N'Last Call Imperial Amber Ale', N'12.0', N'0.08', N'N/A', 5, 381) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (298, N'Pernicious Double IPA', N'12.0', N'0.096', N'N/A', 12, 381) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (299, N'6-4-3 Double Play Pilsner', N'12.0', N'0.052', N'N/A', 62, 381) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (300, N'N Street Drive-In 50th Anniversary IPA', N'12.0', N'0', N'N/A', 12, 381) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (301, N'467 Ethan''s Stout', N'12.0', N'0.05', N'N/A', 23, 381) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (302, N'1335 Wicked Snout', N'12.0', N'0.064', N'N/A', 90, 381) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (303, N'543 Skull Creek Fresh Hopped Pale Ale', N'12.0', N'0.045', N'N/A', 18, 381) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (304, N'1327 Pod''s ESB', N'12.0', N'0.056', N'37.0', 57, 381) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (305, N'1327 Pod''s ESB', N'12.0', N'0.056', N'37.0', 57, 381) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (306, N'1327 Pod''s ESB', N'12.0', N'0.056', N'37.0', 57, 381) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (307, N'834 Happy As Ale', N'12.0', N'0.046', N'35.0', 18, 381) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (308, N'Yellow Collar', N'12.0', N'0.059', N'N/A', 76, 423) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (309, N'Green Collar', N'12.0', N'0.059', N'N/A', 76, 423) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (310, N'Quarter Mile Double IPA', N'12.0', N'0.08', N'80.0', 12, 305) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (311, N'Full Nelson Pale Ale', N'12.0', N'0.059', N'60.0', 18, 383) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (312, N'Steel Wheels ESB', N'12.0', N'0.065', N'30.0', 57, 383) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (313, N'Blue Mountain Classic Lager', N'12.0', N'0.053', N'22.0', 56, 383) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (314, N'Full Nelson Pale Ale (2010)', N'12.0', N'0.059', N'60.0', 18, 383) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (315, N'Kölsch 151', N'12.0', N'0.049', N'16.0', 70, 415) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (316, N'Professor Black', N'12.0', N'0', N'N/A', 23, 78) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (317, N'Little Boss', N'12.0', N'0', N'N/A', 20, 78) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (318, N'Van Dayum!', N'12.0', N'0', N'N/A', 5, 78) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (319, N'Spirit Animal', N'12.0', N'0', N'N/A', 18, 78) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (320, N'Toxic Sludge', N'16.0', N'0.07', N'N/A', 8, 490) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (321, N'Blue Point White IPA', N'12.0', N'0.06', N'40.0', 25, 490) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (322, N'Blue Point Summer Ale', N'12.0', N'0.044', N'16.0', 9, 490) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (323, N'Toasted Lager', N'12.0', N'0.055', N'28.0', 97, 490) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (324, N'Bohemian Export Lager', N'12.0', N'0.06', N'N/A', 43, 365) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (325, N'Altus Bohemes Altbier', N'12.0', N'0.053', N'N/A', 3, 365) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (326, N'Cherny Bock', N'12.0', N'0.04', N'N/A', 91, 365) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (327, N'Czech Pilsner', N'12.0', N'0.05', N'N/A', 41, 365) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (328, N'Viennese Lager', N'12.0', N'0.05', N'N/A', 97, 365) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (329, N'Mad Manatee IPA', N'12.0', N'0.065', N'N/A', 16, 379) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (330, N'Killer Whale Cream Ale', N'12.0', N'0.055', N'N/A', 40, 379) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (331, N'Duke''s Cold Nose Brown Ale', N'12.0', N'0.06', N'N/A', 10, 379) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (332, N'Longhop IPA', N'16.0', N'0.042', N'30.0', 16, 282) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (333, N'Lucky Buck', N'16.0', N'0.04', N'34.0', 67, 282) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (334, N'Bomb Lager (New Recipe)', N'12.0', N'0.051', N'N/A', 79, 526) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (335, N'Bomb Lager (Old Recipe)', N'12.0', N'0.045', N'27.0', 79, 526) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (336, N'Firestarter India Pale Ale', N'12.0', N'0.066', N'72.0', 16, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (337, N'Kilt Dropper Scotch Ale', N'16.0', N'0.075', N'22.0', 92, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (338, N'Wood Splitter Pilsner', N'16.0', N'0.048', N'30.0', 41, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (339, N'Gyptoberfest', N'12.0', N'0.056', N'26.0', 75, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (340, N'Farmer Wirtz India Pale Ale', N'16.0', N'0.07', N'94.0', 50, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (341, N'Slow & Steady Golden Ale', N'12.0', N'0.047', N'N/A', 9, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (342, N'Pink-I Raspberry IPA', N'16.0', N'0.068', N'N/A', 16, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (343, N'Moe''s Original Bar B Que ''Bama Brew Golden Ale', N'12.0', N'0.047', N'N/A', 9, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (344, N'Live Local Golden Ale', N'12.0', N'0.047', N'N/A', 9, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (345, N'Screaming Eagle Special Ale ESB', N'12.0', N'0.048', N'38.0', 57, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (346, N'Dirtbag Dunkel', N'16.0', N'0.049', N'N/A', 78, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (347, N'Kindler Pale Ale', N'12.0', N'0.053', N'45.0', 18, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (348, N'Mistress Winter Wheat', N'12.0', N'0.064', N'N/A', 99, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (349, N'Tent Pole Vanilla Porter', N'16.0', N'0.061', N'N/A', 22, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (350, N'Awry Rye Pale Ale', N'12.0', N'0.058', N'N/A', 18, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (351, N'Demshitz Brown Ale', N'12.0', N'0.058', N'N/A', 10, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (352, N'Wood Splitter Pilsner (2012)', N'12.0', N'0.048', N'N/A', 41, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (353, N'Brush Creek Blonde', N'16.0', N'0.048', N'N/A', 9, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (354, N'Firestarter India Pale Ale', N'16.0', N'0.066', N'72.0', 16, 108) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (355, N'Noche Dulce', N'16.0', N'0.071', N'16.0', 22, 232) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (356, N'Porch Rocker', N'12.0', N'0.045', N'8.0', 85, 301) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (357, N'Rebel IPA', N'16.0', N'0.065', N'45.0', 16, 301) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (358, N'Cold Snap', N'12.0', N'0.055', N'N/A', 100, 301) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (359, N'Samuel Adams Winter Lager', N'12.0', N'0.056', N'N/A', 35, 301) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (360, N'Boston Lager', N'16.0', N'0.049', N'30.0', 97, 301) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (361, N'Boston Lager', N'12.0', N'0.049', N'30.0', 97, 301) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (362, N'Samuel Adams Octoberfest', N'12.0', N'0.053', N'15.0', 75, 301) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (363, N'Samuel Adams Summer Ale', N'12.0', N'0.053', N'7.0', 20, 301) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (364, N'Boston Lager', N'12.0', N'0.049', N'30.0', 97, 301) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (365, N'Hazed & Infused', N'12.0', N'0.049', N'35.0', 18, 418) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (366, N'Hoopla Pale Ale', N'12.0', N'0.057', N'35.0', 18, 418) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (367, N'Hazed & Infused (2010)', N'12.0', N'0.049', N'35.0', 18, 418) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (368, N'Heavy Lifting', N'12.0', N'0.062', N'80.0', 16, 32) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (369, N'1492', N'12.0', N'0.065', N'N/A', 18, 168) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (370, N'Mango Ginger', N'12.0', N'0.058', N'N/A', 16, 168) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (371, N'Passenger', N'12.0', N'0.047', N'N/A', 49, 168) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (372, N'Plum St. Porter', N'12.0', N'0.06', N'52.0', 22, 220) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (373, N'Plum St. Porter', N'12.0', N'0.057', N'52.0', 22, 220) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (374, N'Bozone HopZone IPA', N'12.0', N'0.07', N'80.0', 16, 220) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (375, N'Bozone Hefe Weizen', N'12.0', N'0.06', N'25.0', 65, 220) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (376, N'Bozone Select Amber Ale', N'12.0', N'0.055', N'N/A', 5, 220) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (377, N'Evil Owl', N'12.0', N'0.052', N'40.0', 5, 208) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (378, N'Post Time Kölsch', N'16.0', N'0.05', N'N/A', 70, 196) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (379, N'Agave Wheat', N'12.0', N'0.042', N'9.0', 20, 392) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (380, N'SummerBright Ale', N'12.0', N'0.045', N'15.0', 20, 392) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (381, N'Lucky U IPA', N'12.0', N'0.062', N'68.0', 16, 392) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (382, N'Avalanche Ale', N'12.0', N'0.054', N'19.0', 5, 392) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (383, N'You''re My Boy, Blue', N'12.0', N'0.05', N'N/A', 61, 309) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (384, N'Last Stop IPA', N'12.0', N'0.072', N'60.0', 16, 309) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (385, N'Rollin Dirty Red Ale', N'12.0', N'0.05', N'21.0', 68, 309) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (386, N'Are Wheat There Yet?', N'12.0', N'0.055', N'28.0', 20, 309) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (387, N'Insert Hop Reference', N'16.0', N'0.058', N'N/A', 18, 20) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (388, N'Manitou Amber', N'16.0', N'0.053', N'N/A', 5, 86) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (389, N'Belfort', N'16.0', N'0.067', N'N/A', 90, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (390, N'Star Runner', N'16.0', N'0.06', N'N/A', 30, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (391, N'Tart Side of the Barrel', N'16.0', N'0.098', N'N/A', 14, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (392, N'Linnaeus Mango IPA', N'16.0', N'0.06', N'N/A', 16, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (393, N'Beasts A''Burnin''', N'16.0', N'0.07', N'N/A', 86, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (394, N'Verdun', N'16.0', N'0.077', N'N/A', 34, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (395, N'Barrel Aged Triomphe', N'16.0', N'0.065', N'N/A', 29, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (396, N'Cherry Doppelbock', N'16.0', N'0.065', N'N/A', 42, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (397, N'Tropical Saison', N'16.0', N'0.065', N'N/A', 90, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (398, N'Beach Patrol', N'16.0', N'0.065', N'N/A', 100, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (399, N'Nuit Serpent', N'16.0', N'0.05', N'N/A', 29, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (400, N'Paris', N'16.0', N'0.09', N'N/A', 90, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (401, N'The Grand Army', N'16.0', N'0.055', N'N/A', 29, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (402, N'Acidulated Trip', N'16.0', N'0.059', N'N/A', 90, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (403, N'Root Stock', N'16.0', N'0.066', N'N/A', 89, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (404, N'Mind Games', N'16.0', N'0.041', N'N/A', 45, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (405, N'Sous Chef', N'16.0', N'0.082', N'N/A', 32, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (406, N'Dubbelicious', N'16.0', N'0.065', N'N/A', 44, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (407, N'Psychopomp', N'16.0', N'0.062', N'N/A', 28, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (408, N'Fat Paczki', N'16.0', N'0', N'N/A', 28, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (409, N'Earth-Like Planets', N'16.0', N'0', N'N/A', 30, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (410, N'Ski Patrol', N'16.0', N'0.061', N'N/A', 100, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (411, N'Viking Ice Hole', N'16.0', N'0.063', N'N/A', 80, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (412, N'Rye Porter', N'16.0', N'0.056', N'N/A', 22, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (413, N'Wizard Burial Ground', N'16.0', N'0.099', N'N/A', 84, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (414, N'Smoky Wheat', N'16.0', N'0.051', N'N/A', 86, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (415, N'BRIPA', N'16.0', N'0.062', N'N/A', 29, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (416, N'Mela', N'16.0', N'0.062', N'N/A', 28, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (417, N'W.I.P.A Snappa', N'16.0', N'0.053', N'N/A', 29, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (418, N'Pepper in the Rye', N'16.0', N'0.063', N'N/A', 89, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (419, N'Moe Lasses''', N'16.0', N'0.064', N'N/A', 23, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (420, N'Pumpkin Tart', N'16.0', N'0.07', N'N/A', 61, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (421, N'Undertaker', N'16.0', N'0.067', N'N/A', 28, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (422, N'Undertaker (2014)', N'16.0', N'0.067', N'N/A', 28, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (423, N'Coq D''Or', N'16.0', N'0.05', N'N/A', 30, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (424, N'North French', N'16.0', N'0.06', N'N/A', 34, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (425, N'Agent a Deux', N'16.0', N'0.065', N'N/A', 28, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (426, N'Belgian Wit', N'16.0', N'0.045', N'N/A', 100, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (427, N'Pothole Stout', N'16.0', N'0.063', N'N/A', 23, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (428, N'Tree Bucket', N'16.0', N'0.093', N'N/A', 29, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (429, N'Le Flaneur Ale', N'16.0', N'0.073', N'N/A', 26, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (430, N'Maize & Blueberry', N'16.0', N'0.056', N'N/A', 61, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (431, N'Trebuchet Double IPA', N'16.0', N'0.093', N'N/A', 12, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (432, N'Contemplation', N'16.0', N'0.065', N'N/A', 34, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (433, N'Black Rabbit', N'16.0', N'0.05', N'N/A', 8, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (434, N'Zaison', N'16.0', N'0.09', N'N/A', 90, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (435, N'Vivant Tripel', N'16.0', N'0.082', N'N/A', 96, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (436, N'Tart Side of the Moon', N'16.0', N'0.098', N'N/A', 28, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (437, N'Big Red Coq', N'16.0', N'0.06', N'N/A', 5, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (438, N'Hubris Quadrupel Anniversary Ale', N'16.0', N'0.099', N'N/A', 84, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (439, N'Plow Horse Belgian Style Imperial Stout', N'16.0', N'0.095', N'N/A', 14, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (440, N'Escoffier Bretta Ale', N'16.0', N'0.092', N'N/A', 26, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (441, N'Contemplation (2012)', N'16.0', N'0.065', N'N/A', 34, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (442, N'Vivant Belgian Style Imperial Stout (2012)', N'16.0', N'0.099', N'N/A', 88, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (443, N'Big Red Coq (2012)', N'16.0', N'0.062', N'N/A', 5, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (444, N'Zaison (2012)', N'16.0', N'0.09', N'N/A', 90, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (445, N'Vivant Tripel (2012)', N'16.0', N'0.092', N'N/A', 96, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (446, N'Trebuchet Double IPA (2012)', N'16.0', N'0.097', N'N/A', 29, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (447, N'Kludde', N'16.0', N'0.085', N'N/A', 31, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (448, N'Farm Hand', N'16.0', N'0.055', N'N/A', 90, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (449, N'Solitude', N'16.0', N'0.06', N'N/A', 30, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (450, N'Triomphe', N'16.0', N'0.065', N'N/A', 29, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (451, N'Tampa Pale Ale', N'12.0', N'0', N'N/A', 18, 468) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (452, N'Orange Grove Wheat Ale', N'12.0', N'0', N'N/A', 20, 468) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (453, N'Broad Brook Ale', N'16.0', N'0.061', N'N/A', 5, 90) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (454, N'Northern Lights Amber Ale', N'12.0', N'0.05', N'15.0', 5, 494) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (455, N'Polar Pale Ale', N'12.0', N'0.052', N'17.0', 18, 494) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (456, N'Chugach Session Ale', N'12.0', N'0.048', N'N/A', 40, 494) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (457, N'Fairweather IPA', N'12.0', N'0.061', N'64.0', 16, 494) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (458, N'East India Pale Ale', N'16.0', N'0.068', N'47.0', 50, 438) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (459, N'Brooklyn Summer Ale', N'12.0', N'0.045', N'N/A', 52, 438) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (460, N'East India Pale Ale', N'12.0', N'0.068', N'47.0', 50, 438) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (461, N'Brooklyn Summer Ale (2011)', N'12.0', N'0.045', N'N/A', 52, 438) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (462, N'Brooklyn Lager (16 oz.)', N'16.0', N'0.052', N'N/A', 6, 438) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (463, N'Brooklyn Lager (12 oz.)', N'12.0', N'0.052', N'N/A', 6, 438) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (464, N'Tour de Nez Belgian IPA (Current)', N'16.0', N'0.08', N'N/A', 29, 531) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (465, N'Roler Bock (Current)', N'16.0', N'0', N'N/A', 74, 531) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (466, N'Black Adder IBA (Current)', N'16.0', N'0.073', N'85.0', 8, 531) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (467, N'Very Noddy Lager (Current)', N'16.0', N'0.099', N'N/A', 91, 531) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (468, N'Tule Duck Red Ale (Current)', N'16.0', N'0.062', N'42.0', 5, 531) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (469, N'Original Orange Blossom Ale (Current)', N'16.0', N'0.058', N'35.0', 66, 531) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (470, N'Black Noddy Lager (Current)', N'16.0', N'0.052', N'40.0', 91, 531) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (471, N'Cleveland Beer Week 2013', N'16.0', N'0.053', N'N/A', 79, 358) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (472, N'Painted Turtle', N'12.0', N'0.045', N'N/A', 18, 57) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (473, N'1836', N'12.0', N'0.06', N'40.0', 9, 215) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (474, N'Summer''s Wit', N'12.0', N'0.06', N'20.0', 100, 215) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (475, N'More Cowbell', N'16.0', N'0.09', N'118.0', 12, 215) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (476, N'Wrath of Pele', N'16.0', N'0.065', N'N/A', 10, 25) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (477, N'Black Beer''d', N'16.0', N'0.068', N'N/A', 8, 25) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (478, N'Mr. Tea', N'24.0', N'0.078', N'N/A', 61, 25) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (479, N'Pale Alement', N'12.0', N'0.055', N'40.0', 18, 25) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (480, N'Hopkick Dropkick', N'12.0', N'0.099', N'115.0', 12, 25) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (481, N'Kreamed Corn', N'12.0', N'0.06', N'N/A', 40, 25) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (482, N'Coconoats', N'16.0', N'0.065', N'N/A', 20, 25) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (483, N'Joey Wheat', N'16.0', N'0.068', N'16.0', 20, 25) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (484, N'3:33 Black IPA', N'16.0', N'0.072', N'86.0', 16, 25) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (485, N'MCA', N'16.0', N'0.068', N'N/A', 16, 25) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (486, N'Pale Alement', N'16.0', N'0.055', N'40.0', 18, 25) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (487, N'Couch Select Lager', N'12.0', N'0.05', N'14.0', 19, 198) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (488, N'Mucho Aloha Hawaiian Pale Ale', N'12.0', N'0.056', N'36.0', 18, 518) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (489, N'Heinnieweisse Weissebier', N'12.0', N'0.049', N'N/A', 65, 557) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (490, N'Snapperhead IPA', N'12.0', N'0.068', N'N/A', 16, 557) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (491, N'Moo Thunder Stout', N'12.0', N'0.049', N'N/A', 77, 557) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (492, N'Porkslap Pale Ale', N'12.0', N'0.043', N'N/A', 18, 557) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (493, N'Blackbeard', N'12.0', N'0.093', N'N/A', 14, 6) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (494, N'Rye Knot', N'12.0', N'0.062', N'N/A', 10, 6) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (495, N'Dead Arm', N'12.0', N'0.06', N'N/A', 18, 6) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (496, N'32°/50° Kölsch ', N'16.0', N'0.048', N'N/A', 70, 6) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (497, N'HopArt', N'16.0', N'0.077', N'N/A', 16, 6) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (498, N'Boy King', N'16.0', N'0.097', N'N/A', 12, 6) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (499, N'Gran Sport', N'16.0', N'0.052', N'N/A', 22, 183) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (500, N'Horny Toad Cerveza', N'16.0', N'0.053', N'25.0', 9, 183) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (501, N'Native Amber', N'16.0', N'0.063', N'35.0', 5, 183) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (502, N'F5 IPA', N'16.0', N'0.068', N'100.0', 16, 183) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (503, N'Native Amber (2013)', N'16.0', N'0.063', N'35.0', 5, 183) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (504, N'Horny Toad Cerveza (2013)', N'16.0', N'0.053', N'25.0', 9, 183) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (505, N'Hopportunity Knocks IPA', N'12.0', N'0.068', N'100.0', 16, 156) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (506, N'Pilot Rock Porter', N'12.0', N'0.06', N'N/A', 22, 156) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (507, N'Caldera Pale Ale', N'12.0', N'0.056', N'55.0', 18, 156) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (508, N'Lawnmower Lager', N'12.0', N'0.039', N'16.0', 4, 156) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (509, N'Ashland Amber Ale (2009)', N'12.0', N'0.054', N'24.0', 5, 156) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (510, N'Caldera IPA (2009)', N'12.0', N'0.061', N'94.0', 16, 156) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (511, N'Caldera IPA (2007)', N'12.0', N'0.061', N'94.0', 16, 156) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (512, N'Caldera Pale Ale (2010)', N'12.0', N'0.056', N'55.0', 18, 156) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (513, N'Caldera Pale Ale (2009)', N'12.0', N'0.056', N'55.0', 18, 156) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (514, N'Caldera Pale Ale (2005)', N'12.0', N'0.056', N'55.0', 18, 156) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (515, N'Caldera Pale Ale (2007)', N'12.0', N'0.056', N'55.0', 18, 156) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (516, N'Caldera Pale Ale (2011)', N'12.0', N'0.056', N'55.0', 18, 156) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (517, N'Ashland Amber Ale', N'12.0', N'0.054', N'24.0', 5, 156) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (518, N'Caldera IPA', N'12.0', N'0.061', N'94.0', 16, 156) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (519, N'Remain in Light', N'12.0', N'0.05', N'N/A', 21, 179) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (520, N'Flower Child (2014)', N'12.0', N'0.065', N'N/A', 16, 179) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (521, N'THP White (2006)', N'12.0', N'0', N'N/A', 100, 498) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (522, N'THP Amber (2006)', N'12.0', N'0', N'N/A', 5, 498) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (523, N'THP Light (2006)', N'12.0', N'0', N'N/A', 9, 498) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (524, N'THP Dark (2006)', N'12.0', N'0', N'N/A', 49, 498) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (525, N'Imperial Pumpkin Stout', N'16.0', N'0.099', N'43.0', 83, 231) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (526, N'Dead-Eye DIPA', N'16.0', N'0.09', N'130.0', 12, 231) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (527, N'Fisherman''s IPA', N'12.0', N'0.055', N'64.0', 16, 231) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (528, N'Fisherman''s Pils', N'12.0', N'0.054', N'35.0', 62, 231) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (529, N'Fisherman''s Brew', N'12.0', N'0.055', N'30.0', 5, 231) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (530, N'Cape Cod Red', N'16.0', N'0.055', N'35.0', 5, 268) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (531, N'Beach Blonde', N'16.0', N'0.049', N'10.0', 9, 68) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (532, N'Dark Voyage Black IPA (2013)', N'12.0', N'0.065', N'80.0', 8, 193) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (533, N'Wisconsin Amber', N'12.0', N'0.052', N'28.0', 97, 193) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (534, N'Lake House', N'12.0', N'0.046', N'18.0', 79, 193) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (535, N'Ghost Ship White IPA', N'12.0', N'0.056', N'55.0', 16, 193) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (536, N'Lake House', N'16.0', N'0.046', N'18.0', 79, 193) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (537, N'Mutiny IPA', N'12.0', N'0.062', N'70.0', 16, 193) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (538, N'Wisconsin Amber (1998)', N'12.0', N'0.052', N'N/A', 97, 193) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (539, N'Island Wheat', N'12.0', N'0.042', N'N/A', 20, 193) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (540, N'Wisconsin Amber (2013)', N'12.0', N'0.052', N'N/A', 97, 193) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (541, N'U.S. Pale Ale', N'12.0', N'0.05', N'N/A', 18, 193) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (542, N'Supper Club Lager', N'12.0', N'0', N'N/A', 19, 193) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (543, N'Carolina Lighthouse (2007)', N'12.0', N'0.04', N'N/A', 9, 505) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (544, N'Carolina Blonde (2006)', N'12.0', N'0.05', N'N/A', 9, 505) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (545, N'Carolina Blonde Light (2005)', N'12.0', N'0.035', N'N/A', 9, 505) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (546, N'Santa''s Secret', N'16.0', N'0.059', N'22.0', 99, 180) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (547, N'Flagship IPA', N'12.0', N'0.057', N'N/A', 50, 180) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (548, N'Sky Blue Golden Ale', N'12.0', N'0.051', N'N/A', 70, 180) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (549, N'Epitome', N'16.0', N'0.099', N'100.0', 8, 223) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (550, N'Monkey Chased the Weasel', N'16.0', N'0.039', N'9.0', 33, 223) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (551, N'077XX', N'16.0', N'0.078', N'80.0', 12, 223) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (552, N'Boat Beer', N'12.0', N'0.042', N'35.0', 16, 223) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (553, N'Granny Smith Hard Apple Cider', N'16.0', N'0.069', N'N/A', 39, 405) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (554, N'Dry Hard Apple Cider', N'16.0', N'0.069', N'N/A', 39, 405) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (555, N'Farmer Ted''s Cream Ale', N'12.0', N'0.056', N'N/A', 40, 332) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (556, N'Firewater India Pale Ale', N'12.0', N'0.052', N'N/A', 16, 332) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (557, N'White Zombie Ale', N'12.0', N'0.047', N'N/A', 100, 332) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (558, N'King Winterbolt Winter Ale', N'12.0', N'0.07', N'N/A', 99, 332) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (559, N'White Zombie Ale', N'12.0', N'0.047', N'N/A', 100, 332) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (560, N'Firewater India Pale Ale', N'12.0', N'0.052', N'N/A', 16, 332) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (561, N'Farmer Ted''s Farmhouse Cream Ale', N'12.0', N'0.056', N'N/A', 40, 332) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (562, N'Whitecap Wit', N'16.0', N'0.048', N'16.0', 100, 286) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (563, N'Seiche Scottish Ale', N'16.0', N'0.078', N'16.0', 93, 286) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (564, N'Peanut Butter Jelly Time', N'12.0', N'0.058', N'N/A', 10, 97) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (565, N'King Coconut', N'12.0', N'0.054', N'N/A', 22, 97) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (566, N'Gone A-Rye', N'16.0', N'0.085', N'90.0', 12, 30) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (567, N'Special Release', N'16.0', N'0', N'N/A', 1, 30) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (568, N'Dankosaurus', N'16.0', N'0.068', N'70.0', 16, 30) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (569, N'Scruffy''s Smoked Alt', N'16.0', N'0.051', N'35.0', 95, 30) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (570, N'Elliott''s Phoned Home Pale Ale', N'16.0', N'0.051', N'36.0', 18, 30) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (571, N'The Lawn Ranger', N'16.0', N'0.05', N'18.0', 40, 30) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (572, N'All American Blonde Ale', N'12.0', N'0.05', N'N/A', 9, 453) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (573, N'All American Red Ale', N'12.0', N'0.05', N'N/A', 5, 453) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (574, N'Main St. Virginia Ale', N'12.0', N'0.05', N'40.0', 3, 123) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (575, N'Chin Music Amber Lager', N'12.0', N'0.045', N'24.0', 6, 123) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (576, N'Main St. Virginia Ale', N'12.0', N'0.05', N'40.0', 3, 123) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (577, N'Ray Ray’s Pale Ale', N'12.0', N'0.052', N'42.0', 18, 123) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (578, N'Chai Ale', N'16.0', N'0.051', N'15.0', 66, 351) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (579, N'Lucky Day IPA', N'16.0', N'0.072', N'85.0', 16, 351) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (580, N'Terrace Hill Double IPA', N'16.0', N'0.095', N'99.0', 12, 351) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (581, N'Catch 23', N'16.0', N'0.075', N'77.0', 8, 351) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (582, N'Stickin'' In My Rye', N'24.0', N'0.07', N'N/A', 89, 237) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (583, N'Black Me Stout', N'12.0', N'0.06', N'45.0', 23, 237) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (584, N'Killer Kolsch', N'12.0', N'0.05', N'22.0', 70, 237) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (585, N'Missile IPA', N'12.0', N'0.07', N'65.0', 16, 237) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (586, N'Enlighten', N'16.0', N'0.045', N'N/A', 70, 251) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (587, N'Ale Cider', N'16.0', N'0.065', N'8.0', 61, 251) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (588, N'Pail Ale', N'16.0', N'0.055', N'30.0', 18, 251) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (589, N'Englishman', N'16.0', N'0.045', N'N/A', 48, 251) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (590, N'8 Barrel', N'16.0', N'0.08', N'69.0', 24, 227) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (591, N'Oktoberfest', N'16.0', N'0.055', N'40.0', 75, 227) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (592, N'IPA #11', N'16.0', N'0.057', N'58.0', 16, 122) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (593, N'Blood Orange Honey', N'16.0', N'0.057', N'10.0', 61, 122) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (594, N'Lighthouse Amber', N'16.0', N'0.052', N'N/A', 3, 122) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (595, N'Bay of Bengal Double IPA (2014)', N'12.0', N'0.089', N'126.0', 12, 100) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (596, N'Churchkey Pilsner Style Beer', N'12.0', N'0.049', N'29.0', 21, 527) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (597, N'First Press', N'12.0', N'0.05', N'N/A', 39, 426) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (598, N'Magic Apple', N'12.0', N'0.05', N'N/A', 39, 426) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (599, N'Cubano Espresso', N'12.0', N'0.055', N'25.0', 35, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (600, N'Operation Homefront', N'12.0', N'0.062', N'65.0', 16, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (601, N'Wandering Pelican', N'12.0', N'0.082', N'65.0', 8, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (602, N'Sugar Plum', N'12.0', N'0.055', N'N/A', 10, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (603, N'Oktoberfest', N'12.0', N'0.055', N'N/A', 75, 227) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (604, N'Puppy''s Breath Porter', N'12.0', N'0.06', N'N/A', 22, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (605, N'Happening Now', N'12.0', N'0.045', N'N/A', 16, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (606, N'Hopped on the High Seas (Hop #529)', N'12.0', N'0.07', N'60.0', 16, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (607, N'Hopped on the High Seas (Calypso)', N'12.0', N'0.07', N'60.0', 16, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (608, N'Wiregrass Post-Prohibition Ale', N'12.0', N'0.063', N'N/A', 18, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (609, N'Dry-Hopped On The High Seas Caribbean-Style IPA', N'12.0', N'0.07', N'60.0', 16, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (610, N'Hopped on the High Seas (Citra)', N'12.0', N'0.07', N'60.0', 16, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (611, N'Hopped on the High Seas (Ahtanum)', N'12.0', N'0.07', N'60.0', 16, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (612, N'Gwar Beer', N'12.0', N'0.055', N'N/A', 18, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (613, N'Tropical Heatwave', N'16.0', N'0.052', N'N/A', 20, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (614, N'Humidor Series India Pale Ale', N'12.0', N'0.075', N'70.0', 16, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (615, N'Jai Alai IPA Aged on White Oak', N'12.0', N'0.075', N'70.0', 16, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (616, N'José Martí American Porter', N'12.0', N'0.08', N'65.0', 22, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (617, N'Invasion Pale Ale', N'12.0', N'0.05', N'N/A', 18, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (618, N'Maduro Brown Ale', N'12.0', N'0.055', N'25.0', 48, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (619, N'Maduro Brown Ale', N'12.0', N'0.055', N'25.0', 10, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (620, N'Hotter Than Helles Lager', N'12.0', N'0.05', N'N/A', 79, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (621, N'Tocobaga Red Ale', N'12.0', N'0.072', N'75.0', 5, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (622, N'Jai Alai IPA', N'12.0', N'0.075', N'70.0', 16, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (623, N'Florida Cracker Belgian Wit', N'12.0', N'0.05', N'18.0', 100, 142) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (624, N'Shark Tracker Light lager', N'12.0', N'0.048', N'N/A', 72, 146) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (625, N'Pumple Drumkin', N'12.0', N'0.06', N'N/A', 83, 146) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (626, N'Grey Lady', N'12.0', N'0.045', N'N/A', 100, 146) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (627, N'Summer of Lager', N'12.0', N'0.062', N'N/A', 79, 146) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (628, N'Indie Pale Ale', N'12.0', N'0.065', N'N/A', 16, 146) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (629, N'Sankaty Light Lager', N'12.0', N'0.038', N'N/A', 72, 146) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (630, N'Whale''s Tale Pale Ale', N'12.0', N'0.056', N'N/A', 51, 146) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (631, N'Jacaranada Rye IPA', N'16.0', N'0.067', N'60.0', 16, 321) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (632, N'Cascadian Dark Ale', N'12.0', N'0.06', N'75.0', 8, 419) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (633, N'Wheat the People', N'16.0', N'0.044', N'13.0', 20, 419) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (634, N'Tybee Island Blonde', N'12.0', N'0.047', N'17.0', 9, 416) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (635, N'Savannah Brown Ale', N'12.0', N'0.062', N'55.0', 10, 416) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (636, N'Rhode Island Blueberry', N'12.0', N'0.046', N'11.0', 70, 102) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (637, N'Newport Storm IPA', N'12.0', N'0.065', N'75.0', 16, 102) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (638, N'Hurricane Amber Ale (2004)', N'12.0', N'0.052', N'24.0', 5, 102) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (639, N'Hurricane Amber Ale', N'12.0', N'0.052', N'24.0', 5, 102) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (640, N'Big Blue Van', N'16.0', N'0.058', N'N/A', 61, 233) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (641, N'Des Moines IPA', N'16.0', N'0.068', N'75.0', 16, 483) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (642, N'Capital Gold Golden Lager', N'16.0', N'0.048', N'22.0', 62, 483) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (643, N'Farmer John''s Multi-Grain Ale', N'16.0', N'0.056', N'21.0', 9, 483) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (644, N'Behemoth', N'12.0', N'0.05', N'N/A', 21, 140) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (645, N'Arkansas Red', N'12.0', N'0.052', N'N/A', 5, 140) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (646, N'Core Oatmeal Stout', N'12.0', N'0.057', N'N/A', 80, 140) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (647, N'Core ESB', N'12.0', N'0.061', N'N/A', 57, 140) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (648, N'Chester''s Beer (2005)', N'12.0', N'0.038', N'N/A', 19, 513) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (649, N'Heiner Brau Kölsch', N'12.0', N'0.05', N'N/A', 70, 554) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (650, N'Trigger Blonde Ale', N'16.0', N'0.048', N'N/A', 9, 516) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (651, N'Crabtree Oatmeal Stout', N'16.0', N'0.075', N'29.0', 80, 516) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (652, N'Eclipse Black IPA', N'16.0', N'0.077', N'71.0', 8, 516) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (653, N'Neomexicanus Native', N'12.0', N'0.06', N'46.0', 18, 64) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (654, N'Old Soul', N'12.0', N'0.075', N'25.0', 32, 64) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (655, N'Snowcat Coffee Stout', N'12.0', N'0.059', N'N/A', 23, 64) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (656, N'WinterWonderGrass Festival Ale', N'12.0', N'0', N'N/A', 5, 64) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (657, N'Boohai Red Ale', N'12.0', N'0', N'N/A', 5, 64) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (658, N'Lava Lake Wit', N'12.0', N'0.052', N'15.0', 100, 64) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (659, N'Mountain Livin'' Pale Ale', N'12.0', N'0.06', N'N/A', 18, 64) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (660, N'Crazy Mountain Amber Ale', N'12.0', N'0.052', N'25.0', 5, 64) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (661, N'Tropicalia', N'12.0', N'0.065', N'65.0', 16, 248) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (662, N'Athena', N'12.0', N'0.045', N'N/A', 33, 248) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (663, N'Aviator Raspberry Blonde', N'12.0', N'0.049', N'25.0', 9, 170) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (664, N'3 Picket Porter', N'12.0', N'0.055', N'N/A', 22, 170) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (665, N'Rusty Nail Pale Ale', N'12.0', N'0.056', N'N/A', 18, 170) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (666, N'Red Water Irish Style Red', N'12.0', N'0.065', N'N/A', 5, 213) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (667, N'Mjöllnir', N'12.0', N'0.066', N'N/A', 66, 213) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (668, N'Bear Butte Nut Brown Ale', N'12.0', N'0.055', N'N/A', 10, 213) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (669, N'Easy Livin'' Summer Ale', N'12.0', N'0.045', N'N/A', 9, 213) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (670, N'Canyon Cream Ale', N'12.0', N'0.055', N'N/A', 40, 213) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (671, N'Pile O''Dirt Porter', N'12.0', N'0.069', N'N/A', 22, 213) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (672, N'11th Hour IPA', N'12.0', N'0.06', N'N/A', 16, 213) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (673, N'South Ridge Amber Ale', N'16.0', N'0.06', N'31.0', 5, 473) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (674, N'Summertime Ale', N'16.0', N'0.052', N'23.0', 70, 473) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (675, N'Lost River Blonde Ale', N'16.0', N'0.049', N'N/A', 9, 316) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (676, N'Monon Wheat', N'16.0', N'0.054', N'N/A', 100, 316) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (677, N'Floyd''s Folly', N'16.0', N'0.08', N'N/A', 93, 316) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (678, N'Half Court IPA', N'16.0', N'0.063', N'N/A', 16, 316) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (679, N'Geary''s Pale Ale', N'12.0', N'0.045', N'N/A', 51, 324) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (680, N'Geary''s Summer Ale', N'12.0', N'0.06', N'N/A', 70, 324) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (681, N'Stone of Arbroath', N'12.0', N'0.08', N'N/A', 92, 228) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (682, N'The Tradition', N'12.0', N'0.05', N'15.0', 9, 228) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (683, N'El Hefe Speaks', N'12.0', N'0.053', N'11.0', 65, 228) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (684, N'Penn Quarter Porter', N'12.0', N'0.055', N'N/A', 22, 228) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (685, N'On the Wings of Armageddon', N'12.0', N'0.092', N'115.0', 12, 228) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (686, N'The Corruption', N'12.0', N'0.065', N'80.0', 16, 228) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (687, N'The Citizen', N'12.0', N'0.07', N'N/A', 30, 228) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (688, N'The Public', N'12.0', N'0.06', N'N/A', 18, 228) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (689, N'Dank IPA', N'16.0', N'0.065', N'N/A', 16, 452) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (690, N'Dank IPA (2012)', N'16.0', N'0.065', N'N/A', 16, 452) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (691, N'Lift Off IPA', N'16.0', N'0.072', N'N/A', 16, 359) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (692, N'BrewFarm Select Golden Lager', N'12.0', N'0.055', N'N/A', 19, 555) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (693, N'Sprocket Blonde Ale (2006)', N'12.0', N'0.05', N'N/A', 9, 334) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (694, N'Sprocket Pale Ale (2006)', N'12.0', N'0.05', N'N/A', 18, 334) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (695, N'Dead Armadillo Amber Ale', N'12.0', N'0.063', N'37.0', 5, 331) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (696, N'Neato Bandito', N'12.0', N'0.06', N'N/A', 56, 128) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (697, N'Oak Cliff Coffee Ale', N'12.0', N'0.075', N'33.0', 10, 128) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (698, N'Dream Crusher Double IPA', N'12.0', N'0.085', N'100.0', 12, 128) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (699, N'Deep Ellum Pale Ale', N'12.0', N'0.06', N'N/A', 18, 128) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (700, N'Double Brown Stout', N'12.0', N'0.07', N'N/A', 27, 128) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (701, N'Farmhouse Wit', N'16.0', N'0.048', N'25.0', 90, 128) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (702, N'Rye Pils Session Lager', N'12.0', N'0.046', N'N/A', 62, 128) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (703, N'Dallas Blonde', N'12.0', N'0.052', N'23.0', 9, 128) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (704, N'Deep Ellum IPA', N'12.0', N'0.07', N'70.0', 16, 128) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (705, N'Thrasher Session India Pale Ale', N'12.0', N'0.045', N'44.0', 16, 284) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (706, N'Gutch English Style Mild Ale', N'12.0', N'0.05', N'16.0', 52, 284) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (707, N'Chuli Stout', N'12.0', N'0.059', N'55.0', 67, 454) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (708, N'Mother Ale', N'12.0', N'0.056', N'46.0', 9, 454) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (709, N'Twister Creek India Pale Ale', N'12.0', N'0.065', N'71.0', 16, 454) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (710, N'Single Engine Red', N'12.0', N'0.058', N'46.0', 68, 454) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (711, N'Incredible Pedal IPA', N'12.0', N'0.07', N'N/A', 16, 264) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (712, N'Graham Cracker Porter', N'12.0', N'0.05', N'N/A', 22, 264) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (713, N'Mirror Pond Pale Ale', N'12.0', N'0.05', N'40.0', 18, 455) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (714, N'Weissenheimer', N'12.0', N'0.052', N'16.0', 65, 58) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (715, N'Abbey''s Single (2015- )', N'12.0', N'0.049', N'22.0', 2, 58) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (716, N'Vertex IPA', N'12.0', N'0.063', N'76.0', 16, 58) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (717, N'Here Gose Nothin''', N'12.0', N'0.05', N'12.0', 63, 58) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (718, N'Strawberry Blonde', N'12.0', N'0.05', N'N/A', 61, 58) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (719, N'Hoperation Overload', N'12.0', N'0.096', N'85.0', 12, 58) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (720, N'Abbey''s Single Ale (Current)', N'12.0', N'0.049', N'22.0', 2, 58) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (721, N'Bravo Four Point', N'12.0', N'0.044', N'45.0', 18, 238) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (722, N'Striped Bass Pale Ale', N'12.0', N'0.052', N'26.0', 18, 238) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (723, N'Deadicated Amber', N'16.0', N'0.054', N'27.0', 5, 492) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (724, N'Kaleidoscope Collaboration 2012', N'16.0', N'0', N'N/A', 8, 492) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (725, N'California Sunshine Rye IPA', N'16.0', N'0.071', N'85.0', 16, 492) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (726, N'Full Boar Scotch Ale', N'16.0', N'0.074', N'12.0', 92, 492) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (727, N'12 Man Pale Ale', N'12.0', N'0.045', N'N/A', 18, 320) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (728, N'Filthy Hoppin'' IPA', N'16.0', N'0.065', N'72.0', 16, 312) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (729, N'Dock Street Amber Beer (1992)', N'12.0', N'0', N'N/A', 5, 489) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (730, N'Dolores River Hefeweizen', N'16.0', N'0', N'N/A', 65, 532) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (731, N'Dolores River ESB', N'16.0', N'0', N'N/A', 57, 532) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (732, N'Snaggletooth Double Pale Ale', N'16.0', N'0', N'N/A', 12, 532) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (733, N'Dolores River Pale Ale', N'16.0', N'0', N'N/A', 18, 532) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (734, N'Dolores River Dry Stout', N'16.0', N'0', N'N/A', 67, 532) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (735, N'Dolores River Mild', N'16.0', N'0', N'N/A', 49, 532) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (736, N'Cranberry Blend', N'12.0', N'0.049', N'N/A', 39, 447) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (737, N'Orignal Blend', N'12.0', N'0.051', N'N/A', 39, 447) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (738, N'Hop Abomination', N'12.0', N'0.066', N'100.0', 16, 497) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (739, N'Apricot Blonde', N'12.0', N'0.051', N'17.0', 61, 497) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (740, N'Dry Dock Hefeweizen', N'12.0', N'0.043', N'12.0', 65, 497) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (741, N'Dry Dock Amber Ale', N'12.0', N'0.058', N'49.0', 5, 497) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (742, N'Category 3 IPA', N'12.0', N'0.061', N'64.0', 16, 341) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (743, N'Dundee Summer Wheat Beer', N'12.0', N'0.045', N'18.0', 20, 539) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (744, N'Pumpkin Patch Ale', N'16.0', N'0.05', N'N/A', 83, 370) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (745, N'Crank Yanker IPA', N'16.0', N'0.078', N'74.0', 16, 370) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (746, N'River Runners Pale Ale', N'16.0', N'0.06', N'N/A', 18, 370) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (747, N'Pumpkin Patch Ale (2012)', N'16.0', N'0.05', N'N/A', 83, 370) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (748, N'Mountain Fairy Raspberry Wheat', N'16.0', N'0.055', N'N/A', 61, 370) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (749, N'Boater Beer', N'16.0', N'0.045', N'N/A', 62, 370) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (750, N'Crank Yanker IPA (2011)', N'16.0', N'0.078', N'74.0', 16, 370) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (751, N'Bleeding Buckeye Red Ale', N'16.0', N'0.057', N'N/A', 57, 353) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (752, N'Dottie Seattle Lager', N'16.0', N'0.049', N'25.0', 6, 517) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (753, N'Nut Sack Imperial Brown Ale', N'12.0', N'0.07', N'N/A', 10, 466) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (754, N'Underachiever', N'16.0', N'0.05', N'N/A', 4, 474) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (755, N'Lil'' Brainless Raspberries', N'12.0', N'0.052', N'N/A', 61, 82) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (756, N'Element 29', N'12.0', N'0.052', N'N/A', 18, 82) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (757, N'Hop Syndrome', N'12.0', N'0.05', N'N/A', 19, 82) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (758, N'Escape to Colorado', N'12.0', N'0.062', N'N/A', 16, 82) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (759, N'Little Sister India Style Session Ale', N'12.0', N'0.043', N'60.0', 16, 171) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (760, N'Country Boy IPA', N'12.0', N'0.062', N'80.0', 16, 171) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (761, N'Blonde Czich', N'16.0', N'0.049', N'23.0', 9, 27) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (762, N'White Reaper', N'16.0', N'0.07', N'61.0', 29, 27) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (763, N'Bobblehead', N'16.0', N'0.051', N'N/A', 20, 27) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (764, N'Lucky Dog', N'16.0', N'0.052', N'N/A', 18, 27) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (765, N'Voodoo', N'16.0', N'0.048', N'N/A', 22, 27) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (766, N'General George Patton Pilsner', N'16.0', N'0.054', N'48.0', 41, 27) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (767, N'Nomader Weiss', N'12.0', N'0.04', N'N/A', 33, 174) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (768, N'Molotov Lite', N'16.0', N'0.085', N'N/A', 12, 174) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (769, N'Hipster Ale (Two Roads Brewing)', N'12.0', N'0.055', N'N/A', 18, 174) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (770, N'Bikini Beer', N'12.0', N'0.027', N'N/A', 16, 174) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (771, N'Hipster Ale (Westbrook Brewing)', N'12.0', N'0.055', N'N/A', 18, 174) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (772, N'Iron Horse Pale Ale', N'12.0', N'0.05', N'32.0', 18, 336) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (773, N'Stone''s Throw IPA', N'12.0', N'0.045', N'19.0', 93, 336) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (774, N'Wood Chipper India Pale Ale', N'12.0', N'0.067', N'70.0', 16, 336) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (775, N'Trail Head', N'12.0', N'0.063', N'55.0', 18, 225) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (776, N'Hop Stalker Fresh Hop IPA', N'16.0', N'0.07', N'80.0', 16, 225) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (777, N'Sudice American Stout', N'16.0', N'0.07', N'58.0', 23, 406) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (778, N'Parcae Belgian Style Pale Ale', N'16.0', N'0.05', N'20.0', 30, 406) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (779, N'Norns Roggenbier', N'16.0', N'0.05', N'20.0', 87, 406) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (780, N'Laimas Kölsch Style Ale', N'16.0', N'0.05', N'20.0', 70, 406) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (781, N'Moirai India Pale Ale', N'16.0', N'0.07', N'70.0', 16, 406) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (782, N'Loki Red Ale', N'16.0', N'0.075', N'53.0', 5, 202) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (783, N'Peaches & Cream', N'16.0', N'0.046', N'N/A', 61, 202) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (784, N'Quaff India Style Session Ale', N'16.0', N'0.051', N'N/A', 16, 202) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (785, N'Loki Red Ale (2013)', N'16.0', N'0.075', N'53.0', 5, 202) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (786, N'Mjolnir Imperial IPA', N'16.0', N'0.069', N'N/A', 12, 202) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (787, N'Fearless Scottish Ale', N'16.0', N'0.05', N'N/A', 93, 202) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (788, N'Mastermind', N'12.0', N'0.081', N'N/A', 12, 173) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (789, N'Hyzer Flip', N'16.0', N'0.082', N'N/A', 12, 173) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (790, N'Second Fiddle', N'16.0', N'0.082', N'80.0', 12, 173) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (791, N'Hodad Porter', N'16.0', N'0.055', N'30.0', 22, 173) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (792, N'Weiss Weiss Baby', N'12.0', N'0.045', N'N/A', 71, 37) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (793, N'Czech Yo Self', N'12.0', N'0.055', N'45.0', 41, 37) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (794, N'FMB 101', N'12.0', N'0.048', N'20.0', 70, 37) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (795, N'Hardcore Chimera', N'16.0', N'0.09', N'N/A', 12, 257) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (796, N'Sobek & Set', N'16.0', N'0.08', N'80.0', 8, 257) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (797, N'Nuclear Winter', N'16.0', N'0.086', N'N/A', 31, 257) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (798, N'Wet Hot American Wheat Ale', N'16.0', N'0.05', N'22.0', 20, 257) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (799, N'Secret Stache Stout', N'16.0', N'0.053', N'N/A', 23, 257) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (800, N'Fascist Pig Ale', N'16.0', N'0.08', N'72.0', 5, 257) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (801, N'Cut Throat Pale Ale', N'16.0', N'0.055', N'N/A', 18, 257) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (802, N'Threadless IPA', N'16.0', N'0.075', N'N/A', 16, 257) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (803, N'Cut Throat Pale Ale (2011)', N'16.0', N'0.055', N'N/A', 18, 257) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (804, N'Golden Wing Blonde Ale', N'16.0', N'0.047', N'N/A', 9, 257) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (805, N'Easy Jack', N'12.0', N'0.045', N'47.0', 16, 49) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (806, N'Union Jack', N'12.0', N'0.075', N'75.0', 16, 49) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (807, N'Pivo Pils', N'12.0', N'0.053', N'N/A', 62, 49) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (808, N'805 Blonde Ale', N'12.0', N'0.047', N'N/A', 9, 49) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (809, N'805', N'12.0', N'0.047', N'20.0', 9, 49) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (810, N'Deflator', N'16.0', N'0.065', N'N/A', 42, 17) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (811, N'Hinchtown Hammer Down', N'16.0', N'0.05', N'27.0', 9, 17) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (812, N'Half Cycle IPA', N'16.0', N'0.06', N'104.0', 16, 17) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (813, N'Inclined Plane Ale', N'12.0', N'0', N'N/A', 16, 533) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (814, N'Moped Traveler', N'16.0', N'0.055', N'N/A', 18, 55) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (815, N'Snake Dog IPA', N'12.0', N'0.071', N'60.0', 16, 522) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (816, N'Underdog Atlantic Lager', N'12.0', N'0.047', N'28.0', 19, 522) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (817, N'Flying Mouse 8', N'12.0', N'0.04', N'N/A', 22, 51) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (818, N'Flying Mouse 4', N'12.0', N'0.07', N'70.0', 16, 51) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (819, N'La Ferme Urbaine Farmhouse Ale', N'12.0', N'0.078', N'N/A', 90, 280) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (820, N'Backyahd IPA', N'12.0', N'0.06', N'N/A', 16, 280) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (821, N'Raincloud Robust Porter', N'12.0', N'0.065', N'N/A', 22, 280) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (822, N'Barstool American Golden Ale', N'12.0', N'0.045', N'N/A', 9, 280) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (823, N'What the Butler Saw', N'12.0', N'0.05', N'18.0', 100, 218) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (824, N'1916 Shore Shiver', N'12.0', N'0.069', N'65.0', 16, 218) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (825, N'Quick WIT', N'12.0', N'0.052', N'N/A', 30, 207) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (826, N'The Optimist', N'12.0', N'0.062', N'N/A', 16, 207) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (827, N'Suicide Squeeze IPA', N'16.0', N'0.045', N'N/A', 16, 207) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (828, N'Java the Hop', N'16.0', N'0.065', N'N/A', 16, 207) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (829, N'Next Adventure Black IPA', N'16.0', N'0.062', N'N/A', 8, 207) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (830, N'3-Way IPA (2013)', N'16.0', N'0.067', N'N/A', 16, 207) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (831, N'Tender Loving Empire NWPA', N'16.0', N'0.058', N'N/A', 18, 207) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (832, N'Quick Wit Belgianesque Ale', N'16.0', N'0.052', N'N/A', 100, 207) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (833, N'Sunrise Oatmeal Pale Ale', N'16.0', N'0.055', N'N/A', 18, 207) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (834, N'Cavatica Stout', N'16.0', N'0.088', N'N/A', 14, 207) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (835, N'1811 Lager', N'16.0', N'0.051', N'N/A', 6, 207) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (836, N'Vortex IPA', N'16.0', N'0.074', N'97.0', 16, 207) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (837, N'Fort Pitt Ale', N'12.0', N'0', N'N/A', 5, 152) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (838, N'Park', N'12.0', N'0.047', N'19.0', 20, 5) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (839, N'Westfalia', N'12.0', N'0.056', N'16.0', 5, 5) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (840, N'KSA', N'12.0', N'0.046', N'17.0', 70, 5) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (841, N'Villager', N'12.0', N'0.063', N'42.0', 16, 5) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (842, N'Dirty Bastard', N'12.0', N'0.085', N'50.0', 92, 16) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (843, N'Centennial IPA', N'12.0', N'0.072', N'65.0', 16, 16) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (844, N'All Day IPA', N'12.0', N'0.047', N'42.0', 16, 16) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (845, N'El Chingon IPA', N'12.0', N'0.076', N'73.0', 16, 288) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (846, N'Block Party Robust Porter', N'12.0', N'0.057', N'40.0', 22, 288) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (847, N'Local Buzz', N'12.0', N'0.052', N'20.0', 9, 288) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (848, N'Feel Like Maplin'' Love', N'16.0', N'0.055', N'N/A', 80, 23) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (849, N'Father''s Beer', N'16.0', N'0.05', N'N/A', 30, 23) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (850, N'The 26th', N'16.0', N'0.06', N'N/A', 16, 23) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (851, N'The Gadget', N'16.0', N'0.064', N'90.0', 16, 23) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (852, N'Leprechaun Lager', N'12.0', N'0.04', N'N/A', 19, 349) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (853, N'Sunbru Kölsch', N'12.0', N'0.052', N'17.0', 70, 161) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (854, N'Kilt Lifter Scottish-Style Ale', N'12.0', N'0.06', N'21.0', 1, 161) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (855, N'Pumpkin Porter', N'12.0', N'0.051', N'N/A', 22, 161) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (856, N'Four Peaks Peach Ale', N'12.0', N'0.042', N'9.0', 61, 161) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (857, N'Hop Knot IPA', N'12.0', N'0.067', N'47.0', 16, 161) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (858, N'Kilt Lifter Scottish-Style Ale (2009)', N'12.0', N'0.06', N'21.0', 93, 161) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (859, N'Sunbru Kölsch', N'12.0', N'0.052', N'N/A', 70, 161) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (860, N'Four String Vanilla Porter', N'12.0', N'0.06', N'N/A', 22, 106) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (861, N'Suncaster Summer Wheat', N'12.0', N'0.05', N'28.0', 20, 106) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (862, N'Brass Knuckle Pale Ale', N'12.0', N'0.057', N'36.0', 18, 106) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (863, N'Big Star White IPA', N'12.0', N'0.07', N'70.0', 25, 106) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (864, N'Old Detroit', N'12.0', N'0.056', N'N/A', 5, 254) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (865, N'Batch 69 IPA', N'12.0', N'0.069', N'69.0', 16, 254) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (866, N'Twisted Helles Summer Lager', N'12.0', N'0.055', N'18.0', 79, 254) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (867, N'OktoberFiesta', N'12.0', N'0.053', N'27.0', 1, 67) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (868, N'Texicali ', N'12.0', N'0.065', N'33.0', 10, 67) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (869, N'Pinata Protest', N'12.0', N'0.06', N'N/A', 100, 67) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (870, N'Bat Outta Helles', N'12.0', N'0.042', N'20.0', 79, 67) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (871, N'Original', N'12.0', N'0.068', N'N/A', 5, 67) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (872, N'Rye Wit', N'12.0', N'0.042', N'10.0', 100, 67) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (873, N'Soul Doubt', N'12.0', N'0.059', N'70.0', 16, 67) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (874, N'Yo Soy Un Berliner', N'12.0', N'0.044', N'5.0', 33, 67) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (875, N'77 Fremont Select Spring Session IPA', N'12.0', N'0.04', N'N/A', 16, 461) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (876, N'Fremont Organic Pale Ale', N'12.0', N'0.045', N'N/A', 18, 461) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (877, N'Abominable Ale', N'12.0', N'0.08', N'N/A', 54, 461) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (878, N'Harvest Ale', N'12.0', N'0.065', N'35.0', 90, 461) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (879, N'Fremont Summer Ale', N'12.0', N'0.065', N'45.0', 18, 461) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (880, N'Universale Pale Ale', N'12.0', N'0.056', N'30.0', 18, 461) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (881, N'Interurban IPA', N'12.0', N'0.065', N'80.0', 16, 461) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (882, N'Gateway Kolsch Style Ale', N'12.0', N'0.053', N'32.0', 70, 434) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (883, N'Wee-Heavy-Er Scotch Ale', N'12.0', N'0.07', N'24.0', 92, 434) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (884, N'13 Rebels ESB', N'12.0', N'0.052', N'42.0', 57, 434) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (885, N'Salamander Slam', N'16.0', N'0.07', N'73.0', 16, 181) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (886, N'Cack-A-Lacky', N'12.0', N'0.05', N'N/A', 18, 348) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (887, N'No Wake IPA', N'12.0', N'0.072', N'50.0', 16, 229) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (888, N'Boathouse Blonde', N'12.0', N'0.049', N'15.0', 9, 229) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (889, N'Cedar Point', N'12.0', N'0.05', N'26.0', 5, 229) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (890, N'Clean Shave IPA', N'12.0', N'0.067', N'70.0', 16, 107) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (891, N'Might As Well IPL', N'16.0', N'0.072', N'75.0', 19, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (892, N'Saison Pamplemousse', N'12.0', N'0.058', N'35.0', 90, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (893, N'2020 IPA', N'16.0', N'0.074', N'74.0', 16, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (894, N'Wolf Among Weeds IPA', N'16.0', N'0.08', N'70.0', 16, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (895, N'Better Weather IPA', N'16.0', N'0.094', N'92.0', 16, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (896, N'Point the Way IPA', N'16.0', N'0.059', N'60.0', 16, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (897, N'Golden Road Hefeweizen', N'16.0', N'0.046', N'15.0', 65, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (898, N'Heal the Bay IPA', N'16.0', N'0.068', N'65.0', 16, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (899, N'Point the Way IPA', N'12.0', N'0.059', N'60.0', 16, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (900, N'Cabrillo Kölsch', N'16.0', N'0.05', N'N/A', 70, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (901, N'Get Up Offa That Brown', N'16.0', N'0.055', N'20.0', 10, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (902, N'Burning Bush Smoked IPA', N'16.0', N'0.08', N'70.0', 16, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (903, N'Wolf Among Weeds IPA (2012)', N'16.0', N'0.08', N'70.0', 16, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (904, N'Point the Way IPA (2012)', N'16.0', N'0.059', N'60.0', 16, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (905, N'Golden Road Hefeweizen (2012)', N'16.0', N'0.046', N'15.0', 65, 241) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (906, N'Vanilla Porter', N'16.0', N'0.07', N'11.0', 22, 40) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (907, N'Descender IPA', N'12.0', N'0.07', N'70.0', 16, 465) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (908, N'Sweet As Pacific Ale', N'12.0', N'0.06', N'18.0', 20, 465) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (909, N'Good People Pale Ale', N'12.0', N'0.056', N'36.0', 18, 479) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (910, N'Snake Handler Double IPA', N'12.0', N'0.093', N'103.0', 12, 479) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (911, N'Coffee Oatmeal Stout', N'12.0', N'0.06', N'54.0', 80, 479) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (912, N'Good People IPA', N'12.0', N'0.06', N'64.0', 16, 479) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (913, N'Good People American Brown Ale', N'12.0', N'0.058', N'36.0', 10, 479) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (914, N'Mountain Rescue Pale Ale', N'12.0', N'0.055', N'40.0', 18, 195) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (915, N'Goose Island India Pale Ale', N'12.0', N'0.059', N'55.0', 16, 197) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (916, N'312 Urban Pale Ale', N'16.0', N'0.054', N'30.0', 18, 89) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (917, N'312 Urban Pale Ale', N'12.0', N'0.054', N'30.0', 18, 89) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (918, N'312 Urban Wheat Ale', N'16.0', N'0.042', N'18.0', 20, 89) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (919, N'312 Urban Wheat Ale', N'12.0', N'0.042', N'18.0', 20, 89) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (920, N'312 Urban Wheat Ale (2012)', N'12.0', N'0.042', N'20.0', 20, 89) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (921, N'Beaver Logger', N'12.0', N'0.052', N'19.0', 19, 421) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (922, N'White Water Wheat', N'12.0', N'0.05', N'N/A', 20, 537) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (923, N'Grand Canyon American Pilsner', N'12.0', N'0.052', N'N/A', 21, 537) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (924, N'Grand Canyon Sunset Amber Ale', N'12.0', N'0.054', N'N/A', 5, 537) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (925, N'Black Iron India Pale Ale', N'12.0', N'0', N'N/A', 16, 537) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (926, N'Monarch Classic American Wheat', N'12.0', N'0.043', N'21.0', 20, 214) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (927, N'Sir William''s English Brown Ale', N'12.0', N'0.049', N'21.0', 48, 214) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (928, N'Lakefire Rye Pale Ale', N'12.0', N'0.055', N'35.0', 18, 214) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (929, N'Beer Agent Re-Ignition', N'16.0', N'0.053', N'22.0', 9, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (930, N'Cherry Ale', N'16.0', N'0.057', N'18.0', 61, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (931, N'Bourbon Barrel Aged Coconut Porter', N'16.0', N'0.056', N'33.0', 22, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (932, N'Great Crescent IPA', N'16.0', N'0.062', N'60.0', 16, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (933, N'Aurora Lager', N'16.0', N'0.057', N'27.0', 43, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (934, N'Great Crescent Blonde Ale', N'16.0', N'0.053', N'22.0', 9, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (935, N'Great Crescent Coconut Porter', N'16.0', N'0.056', N'33.0', 22, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (936, N'Great Crescent Oktoberfest Lager', N'16.0', N'0.057', N'25.0', 75, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (937, N'Great Crescent Brown Ale', N'16.0', N'0.045', N'36.0', 10, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (938, N'Cherry Ale (1)', N'16.0', N'0.057', N'18.0', 61, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (939, N'Aurora Lager (2011)', N'16.0', N'0.057', N'27.0', 43, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (940, N'Frosted Fields Winter Wheat', N'16.0', N'0.06', N'25.0', 11, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (941, N'Great Crescent Belgian Style Wit', N'16.0', N'0.051', N'13.0', 100, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (942, N'Bourbon''s Barrel Stout', N'16.0', N'0.075', N'65.0', 23, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (943, N'Great Crescent Stout', N'16.0', N'0.08', N'66.0', 53, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (944, N'Great Crescent Coconut Porter (2012)', N'16.0', N'0.056', N'33.0', 22, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (945, N'Great Crescent Dark Lager', N'16.0', N'0.057', N'23.0', 55, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (946, N'Great Crescent Mild Ale', N'16.0', N'0.042', N'26.0', 49, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (947, N'Great Crescent IPA (2011)', N'16.0', N'0.062', N'60.0', 16, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (948, N'Great Crescent Blonde Ale (2011)', N'16.0', N'0.053', N'22.0', 9, 166) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (949, N'Denver Pale Ale (Artist Series No. 1)', N'12.0', N'0.05', N'N/A', 18, 7) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (950, N'Hibernation Ale', N'12.0', N'0.087', N'N/A', 81, 7) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (951, N'Whitewater', N'12.0', N'0.061', N'N/A', 20, 7) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (952, N'Rumble', N'12.0', N'0.071', N'N/A', 16, 7) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (953, N'Orabelle', N'12.0', N'0.083', N'N/A', 96, 7) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (954, N'Lasso', N'12.0', N'0.05', N'N/A', 16, 7) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (955, N'Yeti Imperial Stout', N'12.0', N'0.095', N'75.0', 88, 7) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (956, N'Colette', N'12.0', N'0.073', N'N/A', 90, 7) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (957, N'Titan IPA', N'12.0', N'0.071', N'N/A', 16, 7) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (958, N'Black Star Double Hopped Golden Lager (24 oz.)', N'24.0', N'0.045', N'15.0', 19, 544) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (959, N'Black Star Double Hopped Golden Lager (12 oz.)', N'12.0', N'0.045', N'15.0', 19, 544) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (960, N'Commotion APA', N'12.0', N'0.052', N'49.0', 18, 270) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (961, N'Southern Drawl Pale Lager', N'12.0', N'0.052', N'N/A', 19, 270) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (962, N'Chickawawa Lemonale', N'12.0', N'0.05', N'5.0', 61, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (963, N'Barrel Aged Farmer', N'16.0', N'0.07', N'22.0', 10, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (964, N'Great River Golden Ale', N'12.0', N'0.048', N'N/A', 9, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (965, N'Dirty Blonde Chocolate Ale', N'12.0', N'0.048', N'N/A', 9, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (966, N'Dos Pistolas', N'12.0', N'0.048', N'20.0', 97, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (967, N'Owney Irish Style Red Ale', N'16.0', N'0.05', N'30.0', 68, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (968, N'Aaah Bock Lager', N'16.0', N'0.06', N'N/A', 97, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (969, N'Widespread Wit', N'16.0', N'0.055', N'10.0', 100, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (970, N'Roller Dam Red Ale', N'16.0', N'0.054', N'30.0', 68, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (971, N'483 Pale Ale', N'16.0', N'0.053', N'48.0', 18, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (972, N'Hop A Potamus Double Dark Rye Pale Ale', N'16.0', N'0.09', N'99.0', 89, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (973, N'Farmer Brown Ale', N'16.0', N'0.07', N'22.0', 10, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (974, N'Big Cock IPA', N'16.0', N'0.07', N'70.0', 16, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (975, N'Oktoberfest', N'16.0', N'0.059', N'25.0', 75, 227) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (976, N'40th Annual Bix Street Fest Copper Ale (Current)', N'16.0', N'0.048', N'25.0', 5, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (977, N'Redband Stout', N'16.0', N'0.06', N'36.0', 23, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (978, N'483 Pale Ale (2010)', N'16.0', N'0.053', N'48.0', 18, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (979, N'Roller Dam Red Ale (2010)', N'16.0', N'0.054', N'30.0', 68, 366) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (980, N'Pablo Beach Pale Ale', N'12.0', N'0.05', N'30.0', 18, 467) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (981, N'Wild Trail Pale Ale', N'12.0', N'0.057', N'44.0', 18, 157) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (982, N'Mothman Black IPA', N'12.0', N'0.067', N'71.0', 8, 157) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (983, N'Autumn Winds Fest Beer', N'16.0', N'0.058', N'N/A', 75, 87) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (984, N'Captain''s Daughter', N'12.0', N'0.085', N'69.0', 12, 87) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (985, N'Autumn Winds', N'16.0', N'0.058', N'N/A', 75, 380) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (986, N'Flying Jenny Extra Pale Ale', N'12.0', N'0.06', N'54.0', 18, 380) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (987, N'Hazy Day Belgian-Style Wit', N'16.0', N'0.04', N'20.0', 100, 380) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (988, N'Bring Back the Beach Blonde Ale', N'16.0', N'0.055', N'N/A', 9, 380) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (989, N'Leaning Chimney Smoked Porter', N'16.0', N'0.06', N'34.0', 22, 380) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (990, N'Flying Jenny Extra Pale Ale (2012)', N'12.0', N'0.06', N'54.0', 18, 380) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (991, N'Flagship Ale', N'12.0', N'0.049', N'22.0', 40, 380) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (992, N'Mr. Blue Sky', N'16.0', N'0.045', N'6.0', 20, 125) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (993, N'3 Scrooges', N'16.0', N'0.065', N'N/A', 99, 125) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (994, N'Screamin’ Pumpkin', N'16.0', N'0.05', N'25.0', 83, 125) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (995, N'Grand Trunk Bohemian Pils', N'16.0', N'0.05', N'35.0', 41, 125) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (996, N'El Rojo', N'16.0', N'0.065', N'25.0', 5, 125) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (997, N'Norm''s Raggedy Ass IPA', N'16.0', N'0.075', N'N/A', 16, 125) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (998, N'Grind Line', N'16.0', N'0.05', N'35.0', 18, 125) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (999, N'Norm''s Gateway IPA', N'12.0', N'0.04', N'55.0', 16, 125) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1000, N'Lemon Shandy Tripel', N'16.0', N'0.09', N'N/A', 96, 125) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1001, N'Little Red Cap', N'12.0', N'0.063', N'43.0', 3, 145) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1002, N'Supergoose IPA', N'12.0', N'0.069', N'67.0', 16, 291) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1003, N'Hale''s Pale American Ale', N'12.0', N'0.047', N'N/A', 18, 291) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1004, N'Heyoka IPA', N'16.0', N'0.07', N'N/A', 16, 328) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1005, N'Guest Lager', N'16.0', N'0.08', N'N/A', 13, 328) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1006, N'Pony Pilsner', N'16.0', N'0.057', N'N/A', 62, 328) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1007, N'Akari Shogun American Wheat Ale', N'16.0', N'0.055', N'N/A', 20, 328) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1008, N'Meat Wave', N'16.0', N'0.06', N'N/A', 50, 328) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1009, N'Over Ale', N'16.0', N'0.06', N'N/A', 10, 328) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1010, N'Gossamer Golden Ale', N'16.0', N'0.042', N'N/A', 9, 328) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1011, N'Daisy Cutter Pale Ale', N'16.0', N'0.052', N'N/A', 18, 328) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1012, N'Pursuit', N'12.0', N'0.07', N'40.0', 16, 249) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1013, N'Half Full Bright Ale', N'12.0', N'0.052', N'18.0', 9, 249) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1014, N'Orange Wheat', N'12.0', N'0.046', N'17.0', 61, 477) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1015, N'Hangar 24 Helles Lager', N'12.0', N'0.043', N'14.0', 79, 477) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1016, N'The Great Return', N'16.0', N'0.075', N'70.0', 16, 344) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1017, N'Hardywood Cream Ale', N'12.0', N'0.044', N'18.0', 40, 344) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1018, N'Capital Trail Pale Ale', N'12.0', N'0.056', N'55.0', 18, 344) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1019, N'UFO Gingerland', N'12.0', N'0.052', N'15.0', 66, 235) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1020, N'The Long Thaw White IPA', N'12.0', N'0.062', N'45.0', 25, 235) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1021, N'Honey Cider', N'12.0', N'0.048', N'N/A', 39, 235) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1022, N'Harpoon Summer Beer', N'12.0', N'0.05', N'28.0', 70, 235) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1023, N'Harpoon IPA', N'12.0', N'0.059', N'42.0', 16, 235) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1024, N'UFO Pumpkin', N'12.0', N'0.059', N'20.0', 83, 235) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1025, N'Harpoon Octoberfest', N'12.0', N'0.055', N'30.0', 75, 235) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1026, N'Harpoon IPA (2012)', N'12.0', N'0.059', N'42.0', 16, 235) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1027, N'Harpoon Summer Beer (2012)', N'12.0', N'0.05', N'28.0', 70, 235) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1028, N'UFO White', N'12.0', N'0.048', N'10.0', 20, 235) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1029, N'Harpoon Summer Beer (2010)', N'12.0', N'0.05', N'28.0', 70, 235) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1030, N'Harpoon IPA (2010)', N'12.0', N'0.059', N'42.0', 16, 235) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1031, N'Great Falls Select Pale Ale', N'12.0', N'0', N'N/A', 9, 536) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1032, N'Beltian White', N'12.0', N'0.048', N'N/A', 100, 536) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1033, N'Kaua''i Golden Ale', N'12.0', N'0.049', N'N/A', 9, 205) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1034, N'Sunset Amber', N'12.0', N'0.054', N'N/A', 18, 205) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1035, N'Hapa Brown Ale', N'19.2', N'0.064', N'N/A', 10, 205) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1036, N'Hapa Brown Ale', N'12.0', N'0.064', N'N/A', 10, 205) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1037, N'Southern Cross', N'19.2', N'0.083', N'N/A', 59, 205) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1038, N'Groupe G', N'16.0', N'0.076', N'65.0', 29, 281) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1039, N'Pt. Bonita Rustic Lager', N'16.0', N'0.062', N'40.0', 19, 281) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1040, N'Hill 88 Double IPA', N'16.0', N'0.088', N'77.0', 12, 281) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1041, N'Loose Cannon', N'12.0', N'0.072', N'45.0', 16, 480) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1042, N'AARGHtoberfest!', N'12.0', N'0.06', N'30.0', 75, 480) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1043, N'Davy Jones Lager', N'12.0', N'0.06', N'N/A', 40, 480) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1044, N'Grazias', N'16.0', N'0.063', N'30.0', 40, 424) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1045, N'Habitus IPA', N'16.0', N'0.08', N'86.0', 16, 424) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1046, N'Ex Umbris Rye Imperial Stout', N'16.0', N'0.099', N'85.0', 14, 424) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1047, N'The Golden One', N'12.0', N'0.063', N'21.0', 21, 169) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1048, N'The Power of Zeus', N'12.0', N'0.07', N'68.0', 18, 169) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1049, N'Tonganoxie Honey Wheat', N'12.0', N'0.044', N'22.0', 20, 501) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1050, N'Oregon Trail Unfiltered Raspberry Wheat', N'12.0', N'0.045', N'N/A', 61, 501) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1051, N'Annie''s Amber Ale', N'12.0', N'0.055', N'N/A', 5, 501) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1052, N'The 12th Can™', N'16.0', N'0.045', N'32.0', 18, 363) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1053, N'Hilliard''s Pils', N'16.0', N'0.055', N'34.0', 41, 363) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1054, N'Hilliard''s Blonde', N'16.0', N'0.049', N'20.0', 9, 363) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1055, N'Hilliard''s Amber Ale', N'16.0', N'0.055', N'60.0', 5, 363) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1056, N'Hilliard''s Saison', N'16.0', N'0.066', N'30.0', 90, 363) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1057, N'White Cap White IPA', N'16.0', N'0.042', N'N/A', 25, 350) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1058, N'Provision', N'12.0', N'0.042', N'25.0', 90, 298) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1059, N'One Nut Brown', N'12.0', N'0.047', N'28.0', 10, 298) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1060, N'Hop Farm IPA', N'12.0', N'0.058', N'45.0', 16, 298) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1061, N'Double D Blonde', N'12.0', N'0.049', N'20.0', 9, 199) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1062, N'Festeroo Winter Ale', N'12.0', N'0.078', N'60.0', 24, 199) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1063, N'Proxima IPA', N'12.0', N'0.063', N'70.0', 16, 199) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1064, N'Double D Blonde (2013)', N'12.0', N'0.049', N'20.0', 9, 199) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1065, N'541 American Lager', N'12.0', N'0.048', N'13.0', 19, 199) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1066, N'Alphadelic IPA', N'12.0', N'0.065', N'90.0', 16, 199) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1067, N'Alphadelic IPA (2011)', N'12.0', N'0.065', N'90.0', 16, 199) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1068, N'Double D Blonde (2011)', N'12.0', N'0.049', N'20.0', 9, 199) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1069, N'Green House India Pale Ale', N'12.0', N'0.07', N'N/A', 16, 396) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1070, N'The One They Call Zoe', N'12.0', N'0.051', N'N/A', 19, 396) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1071, N'Alteration', N'12.0', N'0.051', N'40.0', 3, 396) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1072, N'Pale Dog', N'12.0', N'0.06', N'50.0', 18, 396) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1073, N'Porter Culture', N'12.0', N'0.065', N'N/A', 22, 137) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1074, N'Hard Cider', N'16.0', N'0.068', N'N/A', 39, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1075, N'Totally Radler', N'16.0', N'0.027', N'21.0', 85, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1076, N'Nonstop Hef Hop', N'16.0', N'0.039', N'20.0', 20, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1077, N'Nonstop Hef Hop', N'16.0', N'0.039', N'20.0', 20, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1078, N'Nonstop Hef Hop', N'16.0', N'0.039', N'20.0', 20, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1079, N'Nonstop Hef Hop', N'16.0', N'0.039', N'20.0', 20, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1080, N'Nonstop Hef Hop', N'16.0', N'0.039', N'20.0', 20, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1081, N'Nonstop Hef Hop', N'16.0', N'0.039', N'20.0', 20, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1082, N'Nonstop Hef Hop', N'16.0', N'0.039', N'20.0', 20, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1083, N'Nonstop Hef Hop', N'16.0', N'0.039', N'20.0', 20, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1084, N'Nonstop Hef Hop', N'16.0', N'0.039', N'20.0', 20, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1085, N'Nonstop Hef Hop', N'16.0', N'0.039', N'20.0', 20, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1086, N'Nonstop Hef Hop', N'16.0', N'0.039', N'20.0', 20, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1087, N'Nonstop Hef Hop', N'16.0', N'0.039', N'20.0', 20, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1088, N'Rise Up Red', N'16.0', N'0.058', N'60.0', 5, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1089, N'Survival Stout', N'16.0', N'0.058', N'35.0', 23, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1090, N'Hopworks IPA', N'16.0', N'0.066', N'75.0', 16, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1091, N'Abominable Winter Ale', N'16.0', N'0.073', N'70.0', 24, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1092, N'Pigwar White India Pale Ale', N'16.0', N'0.06', N'60.0', 25, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1093, N'Rise-Up Red (2014)', N'16.0', N'0.058', N'60.0', 5, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1094, N'Abominable Winter Ale (2012)', N'16.0', N'0.073', N'70.0', 24, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1095, N'HUB Lager', N'16.0', N'0.051', N'32.0', 41, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1096, N'Hopworks IPA (2012)', N'16.0', N'0.066', N'75.0', 16, 81) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1097, N'Watermelon Wheat', N'12.0', N'0.056', N'N/A', 20, 121) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1098, N'Laka Laka Pineapple', N'12.0', N'0.051', N'17.0', 65, 121) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1099, N'Oktoberfest', N'16.0', N'0.06', N'N/A', 75, 227) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1100, N'Trail Maker Pale Ale', N'12.0', N'0.065', N'N/A', 18, 446) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1101, N'Action Man Lager', N'12.0', N'0.055', N'N/A', 97, 446) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1102, N'Let It Ride IPA', N'12.0', N'0.068', N'90.0', 16, 278) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1103, N'Stir Crazy Winter Ale', N'12.0', N'0.065', N'22.0', 99, 278) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1104, N'Sweet Yamma Jamma Ale', N'12.0', N'0.05', N'10.0', 61, 278) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1105, N'Shenanigans Summer Ale', N'12.0', N'0.046', N'27.0', 20, 278) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1106, N'Midnight Ryder', N'12.0', N'0.065', N'80.0', 8, 278) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1107, N'Day Tripper Pale Ale', N'12.0', N'0.054', N'45.0', 18, 278) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1108, N'Oklahoma Suks', N'12.0', N'0.048', N'32.0', 5, 141) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1109, N'Power & Light', N'12.0', N'0.055', N'42.0', 18, 141) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1110, N'White Rabbit ', N'12.0', N'0.059', N'27.0', 100, 141) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1111, N'Tribute', N'12.0', N'0.058', N'58.0', 18, 24) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1112, N'Infamous IPA', N'12.0', N'0.07', N'75.0', 16, 243) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1113, N'Hijack', N'12.0', N'0.055', N'20.0', 40, 243) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1114, N'Jon Boat Coastal Ale', N'12.0', N'0.045', N'20.0', 9, 528) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1115, N'I-10 IPA', N'12.0', N'0.068', N'55.0', 16, 528) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1116, N'People''s Pale Ale', N'12.0', N'0.053', N'28.0', 18, 528) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1117, N'Summer Ale', N'12.0', N'0.049', N'N/A', 9, 124) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1118, N'Appreciation Ale', N'16.0', N'0', N'N/A', 16, 317) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1119, N'House Lager', N'16.0', N'0.052', N'18.0', 69, 3) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1120, N'Leisure Time', N'12.0', N'0.048', N'15.0', 19, 3) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1121, N'Excess IPL', N'16.0', N'0.072', N'80.0', 15, 3) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1122, N'Hoponius Union', N'12.0', N'0.067', N'65.0', 15, 3) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1123, N'Calyptra', N'12.0', N'0.049', N'45.0', 15, 3) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1124, N'Helen''s Blend', N'12.0', N'0.05', N'N/A', 39, 417) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1125, N'Jack''s Hard Cider', N'12.0', N'0.051', N'N/A', 39, 417) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1126, N'Thunder Ann', N'12.0', N'0.055', N'37.0', 18, 313) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1127, N'Razz Wheat', N'12.0', N'0.055', N'N/A', 61, 93) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1128, N'Hop Ryot', N'12.0', N'0.065', N'N/A', 16, 93) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1129, N'Mystic Mama IPA', N'12.0', N'0.07', N'N/A', 16, 93) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1130, N'Firefly Amber Ale', N'12.0', N'0.05', N'N/A', 5, 93) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1131, N'Chomolungma Honey Nut Brown Ale', N'12.0', N'0.067', N'N/A', 48, 93) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1132, N'Welcome to Scoville', N'12.0', N'0.069', N'N/A', 16, 115) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1133, N'Bastian', N'12.0', N'0', N'N/A', 24, 33) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1134, N'Healani', N'12.0', N'0.045', N'N/A', 65, 33) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1135, N'Yabba Dhaba Chai Tea Porter', N'12.0', N'0.055', N'N/A', 22, 33) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1136, N'A Capella Gluten Free Pale Ale', N'12.0', N'0.055', N'N/A', 18, 33) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1137, N'Casper White Stout', N'12.0', N'0.06', N'N/A', 9, 33) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1138, N'JP''s Ould Sod Irish Red IPA', N'12.0', N'0.06', N'N/A', 16, 33) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1139, N'Weize Guy', N'12.0', N'0.05', N'15.0', 65, 234) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1140, N'Fox Tail Gluten Free Ale', N'12.0', N'0.05', N'50.0', 18, 234) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1141, N'Hop Box Imperial IPA', N'12.0', N'0.093', N'90.0', 12, 234) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1142, N'Joseph James American Lager', N'12.0', N'0.052', N'15.0', 4, 234) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1143, N'Sucha Much IPA', N'12.0', N'0.071', N'N/A', 16, 209) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1144, N'Lewbricator Wheat Dopplebock ', N'12.0', N'0.075', N'24.0', 42, 209) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1145, N'Weisse Versa (2012)', N'12.0', N'0.052', N'16.0', 65, 126) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1146, N'Mother in Lager', N'12.0', N'0.058', N'25.0', 78, 126) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1147, N'Weekend Warrior Pale Ale', N'12.0', N'0.055', N'40.0', 18, 126) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1148, N'Karbachtoberfest', N'12.0', N'0.055', N'25.0', 75, 126) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1149, N'Love Street Summer Seasonal (2014)', N'12.0', N'0.047', N'20.0', 70, 126) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1150, N'Barn Burner Saison', N'12.0', N'0.066', N'20.0', 90, 126) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1151, N'Rodeo Clown Double IPA', N'12.0', N'0.095', N'85.0', 12, 126) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1152, N'Sympathy for the Lager', N'12.0', N'0.049', N'45.0', 6, 126) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1153, N'Weisse Versa', N'12.0', N'0.052', N'15.0', 65, 126) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1154, N'Hopadillo India Pale Ale', N'12.0', N'0.066', N'70.0', 16, 126) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1155, N'KelSo Nut Brown Lager', N'12.0', N'0.057', N'19.0', 55, 343) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1156, N'KelSo India Pale Ale', N'12.0', N'0.06', N'64.0', 16, 343) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1157, N'KelSo Pilsner', N'12.0', N'0.055', N'23.0', 41, 343) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1158, N'Skilak Scottish Ale', N'12.0', N'0.058', N'N/A', 93, 459) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1159, N'Peninsula Brewers Reserve (PBR)', N'12.0', N'0.05', N'15.0', 9, 459) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1160, N'Sunken Island IPA', N'12.0', N'0.068', N'N/A', 16, 459) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1161, N'Skilak Scottish Ale (2011)', N'12.0', N'0.058', N'N/A', 93, 459) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1162, N'Cold Smoke Scotch Ale (2007)', N'16.0', N'0.065', N'11.0', 92, 511) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1163, N'Double Haul IPA (2009)', N'16.0', N'0.065', N'65.0', 16, 511) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1164, N'Double Haul IPA (2006)', N'16.0', N'0.065', N'65.0', 16, 511) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1165, N'Eddy Out Pale Ale', N'16.0', N'0.055', N'50.0', 18, 511) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1166, N'Double Haul IPA', N'16.0', N'0.065', N'65.0', 16, 511) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1167, N'Cold Smoke Scotch Ale', N'16.0', N'0.065', N'11.0', 92, 511) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1168, N'U. P. Witbier', N'12.0', N'0', N'N/A', 100, 85) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1169, N'November Gale Pale Ale', N'12.0', N'0', N'N/A', 18, 85) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1170, N'Olde Ore Dock Scottish Ale', N'12.0', N'0', N'N/A', 93, 85) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1171, N'Widow Maker Black Ale', N'12.0', N'0', N'N/A', 10, 85) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1172, N'Lift Bridge Brown Ale', N'12.0', N'0', N'N/A', 10, 85) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1173, N'Pick Axe Blonde Ale', N'12.0', N'0', N'N/A', 9, 85) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1174, N'Red Jacket Amber Ale', N'12.0', N'0', N'N/A', 5, 85) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1175, N'Amber Ale', N'12.0', N'0.051', N'N/A', 5, 103) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1176, N'King Street Pilsner', N'12.0', N'0.055', N'N/A', 41, 103) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1177, N'King Street IPA', N'12.0', N'0.06', N'70.0', 16, 103) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1178, N'King Street Hefeweizen', N'12.0', N'0.057', N'10.0', 65, 103) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1179, N'King Street Blonde Ale', N'12.0', N'0.049', N'N/A', 9, 103) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1180, N'India Pale Ale', N'16.0', N'0.063', N'65.0', 16, 88) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1181, N'Blackberry Wheat', N'16.0', N'0.048', N'11.0', 20, 88) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1182, N'Longboard Island Lager', N'24.0', N'0.046', N'18.0', 6, 440) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1183, N'Longboard Island Lager', N'16.0', N'0.046', N'18.0', 6, 440) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1184, N'Longboard Island Lager', N'12.0', N'0.046', N'18.0', 6, 440) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1185, N'Longboard Island Lager', N'12.0', N'0.046', N'18.0', 6, 440) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1186, N'Choc Beer (2003)', N'12.0', N'0.04', N'9.0', 11, 506) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1187, N'Bellingham Beer Week 2013 Collaboration', N'16.0', N'0.08', N'N/A', 31, 355) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1188, N'A Slice of Hefen', N'16.0', N'0.054', N'15.0', 65, 333) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1189, N'Elevated IPA', N'16.0', N'0.072', N'100.0', 16, 333) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1190, N'Rumspringa Golden Bock', N'12.0', N'0.066', N'30.0', 74, 546) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1191, N'Lancaster German Style Kölsch', N'12.0', N'0.048', N'28.0', 70, 546) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1192, N'Beach Cruiser', N'12.0', N'0.045', N'N/A', 65, 60) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1193, N'I.P. Eh!', N'12.0', N'0.068', N'N/A', 16, 60) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1194, N'Schoolhouse Honey', N'12.0', N'0.05', N'N/A', 5, 60) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1195, N'10 Degrees of Separation', N'12.0', N'0.055', N'N/A', 48, 60) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1196, N'Laughing Dog Cream Ale', N'12.0', N'0.05', N'12.0', 40, 219) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1197, N'Two-One Niner', N'12.0', N'0.048', N'9.0', 21, 219) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1198, N'Laughing Dog IPA', N'12.0', N'0.064', N'66.0', 16, 219) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1199, N'Madra Allta', N'12.0', N'0.064', N'95.0', 16, 346) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1200, N'Duluchan India Pale Ale', N'12.0', N'0.056', N'70.0', 16, 346) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1201, N'Lazy Monk Bohemian Pilsner', N'16.0', N'0.05', N'N/A', 41, 407) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1202, N'Yellowstone Golden Ale', N'12.0', N'0.051', N'N/A', 70, 538) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1203, N'Tumbleweed IPA', N'12.0', N'0.057', N'N/A', 16, 538) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1204, N'Lewis & Clark Amber Ale', N'12.0', N'0.05', N'N/A', 5, 538) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1205, N'Miner''s Gold Hefeweizen', N'12.0', N'0.05', N'N/A', 65, 538) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1206, N'Back Country Scottish Ale', N'12.0', N'0.057', N'N/A', 93, 538) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1207, N'Getaway', N'16.0', N'0.052', N'30.0', 62, 245) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1208, N'Farm Girl Saison', N'16.0', N'0.06', N'30.0', 90, 245) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1209, N'Adam''s Stout', N'12.0', N'0.058', N'40.0', 23, 299) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1210, N'American Hero', N'12.0', N'0.057', N'42.0', 5, 299) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1211, N'Schweet Ale', N'12.0', N'0.052', N'20.0', 61, 299) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1212, N'Irregardless IPA', N'12.0', N'0.065', N'75.0', 16, 299) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1213, N'Peach Pale Ale', N'12.0', N'0.057', N'40.0', 18, 105) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1214, N'Deadeye Jack', N'12.0', N'0.06', N'N/A', 22, 150) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1215, N'Pistols at Dawn', N'16.0', N'0.075', N'N/A', 23, 150) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1216, N'Peacemaker Pale Ale', N'12.0', N'0.057', N'47.0', 18, 150) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1217, N'Shotgun Betty', N'12.0', N'0.058', N'11.0', 65, 150) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1218, N'Sweet Josie', N'12.0', N'0.061', N'30.0', 10, 150) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1219, N'Long Trail IPA', N'12.0', N'0.059', N'42.0', 50, 269) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1220, N'Long Trail Ale', N'12.0', N'0.046', N'30.0', 5, 269) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1221, N'Double Bag', N'16.0', N'0.072', N'33.0', 3, 269) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1222, N'Blackbeary Wheat', N'12.0', N'0.04', N'8.0', 61, 269) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1223, N'Long Trail Ale (1)', N'12.0', N'0.046', N'30.0', 3, 269) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1224, N'Gose', N'16.0', N'0.046', N'8.0', 63, 42) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1225, N'Vermont Pilsner', N'16.0', N'0.048', N'20.0', 62, 42) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1226, N'Mosaic Single Hop IPA', N'16.0', N'0.055', N'N/A', 16, 42) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1227, N'Lost Galaxy', N'16.0', N'0.045', N'N/A', 16, 42) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1228, N'Face Plant IPA', N'12.0', N'0.062', N'65.0', 16, 431) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1229, N'Rhino Chasers Pilsner', N'12.0', N'0.056', N'55.0', 41, 431) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1230, N'Slow Hand Stout', N'16.0', N'0.052', N'29.0', 23, 378) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1231, N'Hips Don''t Lie', N'16.0', N'0.062', N'N/A', 65, 457) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1232, N'Ride Again Pale Ale', N'16.0', N'0.052', N'N/A', 18, 457) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1233, N'The Farmer''s Daughter', N'16.0', N'0.048', N'N/A', 9, 457) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1234, N'Pub Ale', N'12.0', N'0.038', N'18.0', 49, 246) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1235, N'Ballistic Blonde', N'12.0', N'0.051', N'31.0', 30, 246) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1236, N'Knotty Pine', N'12.0', N'0.054', N'N/A', 18, 159) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1237, N'Lumberyard Pilsner', N'12.0', N'0.053', N'20.0', 21, 159) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1238, N'Lumberyard IPA', N'12.0', N'0.061', N'N/A', 16, 159) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1239, N'Lumberyard Red Ale', N'12.0', N'0.058', N'N/A', 5, 159) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1240, N'Mac''s Highlander Pale Ale (2000)', N'12.0', N'0.05', N'N/A', 18, 486) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1241, N'Mac''s Scottish Style Amber Ale (2000)', N'12.0', N'0.051', N'32.0', 5, 486) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1242, N'Macon Progress Ale', N'12.0', N'0.05', N'N/A', 18, 401) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1243, N'Macon History Ale', N'12.0', N'0.055', N'N/A', 10, 401) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1244, N'Galaxy High', N'12.0', N'0.099', N'N/A', 12, 92) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1245, N'Sol Drifter', N'12.0', N'0.043', N'18.0', 9, 92) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1246, N'Thunder Snow', N'12.0', N'0.085', N'N/A', 99, 92) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1247, N'The Great Pumpcan', N'16.0', N'0.079', N'18.0', 61, 92) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1248, N'LIFT', N'12.0', N'0.047', N'11.0', 70, 92) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1249, N'SPRYE', N'12.0', N'0.05', N'40.0', 18, 92) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1250, N'Psychopathy', N'12.0', N'0.069', N'70.0', 16, 92) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1251, N'Gnarly Brown', N'12.0', N'0.07', N'32.0', 10, 92) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1252, N'Happy Amber', N'12.0', N'0.06', N'30.0', 5, 92) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1253, N'#9', N'16.0', N'0.051', N'20.0', 61, 304) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1254, N'Elder Betty', N'12.0', N'0.055', N'13.0', 65, 304) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1255, N'#9', N'12.0', N'0.051', N'20.0', 61, 304) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1256, N'High Country Pilsner (Current)', N'12.0', N'0.042', N'N/A', 62, 535) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1257, N'Epic IPA', N'12.0', N'0.065', N'N/A', 16, 535) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1258, N'Golden Trout Pilsner', N'12.0', N'0.042', N'N/A', 62, 535) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1259, N'Real McCoy Amber Ale (Current)', N'12.0', N'0.045', N'N/A', 5, 535) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1260, N'Festivus (1)', N'12.0', N'0.072', N'N/A', 99, 357) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1261, N'Manayunk Oktoberfest', N'12.0', N'0.067', N'N/A', 75, 357) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1262, N'Belgian Style Session Ale', N'12.0', N'0.045', N'21.0', 30, 357) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1263, N'Manayunk IPA', N'12.0', N'0.055', N'N/A', 16, 357) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1264, N'Yunkin'' Punkin''', N'12.0', N'0.055', N'N/A', 83, 357) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1265, N'Summer Paradise', N'12.0', N'0.05', N'18.0', 20, 357) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1266, N'Monk from the ''Yunk', N'12.0', N'0.09', N'30.0', 96, 357) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1267, N'Schuylkill Punch', N'12.0', N'0.06', N'14.0', 61, 357) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1268, N'Dreamin'' Double IPA', N'12.0', N'0.085', N'85.0', 12, 357) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1269, N'Chaotic Double IPA', N'12.0', N'0.099', N'93.0', 12, 347) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1270, N'Manzanita IPA', N'12.0', N'0.08', N'88.0', 16, 347) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1271, N'Riverwalk Blonde Ale', N'12.0', N'0.06', N'25.0', 9, 347) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1272, N'Gillespie Brown Ale', N'12.0', N'0.095', N'49.0', 10, 347) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1273, N'Manzanita Pale Ale', N'12.0', N'0.066', N'44.0', 18, 347) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1274, N'Marble Pilsner', N'12.0', N'0.047', N'N/A', 62, 444) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1275, N'Marble India Pale Ale', N'12.0', N'0.062', N'N/A', 16, 444) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1276, N'Toughcats IPA', N'16.0', N'0.072', N'N/A', 16, 318) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1277, N'Tug Pale Ale', N'16.0', N'0.05', N'N/A', 18, 318) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1278, N'Sexy Chaos', N'16.0', N'0.099', N'N/A', 88, 318) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1279, N'Ace Hole American Pale Ale', N'16.0', N'0.063', N'N/A', 18, 318) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1280, N'Cant Dog Imperial Pale Ale', N'16.0', N'0.097', N'N/A', 12, 318) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1281, N'River House', N'16.0', N'0.05', N'20.0', 90, 162) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1282, N'Pretzel Stout', N'16.0', N'0.065', N'47.0', 23, 162) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1283, N'Rubberneck Red', N'16.0', N'0.05', N'35.0', 5, 162) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1284, N'The Imperial Texan', N'16.0', N'0.08', N'N/A', 12, 162) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1285, N'The Imperial Texan', N'12.0', N'0.08', N'N/A', 12, 162) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1286, N'Day Break 4-Grain Breakfast Beer', N'16.0', N'0.05', N'N/A', 89, 162) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1287, N'River House Saison', N'12.0', N'0.05', N'N/A', 90, 162) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1288, N'There Will Be Stout', N'12.0', N'0.065', N'N/A', 23, 162) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1289, N'Our Legacy IPA', N'12.0', N'0.065', N'60.0', 16, 300) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1290, N'Saranac Shandy', N'12.0', N'0.042', N'N/A', 94, 300) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1291, N'Our Legacy IPA', N'16.0', N'0.065', N'60.0', 16, 300) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1292, N'Saranac Golden Pilsener (2003)', N'12.0', N'0.051', N'N/A', 62, 300) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1293, N'Saranac Adirondack Light (2002)', N'12.0', N'0.045', N'N/A', 72, 300) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1294, N'DAX Light (1998)', N'12.0', N'0.045', N'N/A', 72, 300) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1295, N'Saranac Traditional Lager (2000)', N'12.0', N'0.048', N'N/A', 19, 300) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1296, N'Pomegranate Wheat (2008)', N'12.0', N'0.047', N'N/A', 61, 300) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1297, N'Blueberry Blonde Ale', N'12.0', N'0.05', N'12.0', 9, 300) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1298, N'Saranac White IPA', N'12.0', N'0.06', N'N/A', 16, 300) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1299, N'Saranac Summer Ale (2011)', N'12.0', N'0.047', N'N/A', 20, 300) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1300, N'Saranac Pale Ale (12 oz.)', N'12.0', N'0.055', N'N/A', 51, 300) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1301, N'Saranac Pale Ale (16 oz.)', N'16.0', N'0.055', N'N/A', 51, 300) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1302, N'Lahaina Town Brown', N'12.0', N'0.051', N'20.0', 10, 376) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1303, N'Pau Hana Pilsner', N'12.0', N'0.055', N'N/A', 41, 376) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1304, N'Lemongrass Saison', N'12.0', N'0.05', N'N/A', 90, 376) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1305, N'Aloha B’ak’tun', N'12.0', N'0.07', N'N/A', 31, 376) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1306, N'Liquid Breadfruit', N'12.0', N'0.082', N'N/A', 61, 376) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1307, N'Sobrehumano Palena''ole', N'12.0', N'0.06', N'24.0', 5, 376) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1308, N'La Perouse White', N'12.0', N'0.05', N'12.0', 100, 376) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1309, N'Flyin'' HI.P.Hay', N'12.0', N'0.068', N'68.0', 16, 376) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1310, N'Mana Wheat', N'12.0', N'0.055', N'15.0', 20, 376) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1311, N'Bikini Blonde Lager', N'12.0', N'0.045', N'18.0', 79, 376) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1312, N'CoCoNut Porter', N'12.0', N'0.057', N'30.0', 22, 376) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1313, N'Big Swell IPA', N'12.0', N'0.062', N'65.0', 16, 376) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1314, N'Pit Stop Chocolate Porter', N'12.0', N'0.037', N'34.0', 22, 449) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1315, N'Pace Setter Belgian Style Wit', N'12.0', N'0.037', N'21.0', 100, 449) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1316, N'Back in the Saddle Rye Pale Ale', N'12.0', N'0.037', N'53.0', 18, 449) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1317, N'Bushwhacker Cider', N'16.0', N'0.069', N'N/A', 39, 255) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1318, N'Weim-R-Iner', N'16.0', N'0.069', N'N/A', 39, 255) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1319, N'Cherry Bomb', N'16.0', N'0.069', N'N/A', 39, 255) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1320, N'Tsunami IPA', N'19.2', N'0.072', N'75.0', 16, 204) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1321, N'Tsunami IPA', N'12.0', N'0.072', N'75.0', 16, 204) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1322, N'Humpback Blonde Ale', N'12.0', N'0.042', N'22.0', 9, 204) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1323, N'Hawaiian Crow Porter', N'12.0', N'0.052', N'27.0', 22, 204) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1324, N'Volcano Red Ale', N'12.0', N'0.052', N'23.0', 5, 204) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1325, N'Mauna Kea Pale Ale', N'12.0', N'0.054', N'42.0', 18, 204) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1326, N'Shark Bait', N'12.0', N'0.053', N'11.0', 61, 394) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1327, N'Gator Tail Brown Ale', N'12.0', N'0.053', N'30.0', 10, 394) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1328, N'Miami Vice IPA', N'12.0', N'0.071', N'62.0', 16, 394) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1329, N'Big Rod Coconut Ale', N'12.0', N'0.053', N'16.0', 9, 394) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1330, N'Mickey Finn''s Amber Ale', N'12.0', N'0.056', N'N/A', 5, 553) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1331, N'Pleasure Town', N'12.0', N'0.063', N'61.0', 16, 224) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1332, N'Pleasure Town IPA', N'12.0', N'0.063', N'61.0', 16, 224) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1333, N'Snowshoe White Ale', N'12.0', N'0.048', N'12.0', 100, 224) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1334, N'Kodiak Brown Ale', N'12.0', N'0.05', N'24.0', 10, 224) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1335, N'Sockeye Red IPA', N'12.0', N'0.057', N'70.0', 16, 224) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1336, N'Habitus (2014)', N'16.0', N'0.08', N'100.0', 12, 4) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1337, N'Solis', N'16.0', N'0.075', N'85.0', 16, 4) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1338, N'Jucundus', N'16.0', N'0.06', N'24.0', 98, 4) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1339, N'Habitus', N'16.0', N'0.08', N'100.0', 12, 4) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1340, N'Grazias', N'16.0', N'0.063', N'30.0', 40, 424) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1341, N'Claritas', N'16.0', N'0.058', N'28.0', 70, 4) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1342, N'Vinyl Frontier', N'24.0', N'0.083', N'N/A', 12, 66) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1343, N'Disco Superfly', N'24.0', N'0.08', N'N/A', 16, 66) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1344, N'Misty Mountain Hop', N'24.0', N'0.075', N'N/A', 16, 66) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1345, N'One-Hit Wonderful', N'24.0', N'0.075', N'N/A', 29, 66) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1346, N'En Parfaite Harmonie', N'24.0', N'0.065', N'N/A', 90, 66) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1347, N'Daft Funk', N'24.0', N'0.043', N'8.0', 33, 66) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1348, N'Love In An Ellavator', N'24.0', N'0.075', N'N/A', 16, 66) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1349, N'Spin Doctor', N'24.0', N'0.053', N'N/A', 18, 66) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1350, N'Keeper (Current)', N'12.0', N'0.05', N'N/A', 21, 364) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1351, N'Better Half', N'12.0', N'0.068', N'N/A', 16, 364) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1352, N'SNO White Ale', N'16.0', N'0.048', N'N/A', 100, 441) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1353, N'BRIK Irish Red Ale', N'16.0', N'0.048', N'N/A', 68, 441) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1354, N'AXL Pale Ale', N'16.0', N'0', N'N/A', 18, 441) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1355, N'Hop Freak', N'16.0', N'0.087', N'80.0', 12, 285) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1356, N'Louie''s Demise Amber Ale', N'16.0', N'0.051', N'24.0', 5, 285) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1357, N'Hop Happy', N'16.0', N'0.075', N'51.0', 16, 285) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1358, N'Booyah Farmhouse Ale', N'16.0', N'0.065', N'20.0', 90, 285) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1359, N'O-Gii', N'16.0', N'0.092', N'N/A', 100, 285) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1360, N'Flaming Damsel Lager (2010)', N'16.0', N'0.048', N'18.0', 97, 285) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1361, N'Louie’s Demise Immort-Ale (2010)', N'16.0', N'0.051', N'24.0', 5, 285) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1362, N'Axe Head Malt Liquor', N'24.0', N'0.099', N'N/A', 17, 135) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1363, N'Huber Bock (2014)', N'16.0', N'0.054', N'N/A', 35, 135) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1364, N'Minhas Light (2012)', N'12.0', N'0.04', N'N/A', 72, 135) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1365, N'Huber', N'12.0', N'0.05', N'N/A', 19, 135) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1366, N'Clear Creek Ice', N'16.0', N'0.062', N'N/A', 19, 135) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1367, N'Clear Creek Ice', N'12.0', N'0.062', N'N/A', 19, 135) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1368, N'Mountain Crest', N'16.0', N'0.055', N'N/A', 19, 135) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1369, N'Mountain Crest', N'12.0', N'0.055', N'N/A', 19, 135) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1370, N'Mountain Creek (2013)', N'12.0', N'0.055', N'N/A', 19, 135) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1371, N'Boxer', N'24.0', N'0.05', N'N/A', 4, 135) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1372, N'Boxer Light', N'12.0', N'0.042', N'N/A', 72, 135) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1373, N'Boxer Ice', N'12.0', N'0.055', N'N/A', 4, 135) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1374, N'Boxer', N'12.0', N'0.05', N'N/A', 4, 135) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1375, N'Cortez Gold', N'32.0', N'0.05', N'N/A', 30, 99) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1376, N'Mission IPA', N'32.0', N'0.068', N'66.0', 16, 99) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1377, N'El Conquistador Extra Pale Ale', N'32.0', N'0.048', N'44.0', 18, 99) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1378, N'Shipwrecked Double IPA', N'32.0', N'0.092', N'75.0', 12, 99) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1379, N'Squeaky Bike Nut Brown Ale', N'16.0', N'0.04', N'N/A', 10, 400) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1380, N'Dead Horse Amber', N'16.0', N'0.04', N'N/A', 20, 400) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1381, N'Rocket Bike American Lager', N'16.0', N'0.04', N'N/A', 37, 400) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1382, N'Johnny''s American IPA', N'16.0', N'0.04', N'N/A', 16, 400) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1383, N'Boneshaker Brown Ale', N'24.0', N'0.055', N'N/A', 48, 548) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1384, N'Iron Mike Pale Ale', N'24.0', N'0.056', N'N/A', 18, 548) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1385, N'Monkadelic', N'12.0', N'0.042', N'N/A', 18, 190) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1386, N'City of the Sun', N'16.0', N'0.075', N'85.0', 16, 210) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1387, N'Booming Rollers', N'16.0', N'0.068', N'75.0', 16, 210) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1388, N'Oneida', N'16.0', N'0.052', N'50.0', 18, 210) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1389, N'Aurora ', N'16.0', N'0.067', N'75.0', 5, 210) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1390, N'Lomaland', N'16.0', N'0.055', N'30.0', 90, 210) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1391, N'Fortunate Islands', N'16.0', N'0.047', N'46.0', 20, 210) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1392, N'Black House', N'16.0', N'0.058', N'40.0', 23, 210) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1393, N'Blazing World', N'16.0', N'0.065', N'115.0', 5, 210) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1394, N'Wapiti Amber Ale', N'12.0', N'0.05', N'N/A', 5, 550) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1395, N'Sweet Georgia Brown', N'16.0', N'0.054', N'N/A', 10, 515) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1396, N'Rich Man''s IIPA', N'16.0', N'0.087', N'N/A', 12, 515) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1397, N'Monkey Paw Oatmeal Pale Ale', N'16.0', N'0.058', N'N/A', 18, 515) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1398, N'Montauk Summer Ale', N'12.0', N'0.056', N'28.0', 9, 277) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1399, N'Driftwood Ale', N'12.0', N'0.06', N'49.0', 57, 277) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1400, N'When Helles Freezes Over', N'12.0', N'0.056', N'18.0', 79, 327) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1401, N'Morgan Street Oktoberfest', N'12.0', N'0.049', N'24.0', 75, 327) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1402, N'Honey Wheat', N'12.0', N'0.047', N'14.0', 20, 327) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1403, N'Black Bear Dark Lager', N'12.0', N'0.046', N'24.0', 91, 327) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1404, N'Golden Pilsner', N'12.0', N'0.05', N'35.0', 62, 327) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1405, N'Cali Creamin''', N'12.0', N'0.052', N'21.0', 40, 112) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1406, N'Second Wind Pale Ale', N'12.0', N'0.05', N'N/A', 18, 541) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1407, N'Sunny Haze', N'12.0', N'0.05', N'N/A', 65, 541) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1408, N'Towhead', N'12.0', N'0.052', N'21.0', 9, 189) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1409, N'Lil'' Helper', N'12.0', N'0.07', N'70.0', 16, 189) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1410, N'Train Wreck', N'16.0', N'0.082', N'N/A', 5, 261) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1411, N'Full Moon Belgian White Ale', N'12.0', N'0.085', N'N/A', 100, 508) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1412, N'Desert Magic IPA', N'12.0', N'0.072', N'N/A', 16, 508) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1413, N'Up River Light', N'12.0', N'0.042', N'N/A', 72, 508) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1414, N'Full Moon Belgian White Ale (2007)', N'12.0', N'0.085', N'N/A', 100, 508) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1415, N'Dry Heat Hefeweizen (2006)', N'12.0', N'0.055', N'N/A', 65, 508) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1416, N'Mustang Sixty-Six', N'12.0', N'0.05', N'N/A', 6, 367) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1417, N'Mustang ''33', N'12.0', N'0.04', N'N/A', 19, 367) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1418, N'Session ''33 (2011)', N'12.0', N'0.04', N'N/A', 19, 367) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1419, N'Mustang Golden Ale', N'12.0', N'0.053', N'10.0', 9, 367) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1420, N'Washita Wheat', N'12.0', N'0.053', N'14.0', 20, 367) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1421, N'Gansett Light', N'16.0', N'0.037', N'10.0', 72, 144) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1422, N'Bohemian Pils', N'16.0', N'0.052', N'30.0', 21, 144) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1423, N'Autocrat Coffee Milk Stout', N'16.0', N'0.053', N'30.0', 77, 144) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1424, N'Narragansett Bohemian Pilsner', N'16.0', N'0.086', N'35.0', 62, 144) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1425, N'Narragansett Summer Ale', N'12.0', N'0.042', N'24.0', 20, 144) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1426, N'Narragansett Cream Ale', N'16.0', N'0.05', N'22.0', 40, 144) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1427, N'Narragansett Summer Ale', N'16.0', N'0.042', N'24.0', 20, 144) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1428, N'Narragansett Porter', N'16.0', N'0.07', N'22.0', 22, 144) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1429, N'Narragansett Bock', N'16.0', N'0.065', N'32.0', 35, 144) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1430, N'Narragansett Fest Lager', N'16.0', N'0.055', N'15.0', 75, 144) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1431, N'Undun Blonde Ale', N'16.0', N'0.053', N'N/A', 9, 388) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1432, N'CuDa Cascadian Dark Ale', N'16.0', N'0.074', N'N/A', 8, 388) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1433, N'Old Grogham Imperial India Pale Ale', N'16.0', N'0.085', N'86.0', 12, 388) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1434, N'Old Grogham Imperial India Pale Ale (2012)', N'16.0', N'0.085', N'86.0', 12, 388) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1435, N'CuDa Cascadian Dark Ale (2012)', N'16.0', N'0.074', N'N/A', 8, 388) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1436, N'Undun Blonde Ale (2012)', N'16.0', N'0.053', N'N/A', 9, 388) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1437, N'Wick For Brains', N'12.0', N'0.061', N'11.0', 83, 338) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1438, N'Nebraska India Pale Ale', N'12.0', N'0.065', N'65.0', 16, 338) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1439, N'EOS Hefeweizen', N'12.0', N'0.048', N'10.0', 65, 338) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1440, N'Brunette Nut Brown Ale', N'12.0', N'0.048', N'15.0', 48, 338) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1441, N'Cardinal Pale Ale', N'12.0', N'0.057', N'29.0', 18, 338) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1442, N'County Line IPA', N'12.0', N'0.066', N'N/A', 16, 326) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1443, N'Trauger Pilsner', N'12.0', N'0.048', N'N/A', 62, 326) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1444, N'Slow Ride', N'12.0', N'0.045', N'40.0', 16, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1445, N'Ranger IPA', N'12.0', N'0.065', N'70.0', 16, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1446, N'Shift', N'12.0', N'0.05', N'29.0', 19, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1447, N'1554 Black Lager', N'12.0', N'0.056', N'21.0', 55, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1448, N'Blue Paddle', N'12.0', N'0.048', N'N/A', 41, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1449, N'California Route', N'12.0', N'0.055', N'N/A', 6, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1450, N'Snapshot', N'16.0', N'0.052', N'N/A', 20, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1451, N'Sunshine Wheat Beer', N'12.0', N'0.048', N'N/A', 20, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1452, N'Fat Tire Amber Ale', N'12.0', N'0.052', N'18.0', 5, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1453, N'Shift (1)', N'12.0', N'0.05', N'29.0', 19, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1454, N'Fat Tire Amber Ale (2011)', N'12.0', N'0.052', N'18.0', 5, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1455, N'Shift', N'16.0', N'0.05', N'29.0', 19, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1456, N'Ranger IPA', N'16.0', N'0.065', N'70.0', 16, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1457, N'Fat Tire Amber Ale', N'16.0', N'0.052', N'18.0', 5, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1458, N'Ranger IPA (Current)', N'12.0', N'0.065', N'70.0', 16, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1459, N'Sunshine Wheat Beer (2009)', N'12.0', N'0.048', N'N/A', 20, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1460, N'Fat Tire Amber Ale (2008)', N'12.0', N'0.052', N'18.0', 5, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1461, N'Weiss Trash Culture', N'12.0', N'0.034', N'6.0', 33, 411) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1462, N'Sea Hag IPA', N'12.0', N'0.062', N'N/A', 16, 411) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1463, N'Elm City Pilsner', N'12.0', N'0.05', N'N/A', 21, 411) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1464, N'Atlantic Amber Ale (2004)', N'12.0', N'0.05', N'N/A', 5, 411) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1465, N'668 Neighbor of the Beast12 oz.', N'12.0', N'0.09', N'N/A', 30, 411) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1466, N'Gandhi-Bot Double IPA (12 oz.)', N'12.0', N'0.088', N'85.0', 12, 411) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1467, N'668 Neighbor of the Beast (16 oz.) (2010)', N'16.0', N'0.09', N'N/A', 30, 411) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1468, N'Gandhi-Bot Double IPA (16 oz.) (2010)', N'16.0', N'0.088', N'85.0', 12, 411) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1469, N'Elm City Lager (2007)', N'12.0', N'0.05', N'N/A', 21, 411) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1470, N'Atlantic Amber Ale (2007)', N'12.0', N'0.05', N'N/A', 5, 411) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1471, N'Sea Hag IPA (Current)', N'12.0', N'0.062', N'N/A', 16, 411) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1472, N'Rebirth Pale Ale', N'12.0', N'0.05', N'N/A', 18, 175) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1473, N'Irish Channel Stout', N'16.0', N'0.068', N'N/A', 23, 175) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1474, N'MechaHopzilla', N'16.0', N'0.088', N'N/A', 12, 175) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1475, N'Hopitoulas IPA', N'16.0', N'0.065', N'N/A', 16, 175) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1476, N'NOLA Brown Ale', N'12.0', N'0.039', N'N/A', 49, 175) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1477, N'NOLA Blonde Ale', N'12.0', N'0.049', N'N/A', 9, 175) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1478, N'Skylight', N'12.0', N'0.056', N'20.0', 45, 242) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1479, N'Kadigan', N'12.0', N'0.056', N'30.0', 9, 242) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1480, N'Dammit Jim!', N'12.0', N'0.052', N'50.0', 5, 242) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1481, N'Nut Brown Ale', N'12.0', N'0.054', N'N/A', 48, 519) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1482, N'White Ale', N'12.0', N'0.046', N'N/A', 100, 519) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1483, N'Cream Ale', N'12.0', N'0.042', N'35.0', 40, 239) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1484, N'Green Head IPA', N'12.0', N'0.072', N'N/A', 16, 496) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1485, N'Plum Island Belgian White', N'12.0', N'0.054', N'N/A', 100, 496) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1486, N'Newburyport Pale Ale', N'12.0', N'0.055', N'N/A', 18, 496) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1487, N'Marblehead', N'16.0', N'0.055', N'N/A', 5, 306) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1488, N'Jam Session', N'16.0', N'0.051', N'31.0', 18, 360) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1489, N'Hop Drop ''N Roll IPA', N'16.0', N'0.072', N'80.0', 16, 360) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1490, N'Paleo IPA', N'12.0', N'0.06', N'N/A', 50, 432) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1491, N'Buck Snort Stout', N'12.0', N'0.061', N'N/A', 23, 432) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1492, N'Station 33 Firehouse Red', N'12.0', N'0.055', N'N/A', 68, 432) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1493, N'Slimy Pebble Pils', N'12.0', N'0.045', N'N/A', 62, 432) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1494, N'Get Together', N'16.0', N'0.045', N'50.0', 16, 1) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1495, N'Maggie''s Leap', N'16.0', N'0.049', N'26.0', 77, 1) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1496, N'Wall''s End', N'16.0', N'0.048', N'19.0', 48, 1) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1497, N'Pumpion', N'16.0', N'0.06', N'38.0', 83, 1) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1498, N'Stronghold', N'16.0', N'0.06', N'25.0', 22, 1) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1499, N'Parapet ESB', N'16.0', N'0.056', N'47.0', 57, 1) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1500, N'Blue Boots IPA', N'16.0', N'0.069', N'N/A', 16, 294) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1501, N'Hoppy Bitch IPA', N'16.0', N'0.063', N'N/A', 16, 451) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1502, N'Three Skulls Ale Pale Ale', N'16.0', N'0.063', N'42.0', 18, 451) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1503, N'Walter''s Premium Pilsener Beer', N'12.0', N'0.045', N'N/A', 62, 530) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1504, N'Floppin'' Crappie', N'12.0', N'0.045', N'N/A', 20, 530) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1505, N'Left of the Dial IPA', N'12.0', N'0.043', N'N/A', 16, 272) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1506, N'Notch Session Pils', N'12.0', N'0.04', N'N/A', 41, 272) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1507, N'O''Fallon Pumpkin Beer', N'12.0', N'0.055', N'N/A', 83, 443) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1508, N'5 Day IPA', N'12.0', N'0.061', N'66.0', 16, 443) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1509, N'O''Fallon Wheach', N'12.0', N'0.051', N'7.0', 61, 443) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1510, N'Watershed IPA', N'12.0', N'0.067', N'70.0', 16, 151) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1511, N'Oakshire Amber Ale', N'12.0', N'0.054', N'24.0', 5, 151) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1512, N'Overcast Espresso Stout', N'12.0', N'0.058', N'27.0', 23, 151) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1513, N'Watershed IPA (2013)', N'12.0', N'0.067', N'70.0', 16, 151) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1514, N'Lake Monster', N'16.0', N'0.082', N'25.0', 27, 185) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1515, N'London Homesick Ale', N'12.0', N'0.049', N'27.0', 47, 185) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1516, N'Luchesa Lager', N'12.0', N'0.048', N'35.0', 69, 185) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1517, N'Slow Ride', N'12.0', N'0.048', N'35.0', 18, 83) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1518, N'Occidental Hefeweizen', N'16.0', N'0.047', N'N/A', 20, 201) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1519, N'Occidental Dunkel', N'16.0', N'0.051', N'N/A', 45, 201) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1520, N'Occidental Altbier', N'16.0', N'0.05', N'N/A', 3, 201) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1521, N'Occidental Kölsch', N'16.0', N'0.045', N'N/A', 70, 201) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1522, N'Perpetual Darkness', N'12.0', N'0.092', N'72.0', 31, 149) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1523, N'Clan Warrior', N'12.0', N'0.087', N'29.0', 92, 149) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1524, N'Psycho Penguin Vanilla Porter', N'12.0', N'0.054', N'36.0', 22, 149) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1525, N'Heliocentric Hefeweizen', N'12.0', N'0.047', N'N/A', 65, 149) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1526, N'Ghose Drifter Pale Ale', N'12.0', N'0.051', N'N/A', 18, 149) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1527, N'Ghost Rider Pale Ale (2013)', N'12.0', N'0.051', N'N/A', 18, 149) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1528, N'Helios Hefeweizen (2013)', N'12.0', N'0.047', N'N/A', 65, 149) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1529, N'The Hole in Hadrian''s Wall', N'16.0', N'0.095', N'19.0', 93, 472) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1530, N'33 Select Brown Ale', N'16.0', N'0.065', N'26.0', 10, 472) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1531, N'Midwest Charm Farmhouse Ale', N'16.0', N'0.06', N'29.0', 90, 472) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1532, N'Boji Blue Pale Ale', N'16.0', N'0.05', N'45.0', 18, 472) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1533, N'Winter Games Select #32 Stout', N'16.0', N'0.057', N'26.0', 23, 472) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1534, N'Boji Beach Golden Rye Ale', N'16.0', N'0.05', N'23.0', 89, 472) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1535, N'Hopsmith Pale Lager', N'16.0', N'0.06', N'N/A', 19, 302) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1536, N'Falling Down Brown Ale', N'16.0', N'0.065', N'65.0', 10, 302) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1537, N'Resolution Rye Stout', N'16.0', N'0.068', N'N/A', 23, 302) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1538, N'Plowshare Porter', N'16.0', N'0.055', N'N/A', 22, 302) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1539, N'Old Forge Pumpkin Ale', N'16.0', N'0.046', N'20.0', 83, 302) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1540, N'Endless Sun Ale', N'16.0', N'0.045', N'N/A', 20, 302) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1541, N'Celestial Blonde Ale', N'16.0', N'0.065', N'N/A', 9, 302) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1542, N'Overbite IPA', N'16.0', N'0.075', N'N/A', 16, 302) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1543, N'T-Rail Pale Ale', N'16.0', N'0.055', N'N/A', 18, 302) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1544, N'Endless Summer Ale (2011)', N'16.0', N'0.048', N'N/A', 20, 302) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1545, N'Clem''s Gold', N'16.0', N'0.053', N'N/A', 19, 391) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1546, N'Lizzy''s Red', N'16.0', N'0.055', N'N/A', 6, 391) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1547, N'Orlison India Pale Lager', N'16.0', N'0.067', N'N/A', 19, 391) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1548, N'Brünette', N'16.0', N'0.042', N'N/A', 55, 391) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1549, N'Havanüther', N'16.0', N'0.041', N'N/A', 72, 391) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1550, N'Lyric Ale', N'12.0', N'0.065', N'N/A', 90, 217) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1551, N'Atalanta', N'12.0', N'0.053', N'N/A', 90, 217) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1552, N'Pinner Throwback IPA', N'12.0', N'0.049', N'35.0', 16, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1553, N'Centennial State Pale Ale', N'19.2', N'0.052', N'N/A', 18, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1554, N'Old Chub NITRO', N'16.0', N'0.08', N'N/A', 92, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1555, N'The CROWLER™', N'32.0', N'0', N'N/A', 1, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1556, N'CAN''D AID Foundation', N'12.0', N'0', N'N/A', 1, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1557, N'Icey.P.A.', N'16.0', N'0', N'N/A', 16, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1558, N'One Nut Brown', N'12.0', N'0.05', N'N/A', 48, 298) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1559, N'Birth IPA', N'12.0', N'0', N'N/A', 16, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1560, N'Dale''s Pale Ale', N'12.0', N'0.065', N'65.0', 18, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1561, N'Dale''s Pale Ale', N'12.0', N'0.065', N'65.0', 18, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1562, N'Mama''s Little Yella Pils', N'19.2', N'0.053', N'35.0', 41, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1563, N'oSKAr the G''Rauch', N'19.2', N'0.085', N'N/A', 16, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1564, N'oSKAr the G''Rauch', N'16.0', N'0.085', N'N/A', 16, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1565, N'Dale''s Pale Ale', N'19.2', N'0.065', N'65.0', 18, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1566, N'The Deuce', N'16.0', N'0.07', N'N/A', 10, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1567, N'Dale''s Pale Ale (10 Year Anniversary)', N'12.0', N'0.065', N'65.0', 18, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1568, N'Dale''s Pale Ale (2012)', N'12.0', N'0.065', N'65.0', 18, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1569, N'Gordon Imperial Red (2010)', N'12.0', N'0.087', N'85.0', 12, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1570, N'Dale''s Pale Ale (2011)', N'12.0', N'0.065', N'65.0', 18, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1571, N'Dale''s Pale Ale (2010)', N'12.0', N'0.065', N'65.0', 18, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1572, N'G''KNIGHT (16 oz.)', N'16.0', N'0.087', N'85.0', 12, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1573, N'15th Anniversary Abbey Ale (2012)', N'16.0', N'0.09', N'N/A', 28, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1574, N'Chaka', N'16.0', N'0.08', N'N/A', 32, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1575, N'HGH (Home Grown Hops): Part Duh', N'12.0', N'0.08', N'70.0', 24, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1576, N'Deviant Dale''s IPA', N'16.0', N'0.08', N'N/A', 12, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1577, N'One Hit Wonder', N'12.0', N'0.09', N'60.0', 12, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1578, N'G''KNIGHT (12 oz.)', N'12.0', N'0.087', N'85.0', 12, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1579, N'Ten Fidy Imperial Stout', N'12.0', N'0.099', N'98.0', 88, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1580, N'Mama''s Little Yella Pils', N'12.0', N'0.053', N'35.0', 41, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1581, N'GUBNA Imperial IPA', N'12.0', N'0.099', N'100.0', 12, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1582, N'Old Chub', N'12.0', N'0.08', N'35.0', 93, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1583, N'Gordon Ale (2009)', N'12.0', N'0.087', N'85.0', 12, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1584, N'Dale''s Pale Ale', N'12.0', N'0.065', N'65.0', 18, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1585, N'Gordon (2005)', N'12.0', N'0.092', N'85.0', 12, 504) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1586, N'Ten Fidy Imperial Stout (2008)', N'12.0', N'0.095', N'98.0', 88, 504) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1587, N'Ten Fidy Imperial Stout (2007)', N'12.0', N'0.099', N'98.0', 88, 504) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1588, N'Old Chub (2008)', N'12.0', N'0.08', N'35.0', 93, 504) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1589, N'Old Chub (2004)', N'12.0', N'0.08', N'35.0', 93, 504) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1590, N'Old Chub (2003)', N'12.0', N'0.08', N'35.0', 93, 504) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1591, N'Dale''s Pale Ale (2008)', N'12.0', N'0.065', N'65.0', 18, 504) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1592, N'Dale''s Pale Ale (2006)', N'12.0', N'0.065', N'65.0', 18, 504) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1593, N'Dale''s Pale Ale (2004)', N'12.0', N'0.065', N'65.0', 18, 504) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1594, N'Dale''s Pale Ale (2003)', N'12.0', N'0.065', N'65.0', 18, 504) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1595, N'Dale''s Pale Ale (2002)', N'12.0', N'0.065', N'65.0', 18, 504) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1596, N'Leroy (2005)', N'12.0', N'0.052', N'N/A', 10, 504) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1597, N'Gordon Beer (2006)', N'12.0', N'0.087', N'60.0', 12, 504) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1598, N'G''KNIGHT', N'12.0', N'0.087', N'85.0', 12, 390) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1599, N'Ten Fidy', N'12.0', N'0.099', N'98.0', 88, 390) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1600, N'Deviant Dale''s IPA', N'16.0', N'0.08', N'85.0', 12, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1601, N'Old Chub', N'12.0', N'0.08', N'35.0', 93, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1602, N'Dale''s Pale Ale', N'19.2', N'0.065', N'65.0', 18, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1603, N'Dale''s Pale Ale', N'12.0', N'0.065', N'65.0', 18, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1604, N'Fresh Slice White IPA', N'12.0', N'0.055', N'45.0', 25, 276) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1605, N'Overgrown American Pale Ale', N'12.0', N'0.055', N'55.0', 18, 262) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1606, N'Ozark American Pale Ale', N'12.0', N'0.04', N'39.0', 18, 260) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1607, N'Hula Hoppie Session IPA', N'12.0', N'0.048', N'N/A', 16, 342) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1608, N'Dirty Hippie Dark Wheat', N'12.0', N'0.053', N'N/A', 11, 342) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1609, N'Rustic Red', N'16.0', N'0.052', N'23.0', 68, 442) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1610, N'Stimulator Pale Ale', N'16.0', N'0.053', N'48.0', 18, 442) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1611, N'Old Town Ale', N'16.0', N'0.045', N'22.0', 70, 442) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1612, N'Car 21', N'16.0', N'0.044', N'28.0', 47, 442) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1613, N'Cache La Porter', N'16.0', N'0.05', N'24.0', 22, 442) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1614, N'Rodeo Rye Pale Ale', N'12.0', N'0.042', N'35.0', 18, 308) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1615, N'Outlaw IPA', N'12.0', N'0.062', N'65.0', 16, 308) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1616, N'North Fork Lager', N'12.0', N'0.044', N'N/A', 19, 308) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1617, N'Payette Pale Ale', N'12.0', N'0.048', N'35.0', 18, 308) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1618, N'Mutton Buster', N'12.0', N'0.055', N'25.0', 10, 308) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1619, N'Side Kick Kölsch', N'12.0', N'0.05', N'N/A', 70, 469) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1620, N'Fresh Cut Pilsner', N'12.0', N'0.046', N'N/A', 21, 267) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1621, N'Summer Session Ale', N'12.0', N'0.05', N'61.0', 20, 267) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1622, N'Lobo Lito', N'12.0', N'0.04', N'12.0', 72, 188) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1623, N'Robert Earl Keen Honey Pils', N'12.0', N'0.05', N'17.0', 21, 188) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1624, N'Mound Builder IPA', N'12.0', N'0.065', N'77.0', 16, 206) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1625, N'Amazon Princess IPA', N'12.0', N'0.062', N'62.0', 16, 206) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1626, N'Farmer''s Daughter Wheat', N'12.0', N'0.042', N'N/A', 20, 206) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1627, N'People''s Pilsner', N'12.0', N'0.045', N'N/A', 62, 206) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1628, N'Hotbox Brown', N'12.0', N'0.055', N'10.0', 10, 14) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1629, N'Gold', N'12.0', N'0.048', N'15.0', 9, 14) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1630, N'Black', N'12.0', N'0.058', N'N/A', 8, 14) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1631, N'98 Problems (Cuz A Hop Ain''t One)', N'12.0', N'0.065', N'65.0', 16, 14) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1632, N'Veteran’s Pale Ale (VPA)', N'12.0', N'0.05', N'40.0', 18, 14) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1633, N'Grapefruit IPA', N'12.0', N'0.05', N'35.0', 16, 14) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1634, N'Pete''s ESP Lager (1998)', N'12.0', N'0.051', N'N/A', 19, 471) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1635, N'Pete''s Wicked Summer Brew (1995)', N'12.0', N'0.047', N'N/A', 20, 471) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1636, N'Pete''s Wicked Bohemian Pilsner (1997)', N'12.0', N'0.049', N'N/A', 41, 471) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1637, N'Pete''s Wicked Pale Ale (1997)', N'12.0', N'0', N'N/A', 18, 471) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1638, N'Pete''s Wicked Summer Brew (2002)', N'12.0', N'0.047', N'N/A', 20, 471) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1639, N'Pete''s Wicked Summer Brew (1997)', N'12.0', N'0.047', N'N/A', 20, 471) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1640, N'Pete''s Wicked Summer Brew (1996)', N'12.0', N'0.047', N'N/A', 20, 471) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1641, N'Sparkle', N'16.0', N'0.041', N'12.0', 19, 12) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1642, N'North 45 Amber Ale', N'16.0', N'0.059', N'25.0', 5, 12) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1643, N'Horny Monk', N'16.0', N'0.069', N'20.0', 44, 12) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1644, N'Mind''s Eye PA', N'16.0', N'0.067', N'74.0', 16, 12) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1645, N'Camelback', N'12.0', N'0.061', N'60.0', 16, 158) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1646, N'Local 5 Pale Ale', N'16.0', N'0.056', N'N/A', 18, 356) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1647, N'Devils Head Red Ale', N'16.0', N'0.073', N'N/A', 5, 356) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1648, N'Elephant Rock IPA', N'12.0', N'0.07', N'75.0', 16, 356) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1649, N'Black Bay Milk Stout', N'12.0', N'0.05', N'N/A', 77, 311) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1650, N'Atom Splitter Pale Ale', N'12.0', N'0.05', N'N/A', 18, 311) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1651, N'Hot Date Ale', N'16.0', N'0.06', N'20.0', 38, 315) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1652, N'Masked Bandit IPA', N'16.0', N'0.07', N'N/A', 8, 315) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1653, N'Sweet Potato Ale', N'16.0', N'0.06', N'24.0', 61, 315) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1654, N'Float Trip Ale', N'16.0', N'0.045', N'18.0', 9, 315) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1655, N'Old Tom Porter', N'16.0', N'0.055', N'25.0', 22, 315) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1656, N'Black Walnut Wheat', N'16.0', N'0.045', N'18.0', 11, 315) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1657, N'McKinney Eddy Amber Ale', N'16.0', N'0.055', N'20.0', 5, 315) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1658, N'Missouri Mule India Pale Ale', N'16.0', N'0.07', N'70.0', 16, 315) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1659, N'Blood of the Unicorn', N'16.0', N'0.065', N'N/A', 5, 53) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1660, N'GreyBeard™ IPA', N'12.0', N'0.069', N'51.0', 16, 325) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1661, N'Pisgah Pale Ale', N'12.0', N'0.057', N'31.0', 18, 325) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1662, N'PONTO S.I.P.A.', N'16.0', N'0.045', N'N/A', 16, 371) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1663, N'Chronic Ale', N'16.0', N'0.049', N'N/A', 5, 371) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1664, N'Swami''s India Pale Ale', N'16.0', N'0.068', N'N/A', 16, 371) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1665, N'New Cleveland Palesner', N'12.0', N'0.05', N'N/A', 21, 148) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1666, N'Mazzie', N'12.0', N'0.054', N'45.0', 18, 56) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1667, N'Big Chuck Barleywine', N'12.0', N'0.099', N'N/A', 7, 275) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1668, N'Ponderosa IPA', N'12.0', N'0', N'N/A', 16, 549) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1669, N'Liquid Amber Ale', N'12.0', N'0', N'N/A', 5, 549) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1670, N'Morning Wood Wheat (Current)', N'12.0', N'0.059', N'14.0', 20, 136) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1671, N'Hideout Helles', N'12.0', N'0.069', N'17.0', 79, 136) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1672, N'Dead Eye Dunkel', N'12.0', N'0.06', N'15.0', 78, 136) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1673, N'Peacemaker Pilsner', N'12.0', N'0.058', N'21.0', 41, 136) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1674, N'Over the Rail Pale Ale', N'12.0', N'0.057', N'68.0', 18, 136) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1675, N'Pallavicini Pilsner (2009)', N'12.0', N'0.058', N'21.0', 41, 136) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1676, N'Morning Wood Wheat (Current)', N'12.0', N'0.059', N'14.0', 20, 136) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1677, N'Pyramid Hefeweizen (2011)', N'12.0', N'0.052', N'18.0', 65, 545) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1678, N'Haywire Hefeweizen (2010)', N'16.0', N'0.052', N'18.0', 65, 545) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1679, N'Golden Fleece', N'12.0', N'0.045', N'35.0', 30, 247) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1680, N'Smoking Mirror', N'12.0', N'0.055', N'30.0', 22, 247) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1681, N'Rahr''s Blonde', N'12.0', N'0.046', N'N/A', 79, 177) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1682, N'Pride of Texas Pale Ale', N'12.0', N'0.058', N'60.0', 18, 177) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1683, N'18th Anniversary Gose', N'12.0', N'0.044', N'5.0', 63, 129) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1684, N'White (2015)', N'12.0', N'0.046', N'25.0', 100, 129) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1685, N'BLAKKR', N'12.0', N'0.099', N'85.0', 8, 129) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1686, N'Firemans #4 Blonde Ale (2013)', N'12.0', N'0.051', N'21.0', 9, 129) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1687, N'The Sword Iron Swan Ale', N'12.0', N'0.059', N'N/A', 51, 129) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1688, N'Hans'' Pils (2015)', N'12.0', N'0.053', N'52.0', 62, 129) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1689, N'Four Squared (2015)', N'12.0', N'0.06', N'50.0', 9, 129) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1690, N'Firemans #4 Blonde Ale (2015)', N'12.0', N'0.051', N'21.0', 9, 129) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1691, N'Watership Brown Ale', N'12.0', N'0.072', N'55.0', 10, 476) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1692, N'Gangway IPA', N'12.0', N'0.062', N'55.0', 16, 476) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1693, N'Long Day Lager', N'12.0', N'0.049', N'N/A', 41, 476) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1694, N'Farmer''s Daughter Blonde', N'16.0', N'0.051', N'17.0', 9, 69) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1695, N'Pump House IPA', N'16.0', N'0.055', N'45.0', 16, 69) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1696, N'Suicide Blonde IPA', N'16.0', N'0.07', N'N/A', 29, 69) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1697, N'Vanilla Porter', N'16.0', N'0.047', N'25.0', 22, 40) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1698, N'Honey Rye', N'16.0', N'0.058', N'18.0', 89, 69) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1699, N'Happy Cider', N'16.0', N'0.055', N'N/A', 39, 404) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1700, N'Long Hammer IPA', N'16.0', N'0.065', N'44.0', 16, 488) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1701, N'Long Hammer IPA', N'12.0', N'0.065', N'44.0', 16, 488) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1702, N'Copper Hook (2011)', N'12.0', N'0.058', N'27.0', 5, 488) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1703, N'Nectar of the Hops', N'16.0', N'0.08', N'N/A', 76, 422) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1704, N'Sunshine Nectar', N'16.0', N'0.08', N'N/A', 76, 422) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1705, N'Black Raspberry Nectar', N'16.0', N'0.08', N'N/A', 76, 422) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1706, N'Blood Orange Wit', N'16.0', N'0.05', N'16.0', 100, 226) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1707, N'Consilium', N'12.0', N'0.05', N'40.0', 18, 111) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1708, N'Hammer & Sickle', N'12.0', N'0.09', N'60.0', 88, 111) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1709, N'Redacted Rye IPA', N'16.0', N'0.07', N'100.0', 16, 111) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1710, N'Elevation Triple India Pale Ale', N'12.0', N'0.099', N'100.0', 12, 111) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1711, N'5:00 O''Clock Afternoon Ale', N'16.0', N'0.05', N'25.0', 9, 111) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1712, N'Ryeteous Rye IPA (2012)', N'16.0', N'0.07', N'100.0', 16, 111) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1713, N'Stout Ol'' Friend', N'16.0', N'0.064', N'N/A', 23, 387) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1714, N'Stout Ol'' Friend (2012)', N'16.0', N'0.064', N'N/A', 23, 387) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1715, N'Rye Porter', N'16.0', N'0', N'N/A', 22, 11) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1716, N'Miner''s Gold', N'16.0', N'0.05', N'N/A', 9, 387) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1717, N'Vienna Lager', N'16.0', N'0.046', N'N/A', 97, 387) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1718, N'Jessie''s Garage', N'16.0', N'0.056', N'N/A', 18, 387) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1719, N'Colorado Red Ale', N'12.0', N'0.062', N'N/A', 5, 295) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1720, N'Miner''s Gold', N'12.0', N'0', N'N/A', 9, 387) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1721, N'Fist City', N'12.0', N'0.055', N'40.0', 18, 45) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1722, N'A Little Crazy', N'12.0', N'0.068', N'N/A', 30, 45) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1723, N'Rosa Hibiscus Ale', N'12.0', N'0.058', N'15.0', 66, 45) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1724, N'Fistmas Ale', N'12.0', N'0.061', N'31.0', 66, 45) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1725, N'Oktoberfest Revolution', N'12.0', N'0.057', N'25.0', 75, 45) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1726, N'Eugene Porter', N'12.0', N'0.068', N'28.0', 22, 45) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1727, N'Anti-Hero IPA', N'12.0', N'0.065', N'70.0', 16, 45) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1728, N'Bottom Up Belgian Wit', N'12.0', N'0.05', N'14.0', 100, 45) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1729, N'Hustle', N'12.0', N'0.057', N'42.0', 5, 94) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1730, N'Pure Fury', N'12.0', N'0.055', N'42.0', 18, 94) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1731, N'Dad', N'12.0', N'0.06', N'60.0', 5, 94) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1732, N'Panther', N'12.0', N'0.058', N'35.0', 22, 94) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1733, N'Franz', N'12.0', N'0.052', N'21.0', 75, 94) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1734, N'Zen', N'12.0', N'0.043', N'45.0', 18, 94) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1735, N'Truth', N'12.0', N'0.072', N'75.0', 16, 94) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1736, N'Cougar', N'12.0', N'0.048', N'25.0', 9, 94) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1737, N'Smooth Operator', N'16.0', N'0.038', N'N/A', 40, 163) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1738, N'Gose', N'16.0', N'0.035', N'N/A', 63, 42) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1739, N'Maine Island Trail Ale', N'16.0', N'0.043', N'N/A', 18, 43) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1740, N'River North White Ale', N'16.0', N'0.05', N'N/A', 100, 460) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1741, N'River North Ale', N'16.0', N'0.05', N'N/A', 5, 460) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1742, N'Lil SIPA', N'16.0', N'0.05', N'55.0', 16, 322) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1743, N'Hop Bomber Rye Pale Ale', N'16.0', N'0.055', N'60.0', 18, 322) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1744, N'Jah Mon', N'12.0', N'0.05', N'100.0', 16, 44) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1745, N'Oktoberfest', N'12.0', N'0.062', N'N/A', 75, 227) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1746, N'Headless Wylie', N'12.0', N'0.08', N'N/A', 83, 44) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1747, N'Dayman IPA', N'12.0', N'0.05', N'N/A', 16, 44) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1748, N'All Aboard! Anniversary Stout', N'12.0', N'0.071', N'N/A', 80, 44) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1749, N'Hop Lace', N'12.0', N'0.062', N'N/A', 25, 44) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1750, N'OH-PA Session Pale Ale', N'12.0', N'0.048', N'N/A', 18, 44) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1751, N'Patrick''s Poison', N'12.0', N'0.08', N'N/A', 5, 44) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1752, N'Rudolph''s Red', N'12.0', N'0.081', N'N/A', 5, 44) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1753, N'Babbling Blonde', N'12.0', N'0.053', N'N/A', 9, 44) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1754, N'Maxwell''s Scottish Ale', N'12.0', N'0.051', N'N/A', 93, 44) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1755, N'Grateful White', N'12.0', N'0.061', N'N/A', 100, 44) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1756, N'RT Lager', N'12.0', N'0.055', N'N/A', 6, 44) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1757, N'Old Wylie''s IPA', N'12.0', N'0.062', N'N/A', 16, 44) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1758, N'Hala Kahiki Pineapple Beer', N'12.0', N'0.048', N'N/A', 61, 44) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1759, N'Track 1 Amber Lager', N'16.0', N'0.045', N'N/A', 6, 428) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1760, N'Pine Knob Pilsner', N'16.0', N'0.053', N'N/A', 41, 230) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1761, N'Cal and Co. Black Cherry Porter', N'16.0', N'0', N'N/A', 22, 230) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1762, N'Lazy Daze Lager', N'16.0', N'0.055', N'N/A', 4, 230) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1763, N'Rochester Red Ale', N'16.0', N'0.059', N'N/A', 5, 230) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1764, N'Milkshake Stout', N'16.0', N'0.05', N'N/A', 77, 230) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1765, N'Cornerstone IPA', N'16.0', N'0.07', N'N/A', 16, 230) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1766, N'Lazy Daze Lager', N'12.0', N'0.055', N'N/A', 4, 230) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1767, N'Rogue American Amber Ale', N'16.0', N'0.051', N'N/A', 5, 290) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1768, N'12th Round', N'16.0', N'0.076', N'78.0', 24, 377) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1769, N'RoughTail IPA', N'16.0', N'0.07', N'80.0', 16, 377) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1770, N'Polar Night Stout', N'16.0', N'0.08', N'N/A', 23, 377) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1771, N'Sundown', N'12.0', N'0.071', N'36.0', 90, 165) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1772, N'Sanctified', N'12.0', N'0.099', N'N/A', 32, 165) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1773, N'Fear of a Brett Planet', N'12.0', N'0.051', N'N/A', 18, 165) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1774, N'Original Slacker Ale', N'12.0', N'0.056', N'40.0', 48, 165) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1775, N'Alpha Blackback', N'12.0', N'0.072', N'N/A', 8, 165) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1776, N'Kiss Off IPA', N'12.0', N'0.063', N'N/A', 16, 165) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1777, N'Dog Days Summer Ale', N'12.0', N'0.045', N'28.0', 70, 165) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1778, N'1881 California Red', N'12.0', N'0.056', N'35.0', 5, 398) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1779, N'CAPT Black IPA', N'12.0', N'0.073', N'55.0', 8, 398) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1780, N'Ruhstaller''s Gilt Edge Lager Beer', N'12.0', N'0.048', N'42.0', 6, 398) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1781, N'CAPT Black IPA', N'16.0', N'0.073', N'55.0', 8, 398) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1782, N'1881 California Red Ale', N'16.0', N'0.056', N'35.0', 5, 398) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1783, N'Saint Archer White Ale', N'12.0', N'0.05', N'15.0', 100, 289) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1784, N'Saint Archer IPA', N'12.0', N'0.068', N'66.0', 16, 289) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1785, N'Saint Archer Pale Ale', N'12.0', N'0.052', N'40.0', 18, 289) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1786, N'Saint Archer Blonde', N'12.0', N'0.048', N'22.0', 70, 289) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1787, N'Sex Panther', N'12.0', N'0.069', N'20.0', 22, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1788, N'Winter Warmer (Vault Series)', N'16.0', N'0.095', N'25.0', 99, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1789, N'Count Hopula (Vault Series)', N'16.0', N'0.091', N'99.0', 12, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1790, N'Oktoberfest', N'12.0', N'0.055', N'N/A', 75, 227) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1791, N'SunSpot Golden Ale', N'12.0', N'0.05', N'15.0', 9, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1792, N'I.W.A. (2011)', N'12.0', N'0.06', N'N/A', 20, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1793, N'Supermonk I.P.A.', N'12.0', N'0.065', N'N/A', 29, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1794, N'Epicenter Amber Ale', N'12.0', N'0.055', N'20.0', 5, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1795, N'SanTan HefeWeizen', N'12.0', N'0.05', N'15.0', 65, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1796, N'Hop Shock IPA', N'12.0', N'0.07', N'85.0', 16, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1797, N'Sex Panther (2014)', N'12.0', N'0.069', N'20.0', 22, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1798, N'Devil’s Ale', N'12.0', N'0.055', N'45.0', 18, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1799, N'Rail Slide Imperial Spiced Ale', N'12.0', N'0.081', N'N/A', 66, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1800, N'Mr. Pineapple', N'12.0', N'0.05', N'20.0', 61, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1801, N'American Idiot Ale (2012)', N'12.0', N'0.055', N'45.0', 18, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1802, N'Hop Shock IPA (2010)', N'12.0', N'0.07', N'85.0', 16, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1803, N'SanTan HefeWeizen (2010)', N'12.0', N'0.05', N'15.0', 65, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1804, N'Devil’s Ale (2010)', N'12.0', N'0.055', N'45.0', 18, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1805, N'Epicenter Amber Ale (2010)', N'12.0', N'0.055', N'20.0', 5, 31) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1806, N'Sanitas Saison Ale', N'12.0', N'0.058', N'20.0', 90, 420) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1807, N'Sanitas Black IPA', N'12.0', N'0.068', N'65.0', 8, 420) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1808, N'Giant DIPA', N'16.0', N'0.089', N'88.0', 12, 253) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1809, N'Dread Brown Ale', N'12.0', N'0.054', N'N/A', 10, 253) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1810, N'Casinos IPA', N'16.0', N'0.07', N'N/A', 50, 253) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1811, N'Saison 88', N'12.0', N'0.055', N'30.0', 90, 393) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1812, N'Black IPA', N'12.0', N'0.071', N'95.0', 8, 393) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1813, N'Santa Fe Irish Red Ale', N'12.0', N'0.045', N'N/A', 68, 393) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1814, N'Santa Fe Oktoberfest', N'12.0', N'0', N'N/A', 75, 393) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1815, N'Imperial Java Stout', N'12.0', N'0.08', N'N/A', 88, 393) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1816, N'Freestyle Pilsner', N'12.0', N'0.055', N'N/A', 62, 393) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1817, N'Happy Camper IPA', N'12.0', N'0.066', N'N/A', 16, 393) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1818, N'Oval Beach Blonde Ale', N'16.0', N'0.05', N'11.0', 9, 399) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1819, N'Oak Aged Cider', N'12.0', N'0.065', N'N/A', 39, 395) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1820, N'Ginger Cider', N'12.0', N'0.065', N'N/A', 39, 395) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1821, N'Schilling Hard Cider', N'12.0', N'0.065', N'N/A', 39, 395) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1822, N'Schlafly Yakima Wheat Ale', N'12.0', N'0.05', N'45.0', 20, 429) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1823, N'Schlafly Black Lager', N'12.0', N'0.05', N'N/A', 91, 429) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1824, N'Schlafly IPA', N'12.0', N'0.045', N'30.0', 16, 429) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1825, N'Schlafly American Brown Ale', N'12.0', N'0.05', N'30.0', 10, 429) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1826, N'Schlafly Hefeweizen', N'12.0', N'0.041', N'16.0', 65, 429) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1827, N'Schlafly Summer Lager', N'12.0', N'0.045', N'17.0', 79, 429) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1828, N'Sea Dog Wild Blueberry Wheat Ale', N'12.0', N'0.047', N'N/A', 61, 503) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1829, N'Blur India Pale Ale', N'12.0', N'0.074', N'60.0', 16, 433) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1830, N'Dry Cider', N'16.0', N'0.065', N'N/A', 39, 412) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1831, N'Dry Hard Cider', N'16.0', N'0.065', N'N/A', 39, 412) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1832, N'Frankenlou''s IPA', N'16.0', N'0.07', N'105.0', 16, 495) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1833, N'Becky''s Black Cat Porter', N'16.0', N'0.07', N'55.0', 22, 495) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1834, N'Seventh Son of a Seventh Son', N'16.0', N'0.077', N'40.0', 24, 184) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1835, N'Stone Fort Brown Ale', N'16.0', N'0.053', N'20.0', 48, 184) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1836, N'Seventh Son Hopped Red Ale', N'16.0', N'0.077', N'40.0', 5, 184) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1837, N'Humulus Nimbus Super Pale Ale', N'16.0', N'0.06', N'53.0', 18, 184) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1838, N'Golden Ratio IPA', N'16.0', N'0.07', N'68.0', 16, 184) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1839, N'Black Hop IPA', N'12.0', N'0.068', N'N/A', 8, 131) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1840, N'Archer''s Ale (2004)', N'12.0', N'0.05', N'N/A', 51, 512) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1841, N'Monkey Fist IPA', N'12.0', N'0.069', N'65.0', 16, 386) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1842, N'Shipyard Summer Ale', N'12.0', N'0.051', N'N/A', 20, 386) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1843, N'Pumpkinhead Ale', N'12.0', N'0.047', N'N/A', 83, 386) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1844, N'Shipyard Export', N'12.0', N'0.051', N'N/A', 9, 386) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1845, N'Nooner', N'12.0', N'0.052', N'N/A', 62, 84) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1846, N'Torpedo', N'12.0', N'0.072', N'65.0', 16, 84) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1847, N'Yonder Bock', N'12.0', N'0.06', N'N/A', 74, 84) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1848, N'CANfusion Rye Bock', N'12.0', N'0.06', N'N/A', 89, 84) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1849, N'Sierra Nevada Pale Ale', N'16.0', N'0.056', N'37.0', 18, 84) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1850, N'Old Chico Crystal Wheat', N'12.0', N'0.048', N'26.0', 20, 84) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1851, N'Summerfest', N'12.0', N'0.05', N'28.0', 41, 84) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1852, N'Torpedo', N'16.0', N'0.072', N'65.0', 16, 84) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1853, N'Sierra Nevada Pale Ale', N'12.0', N'0.056', N'37.0', 18, 84) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1854, N'Sietsema Red Label', N'16.0', N'0.069', N'N/A', 39, 138) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1855, N'Bear Ass Brown', N'12.0', N'0.042', N'N/A', 10, 552) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1856, N'Red Mountain Ale', N'12.0', N'0.06', N'N/A', 5, 552) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1857, N'Ice Pick Ale', N'12.0', N'0.068', N'N/A', 16, 552) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1858, N'4Beans', N'12.0', N'0.1', N'52.0', 27, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1859, N'Jammer', N'12.0', N'0.042', N'16.0', 63, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1860, N'Abigale', N'12.0', N'0.08', N'N/A', 30, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1861, N'Rad', N'16.0', N'0.032', N'7.0', 61, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1862, N'Bengali', N'24.0', N'0.065', N'62.0', 16, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1863, N'Sensi Harvest', N'12.0', N'0.047', N'50.0', 18, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1864, N'Hi-Res', N'12.0', N'0.099', N'111.0', 12, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1865, N'Global Warmer', N'12.0', N'0.07', N'70.0', 24, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1866, N'Autumnation (2013)', N'16.0', N'0.067', N'74.0', 16, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1867, N'The Crisp', N'16.0', N'0.054', N'42.0', 62, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1868, N'Sweet Action', N'16.0', N'0.052', N'34.0', 40, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1869, N'Righteous Ale', N'16.0', N'0.063', N'57.0', 89, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1870, N'Bengali Tiger', N'16.0', N'0.064', N'62.0', 16, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1871, N'3Beans', N'12.0', N'0.099', N'85.0', 27, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1872, N'Brownstone', N'16.0', N'0.059', N'47.0', 10, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1873, N'Apollo', N'16.0', N'0.052', N'11.0', 20, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1874, N'Harbinger', N'16.0', N'0.049', N'35.0', 90, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1875, N'Resin', N'12.0', N'0.091', N'103.0', 12, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1876, N'Diesel', N'16.0', N'0.063', N'69.0', 23, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1877, N'Autumnation (2011-12) (2011)', N'16.0', N'0.06', N'48.0', 83, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1878, N'The Crisp (2011)', N'16.0', N'0.054', N'42.0', 62, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1879, N'Sweet Action (2011)', N'16.0', N'0.052', N'34.0', 40, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1880, N'Righteous Ale (2011)', N'16.0', N'0.063', N'57.0', 89, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1881, N'Bengali Tiger (2011)', N'16.0', N'0.064', N'62.0', 16, 47) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1882, N'Rudie Session IPA', N'12.0', N'0.045', N'N/A', 16, 265) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1883, N'Taster''s Choice', N'12.0', N'0.074', N'N/A', 42, 265) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1884, N'Modus Hoperandi', N'12.0', N'0.068', N'65.0', 16, 265) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1885, N'Estival Cream Stout', N'12.0', N'0.058', N'15.0', 23, 265) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1886, N'Vernal Minthe Stout', N'12.0', N'0.058', N'N/A', 23, 265) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1887, N'Hibernal Vinifera Stout', N'12.0', N'0.08', N'N/A', 60, 265) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1888, N'Autumnal Molé Stout', N'12.0', N'0', N'N/A', 23, 265) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1889, N'Mexican Logger', N'12.0', N'0.042', N'18.0', 19, 265) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1890, N'True Blonde Ale', N'12.0', N'0.053', N'N/A', 9, 265) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1891, N'Euphoria Pale Ale', N'12.0', N'0.061', N'N/A', 18, 265) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1892, N'ESB Special Ale', N'12.0', N'0.057', N'58.0', 57, 265) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1893, N'Modus Hoperandi', N'12.0', N'0.068', N'65.0', 16, 265) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1894, N'Iron Butt Red Ale', N'12.0', N'0.058', N'39.0', 5, 314) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1895, N'Initial Point India Pale Ale', N'12.0', N'0.071', N'92.0', 16, 314) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1896, N'Monkey Dancing On A Razor Blade', N'24.0', N'0.085', N'N/A', 29, 65) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1897, N'Tripel Deke', N'24.0', N'0.082', N'N/A', 96, 65) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1898, N'Urban Wilderness Pale Ale', N'12.0', N'0.049', N'N/A', 51, 558) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1899, N'Homefront IPA', N'12.0', N'0.06', N'70.0', 16, 164) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1900, N'Sly Fox Christmas Ale 2013', N'12.0', N'0.055', N'16.0', 99, 372) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1901, N'Grisette', N'12.0', N'0.056', N'25.0', 64, 372) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1902, N'360° India Pale Ale', N'12.0', N'0.062', N'N/A', 16, 372) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1903, N'Helles Golden Lager', N'12.0', N'0.049', N'18.0', 79, 372) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1904, N'Sly Fox Christmas Ale 2012 (2012)', N'12.0', N'0.055', N'16.0', 99, 372) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1905, N'Odyssey Imperial IPA', N'12.0', N'0.084', N'90.0', 12, 372) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1906, N'Oktoberfest Lager', N'12.0', N'0.058', N'25.0', 75, 372) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1907, N'113 IPA', N'12.0', N'0.07', N'113.0', 16, 372) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1908, N'Dunkel Lager', N'12.0', N'0.053', N'21.0', 78, 372) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1909, N'Royal Weisse Ale', N'12.0', N'0.056', N'11.0', 65, 372) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1910, N'Pikeland Pils', N'12.0', N'0.049', N'44.0', 62, 372) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1911, N'Phoenix Pale Ale', N'12.0', N'0.051', N'40.0', 18, 372) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1912, N'Rule G IPA', N'12.0', N'0.07', N'88.0', 16, 116) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1913, N'Murphy''s Law', N'12.0', N'0.058', N'35.0', 5, 116) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1914, N'Alter Ego ', N'12.0', N'0.062', N'33.0', 90, 61) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1915, N'Monarch Pilsner', N'12.0', N'0.05', N'N/A', 21, 192) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1916, N'Snow King Pale Ale', N'12.0', N'0.06', N'55.0', 18, 192) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1917, N'Zonker Stout', N'12.0', N'0.054', N'36.0', 60, 192) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1918, N'OB-1 Organic Ale', N'12.0', N'0.05', N'22.0', 48, 192) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1919, N'Snake River Lager', N'12.0', N'0.05', N'18.0', 97, 192) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1920, N'Snake River Pale Ale', N'12.0', N'0.052', N'32.0', 18, 192) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1921, N'Pako’s EyePA', N'12.0', N'0.068', N'60.0', 16, 192) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1922, N'Thanksgiving Ale', N'12.0', N'0.05', N'N/A', 70, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1923, N'Double Dagger Imperial IPA', N'12.0', N'0.092', N'N/A', 12, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1924, N'Dagger Falls IPA', N'12.0', N'0.063', N'100.0', 16, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1925, N'Dagger Falls IPA', N'12.0', N'0.063', N'100.0', 16, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1926, N'Socktoberfest', N'16.0', N'0.06', N'N/A', 75, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1927, N'Hopnoxious Imperial IPA', N'12.0', N'0.079', N'N/A', 12, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1928, N'Barrel Aged Seven Devils Imperial Stout', N'12.0', N'0.099', N'N/A', 14, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1929, N'Boise Co-Op Two Score Ale', N'16.0', N'0.055', N'N/A', 90, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1930, N'Sockeye Belgian Style Summer Ale', N'16.0', N'0.05', N'N/A', 100, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1931, N'Sockeye Maibock', N'12.0', N'0.064', N'N/A', 74, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1932, N'Old Devil''s Tooth', N'12.0', N'0.099', N'100.0', 7, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1933, N'Galena Golden', N'12.0', N'0.043', N'N/A', 9, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1934, N'Hell-Diver Pale Ale', N'12.0', N'0.052', N'32.0', 18, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1935, N'Woolybugger Wheat', N'12.0', N'0.046', N'12.0', 20, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1936, N'Power House Porter', N'12.0', N'0.057', N'N/A', 22, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1937, N'Winterfest', N'16.0', N'0.084', N'90.0', 24, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1938, N'Dagger Falls IPA', N'12.0', N'0.063', N'100.0', 16, 310) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1939, N'LuckenBock', N'16.0', N'0.07', N'18.0', 35, 258) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1940, N'Texas Pale Ale (TPA)', N'16.0', N'0.055', N'40.0', 16, 258) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1941, N'6 String Saison', N'16.0', N'0.08', N'N/A', 90, 258) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1942, N'Kol'' Beer', N'16.0', N'0.05', N'22.0', 70, 258) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1943, N'Montauk Light', N'12.0', N'0.035', N'N/A', 72, 250) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1944, N'Na Zdraví Pilsner', N'16.0', N'0.048', N'32.0', 41, 437) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1945, N'Nice Rack IPA', N'16.0', N'0.055', N'65.0', 16, 437) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1946, N'2014 IPA Cicada Series', N'16.0', N'0.075', N'72.0', 16, 134) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1947, N'Sinister Minister Black IPA', N'16.0', N'0.077', N'65.0', 16, 134) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1948, N'Jack the Sipper', N'12.0', N'0.053', N'45.0', 57, 134) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1949, N'Devil''s Harvest Extra Pale Ale', N'12.0', N'0.058', N'60.0', 18, 134) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1950, N'Suzy B Dirty Blonde Ale', N'12.0', N'0.05', N'20.0', 9, 134) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1951, N'Mississippi Fire Ant', N'16.0', N'0.08', N'80.0', 5, 134) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1952, N'Hipster Breakfast', N'16.0', N'0.058', N'40.0', 80, 134) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1953, N'Suzy B Dirty Blonde Ale', N'16.0', N'0.05', N'20.0', 9, 134) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1954, N'Devil''s Harvest Extra Pale Ale', N'16.0', N'0.058', N'60.0', 18, 134) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1955, N'Pine Belt Pale Ale', N'12.0', N'0.065', N'45.0', 18, 119) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1956, N'Walloon', N'12.0', N'0.055', N'N/A', 90, 119) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1957, N'Le Mort Vivant', N'12.0', N'0.069', N'23.0', 34, 119) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1958, N'Red Cockaded Ale', N'12.0', N'0.085', N'110.0', 12, 119) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1959, N'Valkyrie Double IPA', N'12.0', N'0.092', N'100.0', 12, 119) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1960, N'Red Cockaded Ale (2013)', N'12.0', N'0.085', N'110.0', 12, 119) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1961, N'Old Potentate', N'12.0', N'0.072', N'40.0', 81, 119) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1962, N'Bombshell Blonde', N'16.0', N'0.05', N'20.0', 9, 119) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1963, N'PRO-AM (2012) (2012)', N'12.0', N'0.099', N'100.0', 12, 119) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1964, N'Walloon (2014)', N'12.0', N'0.055', N'N/A', 90, 119) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1965, N'Le Mort Vivant (2011)', N'12.0', N'0.069', N'23.0', 34, 119) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1966, N'Buried Hatchet Stout', N'12.0', N'0.083', N'50.0', 60, 119) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1967, N'Pine Belt Pale Ale', N'16.0', N'0.065', N'45.0', 18, 119) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1968, N'Bombshell Blonde', N'12.0', N'0.05', N'20.0', 9, 119) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1969, N'Baby Daddy Session IPA', N'12.0', N'0.047', N'35.0', 16, 79) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1970, N'Hopluia (2004)', N'16.0', N'0', N'N/A', 50, 509) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1971, N'Ball & Chain (2014)', N'16.0', N'0.058', N'N/A', 18, 176) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1972, N'Bitter Biker Double IPA', N'16.0', N'0.096', N'N/A', 12, 176) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1973, N'God Damn Pigeon Porter', N'16.0', N'0.082', N'N/A', 22, 176) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1974, N'Working for the Weekend', N'16.0', N'0.079', N'N/A', 12, 176) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1975, N'Angry Adam', N'16.0', N'0.06', N'N/A', 5, 176) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1976, N'Freedom Fries', N'16.0', N'0.055', N'N/A', 23, 176) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1977, N'Bitter Biker Double IPA', N'12.0', N'0.096', N'N/A', 12, 176) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1978, N'Ghost Bike Pale Ale', N'16.0', N'0.073', N'N/A', 18, 176) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1979, N'Spiteful IPA', N'12.0', N'0.062', N'N/A', 16, 176) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1980, N'Alley Time', N'12.0', N'0.06', N'N/A', 18, 176) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1981, N'Fat Badger', N'12.0', N'0.058', N'N/A', 68, 176) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1982, N'In the Weeds', N'12.0', N'0.055', N'N/A', 20, 176) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1983, N'Special Amber', N'12.0', N'0.05', N'22.0', 97, 499) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1984, N'Special Amber', N'12.0', N'0.05', N'22.0', 97, 499) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1985, N'Seven Gates Pale Ale', N'12.0', N'0.056', N'N/A', 18, 373) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1986, N'Gunga Din', N'16.0', N'0.052', N'N/A', 39, 187) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1987, N'Starr Pils', N'12.0', N'0.042', N'20.0', 62, 384) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1988, N'Northern Lights India Pale Ale', N'16.0', N'0.065', N'52.0', 16, 384) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1989, N'Festie', N'12.0', N'0.048', N'12.0', 75, 384) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1990, N'Northern Lights India Pale Ale', N'12.0', N'0.065', N'52.0', 16, 384) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1991, N'Third Eye Enlightened Pale Ale', N'12.0', N'0.065', N'65.0', 18, 120) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1992, N'Colorado Kölsch', N'12.0', N'0.049', N'17.0', 70, 120) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1993, N'Steam Engine Lager', N'12.0', N'0.057', N'25.0', 6, 120) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1994, N'Third Eye Pale Ale', N'12.0', N'0.065', N'65.0', 16, 120) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1995, N'Point Special (Current)', N'12.0', N'0.047', N'9.0', 4, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1996, N'Point Special', N'12.0', N'0.047', N'9.0', 4, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1997, N'Point Cascade Pale Ale (2013)', N'12.0', N'0.054', N'33.0', 18, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1998, N'Point Special', N'12.0', N'0.047', N'9.0', 4, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (1999, N'Onyx Black Ale', N'12.0', N'0.052', N'9.0', 8, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2000, N'Beyond The Pale IPA', N'12.0', N'0.063', N'64.0', 16, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2001, N'Point Special (2013)', N'12.0', N'0.047', N'9.0', 4, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2002, N'Point Special (2012)', N'12.0', N'0.047', N'9.0', 4, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2003, N'Point Special Lager', N'16.0', N'0.047', N'9.0', 4, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2004, N'St. Benedict''s Winter Ale', N'12.0', N'0.062', N'N/A', 99, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2005, N'Point Oktoberfest', N'16.0', N'0.057', N'15.0', 75, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2006, N'Point Nude Beach Summer Wheat', N'16.0', N'0.052', N'7.0', 20, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2007, N'Point Nude Beach Summer Wheat', N'12.0', N'0.05', N'7.0', 20, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2008, N'Point Nude Beach Summer Wheat (2011)', N'12.0', N'0.05', N'7.0', 20, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2009, N'Drop Dead Blonde', N'12.0', N'0.035', N'N/A', 9, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2010, N'Three Kings Ale', N'12.0', N'0.049', N'13.0', 70, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2011, N'Point Oktoberfest', N'12.0', N'0.057', N'15.0', 75, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2012, N'2012 Black Ale', N'12.0', N'0.054', N'32.0', 10, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2013, N'Point Nude Beach Summer Wheat (2010)', N'12.0', N'0.05', N'7.0', 20, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2014, N'Point Cascade Pale Ale', N'12.0', N'0.054', N'33.0', 18, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2015, N'Point Amber Classic', N'12.0', N'0.047', N'14.0', 6, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2016, N'Point Special Lager', N'12.0', N'0.047', N'9.0', 4, 132) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2017, N'Wisco Disco', N'16.0', N'0.051', N'31.0', 5, 487) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2018, N'Brontide', N'12.0', N'0.05', N'N/A', 8, 256) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2019, N'Brontide', N'12.0', N'0.05', N'N/A', 8, 256) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2020, N'Classique', N'12.0', N'0.045', N'N/A', 90, 256) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2021, N'Sunsplash Golden Ale (2004)', N'12.0', N'0.045', N'N/A', 9, 493) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2022, N'Sand Island Lighthouse', N'12.0', N'0.051', N'25.0', 70, 413) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2023, N'Lily Flagg Milk Stout', N'12.0', N'0.05', N'30.0', 77, 413) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2024, N'Monkeynaut IPA', N'12.0', N'0.072', N'70.0', 16, 413) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2025, N'Straub Beer (Current)', N'12.0', N'0.05', N'N/A', 4, 130) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2026, N'American Lager', N'12.0', N'0.041', N'8.0', 4, 130) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2027, N'American Amber', N'12.0', N'0.041', N'8.0', 6, 130) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2028, N'American Light', N'12.0', N'0.032', N'13.0', 72, 130) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2029, N'Extra Pale Ale', N'12.0', N'0.053', N'49.0', 18, 139) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2030, N'Make It So', N'12.0', N'0.053', N'40.0', 57, 59) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2031, N'Hopvale Organic Ale', N'16.0', N'0.047', N'55.0', 18, 59) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2032, N'Unchained #18 Hop Silo', N'16.0', N'0.083', N'100.0', 12, 59) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2033, N'Tip Off', N'16.0', N'0.052', N'29.0', 3, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2034, N'Java Mac', N'16.0', N'0.054', N'N/A', 93, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2035, N'Cowbell', N'16.0', N'0.054', N'23.0', 22, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2036, N'Hop Up Offa That Brett (2014)', N'16.0', N'0.058', N'20.0', 30, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2037, N'PV Muckle (2013)', N'16.0', N'0.083', N'23.0', 92, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2038, N'Bourbon Barrel Batch 666: Sympathy for the Devil', N'16.0', N'0.099', N'36.0', 28, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2039, N'Whip Fight', N'16.0', N'0.09', N'30.0', 92, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2040, N'Port Barrel Wee Mac ', N'16.0', N'0.053', N'23.0', 92, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2041, N'Fistful Of Hops Red', N'16.0', N'0.064', N'75.0', 16, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2042, N'Fistful of Hops Orange', N'16.0', N'0.063', N'75.0', 16, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2043, N'Fistful Of Hops Blue', N'16.0', N'0.064', N'75.0', 16, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2044, N'Fistful of Hops Green', N'16.0', N'0.064', N'75.0', 16, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2045, N'30 Min Coma', N'16.0', N'0', N'N/A', 29, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2046, N'Wee Muckle', N'16.0', N'0.09', N'30.0', 92, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2047, N'Royal Brat', N'16.0', N'0.065', N'55.0', 57, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2048, N'Grapefruit Jungle (GFJ)', N'16.0', N'0.075', N'77.0', 16, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2049, N'Osiris Pale Ale', N'16.0', N'0.056', N'50.0', 18, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2050, N'Bourbon Barrel Aged Timmie', N'16.0', N'0.099', N'75.0', 88, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2051, N'Stupid Sexy Flanders', N'16.0', N'0.063', N'23.0', 58, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2052, N'Bourbon Barrel Cowbell', N'16.0', N'0', N'N/A', 22, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2053, N'Popcorn Pilsner', N'16.0', N'0.054', N'N/A', 62, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2054, N'Ring of Dingle', N'16.0', N'0.071', N'27.0', 67, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2055, N'Bourbon Barrel Wee Mac', N'16.0', N'0.054', N'23.0', 93, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2056, N'Bourbon Barrel Johan', N'16.0', N'0.099', N'60.0', 46, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2057, N'The Deuce', N'16.0', N'0.07', N'N/A', 10, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2058, N'The Velvet Fog', N'16.0', N'0.09', N'24.0', 84, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2059, N'Sun King Oktoberfest', N'16.0', N'0.055', N'23.0', 75, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2060, N'Indianapolis Indians Lager', N'16.0', N'0.052', N'24.0', 43, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2061, N'Indians Victory Lager (2012)', N'16.0', N'0.052', N'24.0', 43, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2062, N'Chaka', N'16.0', N'0.08', N'N/A', 32, 167) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2063, N'Isis', N'16.0', N'0.091', N'91.0', 12, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2064, N'Wee Muckle (2011)', N'16.0', N'0.09', N'30.0', 92, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2065, N'Grapefruit Jungle (GFJ) (2011)', N'16.0', N'0.075', N'77.0', 16, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2066, N'Sun King Oktoberfest (2011)', N'16.0', N'0.055', N'23.0', 75, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2067, N'Johan the Barleywine', N'16.0', N'0.099', N'60.0', 46, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2068, N'Wee Mac Scottish-Style Ale', N'16.0', N'0.054', N'23.0', 93, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2069, N'Sunlight Cream Ale', N'16.0', N'0.053', N'20.0', 40, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2070, N'Osiris Pale Ale (2010)', N'16.0', N'0.056', N'50.0', 18, 26) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2071, N'Dam Lager', N'12.0', N'0.045', N'N/A', 6, 456) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2072, N'Red Clay IPA', N'12.0', N'0.07', N'N/A', 16, 456) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2073, N'Todd the Axe Man', N'16.0', N'0.072', N'N/A', 16, 62) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2074, N'Doomtree', N'16.0', N'0.057', N'N/A', 57, 62) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2075, N'BLAKKR', N'16.0', N'0.099', N'85.0', 8, 129) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2076, N'Overrated! West Coast Style IPA', N'16.0', N'0.073', N'69.0', 16, 62) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2077, N'WET', N'16.0', N'0.075', N'90.0', 16, 62) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2078, N'Bitter Brewer', N'16.0', N'0.04', N'37.0', 47, 62) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2079, N'SurlyFest', N'16.0', N'0.055', N'34.0', 89, 62) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2080, N'Coffee Bender', N'16.0', N'0.051', N'45.0', 10, 62) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2081, N'Bender', N'16.0', N'0.051', N'45.0', 10, 62) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2082, N'Abrasive Ale', N'16.0', N'0.097', N'120.0', 12, 62) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2083, N'Hell', N'16.0', N'0.051', N'20.0', 69, 62) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2084, N'CynicAle', N'16.0', N'0.067', N'33.0', 90, 62) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2085, N'Furious', N'16.0', N'0.062', N'99.0', 16, 62) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2086, N'Big Nose', N'12.0', N'0.073', N'50.0', 16, 448) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2087, N'Cotton Mouth', N'12.0', N'0.05', N'10.0', 100, 448) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2088, N'Stump Knocker Pale Ale', N'12.0', N'0.056', N'35.0', 18, 448) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2089, N'Midnight Oil', N'12.0', N'0.05', N'38.0', 80, 448) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2090, N'Wild Night', N'12.0', N'0.059', N'18.0', 40, 448) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2091, N'Bermuda Triangle Ginger Beer', N'12.0', N'0.045', N'N/A', 66, 382) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2092, N'Take Two Pils', N'12.0', N'0.055', N'35.0', 62, 50) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2093, N'Waterkeeper', N'12.0', N'0.057', N'N/A', 65, 50) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2094, N'SweetWater IPA', N'12.0', N'0.064', N'N/A', 16, 50) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2095, N'420 Extra Pale Ale', N'12.0', N'0.054', N'N/A', 18, 50) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2096, N'Dodgy Knight Imperial IPA', N'12.0', N'0.08', N'95.0', 12, 450) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2097, N'TailGate Saison', N'12.0', N'0.05', N'N/A', 90, 450) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2098, N'TailGate IPA', N'24.0', N'0.05', N'44.0', 16, 450) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2099, N'TailGate IPA', N'12.0', N'0.05', N'44.0', 16, 450) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2100, N'TailGate Hefeweizen', N'24.0', N'0.049', N'28.0', 65, 450) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2101, N'Blacktop Blonde', N'24.0', N'0.05', N'19.0', 9, 450) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2102, N'Blacktop Blonde', N'12.0', N'0.05', N'19.0', 9, 450) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2103, N'TailGate Hefeweizen', N'12.0', N'0.049', N'28.0', 65, 450) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2104, N'Wooden Rooster', N'16.9', N'0.085', N'34.0', 96, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2105, N'Ginger Peach Saison', N'16.0', N'0.048', N'20.0', 90, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2106, N'Zombie Monkie', N'16.0', N'0.062', N'35.0', 22, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2107, N'Wild Plum Farmhouse Ale', N'16.0', N'0.056', N'20.0', 90, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2108, N'Vanilla Bean Buffalo Sweat', N'16.0', N'0.05', N'20.0', 80, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2109, N'Ethos IPA', N'16.0', N'0.068', N'110.0', 16, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2110, N'Tallgrass Pub Ale', N'16.0', N'0.044', N'12.0', 10, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2111, N'Oasis', N'16.0', N'0.072', N'93.0', 57, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2112, N'Buffalo Sweat', N'16.0', N'0.05', N'20.0', 77, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2113, N'Halcyon Unfiltered Wheat', N'16.0', N'0.05', N'20.0', 20, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2114, N'8-Bit Pale Ale', N'16.0', N'0.052', N'N/A', 18, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2115, N'Velvet Rooster', N'16.0', N'0.085', N'N/A', 96, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2116, N'Halcyon Unfiltered Wheat', N'12.0', N'0.05', N'20.0', 20, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2117, N'Köld Lager (2010)', N'16.0', N'0.05', N'16.0', 62, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2118, N'Oasis (2010)', N'16.0', N'0.072', N'93.0', 12, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2119, N'Tallgrass Ale', N'16.0', N'0.044', N'22.0', 10, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2120, N'Buffalo Sweat (2010)', N'16.0', N'0.05', N'20.0', 77, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2121, N'Tallgrass IPA', N'16.0', N'0.063', N'60.0', 16, 46) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2122, N'Hat Trick Hop IPA', N'16.0', N'0.068', N'N/A', 16, 410) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2123, N'Yard Sale Amber Ale', N'16.0', N'0.056', N'N/A', 5, 410) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2124, N'Loafin Bräu', N'16.0', N'0.055', N'N/A', 3, 491) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2125, N'Old Elephant Foot IPA', N'16.0', N'0.07', N'80.0', 16, 491) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2126, N'Peck''s Porter', N'16.0', N'0.065', N'35.0', 22, 8) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2127, N'Reactor', N'16.0', N'0.07', N'N/A', 16, 8) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2128, N'Mr. Orange', N'16.0', N'0.057', N'N/A', 100, 8) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2129, N'Deduction', N'12.0', N'0.08', N'22.0', 44, 29) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2130, N'Face Down Brown Ale', N'12.0', N'0.057', N'N/A', 10, 481) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2131, N'Tempter IPA', N'12.0', N'0.064', N'N/A', 16, 481) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2132, N'Bridal Veil Rye Pale Ale', N'12.0', N'0.055', N'N/A', 18, 481) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2133, N'Smittytown', N'12.0', N'0.048', N'N/A', 57, 211) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2134, N'Greenwood Beach', N'12.0', N'0.04', N'N/A', 61, 211) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2135, N'Gatecrasher', N'12.0', N'0.066', N'N/A', 50, 211) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2136, N'RecreationAle', N'12.0', N'0.047', N'42.0', 18, 470) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2137, N'First Stand', N'12.0', N'0.055', N'35.0', 90, 216) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2138, N'Battle LIne', N'12.0', N'0.063', N'23.0', 10, 216) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2139, N'Broken Bridge', N'12.0', N'0.056', N'12.0', 45, 216) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2140, N'Brutus', N'12.0', N'0.071', N'69.0', 50, 216) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2141, N'Petit Mutant', N'16.0', N'0.06', N'N/A', 26, 273) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2142, N'The Crusher', N'16.0', N'0.096', N'N/A', 12, 273) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2143, N'Beelzebub', N'16.0', N'0.08', N'N/A', 14, 273) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2144, N'Focal Banger', N'16.0', N'0.07', N'N/A', 16, 273) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2145, N'Heady Topper', N'16.0', N'0.08', N'120.0', 12, 273) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2146, N'Heady Topper', N'16.0', N'0.08', N'120.0', 12, 273) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2147, N'Bomber Mountain Amber Ale (2013)', N'12.0', N'0.046', N'20.0', 5, 458) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2148, N'Indian Paintbrush IPA', N'12.0', N'0.07', N'75.0', 16, 458) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2149, N'Saddle Bronc Brown Ale (2013)', N'12.0', N'0.048', N'16.0', 48, 458) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2150, N'Wagon Box Wheat Beer', N'12.0', N'0.059', N'15.0', 20, 458) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2151, N'Birdhouse Pale Ale', N'12.0', N'0.05', N'N/A', 30, 263) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2152, N'Ozzy', N'12.0', N'0.073', N'N/A', 30, 263) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2153, N'Resurrection', N'12.0', N'0.07', N'N/A', 44, 263) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2154, N'Bronx Summer Pale Ale', N'16.0', N'0.052', N'16.0', 18, 330) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2155, N'Bronx Black Pale Ale', N'16.0', N'0.057', N'46.0', 8, 330) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2156, N'Bronx Pale Ale', N'16.0', N'0.063', N'50.0', 18, 330) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2157, N'Surfrider', N'16.0', N'0.052', N'35.0', 18, 34) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2158, N'Kolschtal Eddy', N'16.0', N'0.055', N'N/A', 70, 34) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2159, N'South Bay Session IPA', N'16.0', N'0.05', N'N/A', 16, 34) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2160, N'Grandma''s Pecan', N'16.0', N'0.069', N'34.0', 48, 34) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2161, N'Double Trunk', N'16.0', N'0.099', N'101.0', 12, 34) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2162, N'Just IPA', N'12.0', N'0.046', N'45.0', 16, 329) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2163, N'Lionshead', N'12.0', N'0.045', N'N/A', 21, 91) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2164, N'Manhattan Gold Lager (1990)', N'12.0', N'0', N'N/A', 6, 485) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2165, N'G. B. Russo’s Italian Pistachio Pale Ale', N'16.0', N'0.052', N'N/A', 18, 10) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2166, N'Northern Hawk Owl Amber', N'12.0', N'0.058', N'N/A', 5, 439) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2167, N'CEO Stout', N'16.0', N'0.059', N'N/A', 23, 439) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2168, N'Will Power Pale Ale', N'16.0', N'0.047', N'N/A', 18, 439) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2169, N'Curious Traveler Shandy', N'12.0', N'0.044', N'N/A', 94, 335) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2170, N'Hunny Do Wheat', N'12.0', N'0.048', N'18.0', 20, 143) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2171, N'Three Way Pale Ale', N'12.0', N'0.052', N'N/A', 18, 143) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2172, N'Rise to the Top', N'12.0', N'0.041', N'N/A', 40, 143) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2173, N'Lost Trout Brown Ale', N'12.0', N'0.049', N'N/A', 10, 143) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2174, N'Watermelon Ale', N'12.0', N'0.051', N'11.0', 61, 104) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2175, N'Knotty Blonde Ale', N'12.0', N'0.04', N'18.0', 9, 154) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2176, N'Fivepine Chocolate Porter', N'12.0', N'0.062', N'40.0', 22, 154) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2177, N'Hoodoo Voodoo IPA', N'12.0', N'0.062', N'82.0', 16, 154) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2178, N'Hydraulion Red', N'12.0', N'0.053', N'22.0', 68, 274) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2179, N'40 Mile IPA', N'12.0', N'0.06', N'50.0', 16, 274) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2180, N'Citra Faced', N'16.0', N'0.055', N'64.0', 20, 22) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2181, N'Pole Barn Stout', N'16.0', N'0.055', N'31.0', 80, 22) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2182, N'Pale', N'16.0', N'0.054', N'37.0', 18, 22) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2183, N'Yoshi''s Nectar', N'16.0', N'0.053', N'27.0', 37, 22) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2184, N'Leatherhead Red', N'12.0', N'0.052', N'N/A', 5, 283) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2185, N'Cropduster Mid-American IPA', N'12.0', N'0.065', N'N/A', 16, 283) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2186, N'Golden Frau Honey Wheat', N'12.0', N'0.075', N'N/A', 36, 283) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2187, N'Cornstalker Dark Wheat', N'12.0', N'0', N'N/A', 11, 283) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2188, N'Cafe Leche', N'16.0', N'0.058', N'20.0', 22, 18) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2189, N'Damascene Apricot Sour', N'16.0', N'0.052', N'12.0', 61, 18) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2190, N'Csar', N'16.0', N'0.12', N'90.0', 88, 18) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2191, N'Klingon Warnog Roggen Dunkel', N'16.0', N'0.055', N'N/A', 87, 18) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2192, N'Overlord Imperial IPA', N'16.0', N'0.085', N'115.0', 12, 18) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2193, N'Alloy', N'16.0', N'0.058', N'36.0', 16, 18) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2194, N'Rivet Irish Red Ale', N'16.0', N'0.051', N'22.0', 68, 18) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2195, N'3 Gear Robust Porter', N'16.0', N'0.052', N'50.0', 22, 18) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2196, N'Circuit Bohemian Pilsner', N'16.0', N'0.045', N'35.0', 41, 18) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2197, N'Turnrow Harvest Ale', N'12.0', N'0.055', N'N/A', 9, 153) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2198, N'Juke Joint IPA', N'12.0', N'0.07', N'60.0', 16, 153) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2199, N'Parade Ground Coffee Porter', N'12.0', N'0.07', N'35.0', 22, 153) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2200, N'Tin Roof Watermelon Wheat', N'12.0', N'0.05', N'21.0', 61, 153) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2201, N'Tin Roof Blonde Ale', N'12.0', N'0.045', N'18.0', 9, 153) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2202, N'Voodoo Bengal Pale Ale', N'12.0', N'0.055', N'37.0', 18, 153) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2203, N'Perfect Tin Amber', N'12.0', N'0.045', N'28.0', 5, 153) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2204, N'IPA & a Half', N'12.0', N'0.073', N'87.0', 16, 292) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2205, N'Ornery Amber Lager (2003)', N'12.0', N'0.055', N'33.0', 97, 292) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2206, N'Big Island Shandy', N'16.0', N'0.05', N'N/A', 94, 475) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2207, N'Preservation IPA', N'16.0', N'0.068', N'N/A', 16, 475) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2208, N'Almanac IPA', N'12.0', N'0.062', N'72.0', 16, 266) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2209, N'Milk Mustachio Stout', N'12.0', N'0.065', N'N/A', 77, 266) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2210, N'Farmer''s Tan Red Ale', N'12.0', N'0.06', N'30.0', 5, 266) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2211, N'Triangle India Pale Ale', N'12.0', N'0.057', N'N/A', 16, 525) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2212, N'Triangle White Ale', N'12.0', N'0.05', N'N/A', 100, 525) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2213, N'Triangle Belgian Golden Ale', N'12.0', N'0.08', N'N/A', 32, 525) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2214, N'Troegenator', N'16.0', N'0.082', N'N/A', 42, 98) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2215, N'Nugget Nectar', N'16.0', N'0.075', N'93.0', 5, 98) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2216, N'Sunshine Pils', N'12.0', N'0.045', N'45.0', 21, 98) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2217, N'Troegenator Doublebock', N'16.0', N'0.082', N'25.0', 42, 98) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2218, N'Perpetual IPA', N'12.0', N'0.075', N'85.0', 16, 98) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2219, N'Greenville Pale Ale', N'12.0', N'0.055', N'52.0', 18, 540) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2220, N'Hoppy Boy', N'16.0', N'0.062', N'65.0', 16, 521) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2221, N'Cow Creek', N'12.0', N'0.054', N'26.0', 6, 39) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2222, N'Chupahopra', N'12.0', N'0.075', N'63.0', 16, 39) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2223, N'Twisted X', N'12.0', N'0.051', N'19.0', 4, 39) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2224, N'Day Hike Session', N'12.0', N'0.041', N'41.0', 16, 191) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2225, N'Trailhead ISA', N'12.0', N'0.048', N'48.0', 16, 191) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2226, N'Immersion Amber', N'12.0', N'0.052', N'27.0', 5, 191) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2227, N'Evo IPA', N'12.0', N'0.062', N'70.0', 16, 191) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2228, N'Presidential Pils', N'12.0', N'0.048', N'N/A', 41, 191) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2229, N'Evolutionary IPA (2012)', N'12.0', N'0.062', N'70.0', 16, 191) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2230, N'Persnickety Pale', N'12.0', N'0.057', N'36.0', 18, 191) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2231, N'SoDo Brown Ale', N'12.0', N'0.054', N'20.0', 10, 191) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2232, N'Immersion Amber Ale (2011)', N'12.0', N'0.052', N'27.0', 5, 191) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2233, N'Evolutionary IPA (2011)', N'12.0', N'0.062', N'70.0', 16, 191) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2234, N'Trailhead India Style Session Ale (2011)', N'12.0', N'0.048', N'48.0', 16, 191) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2235, N'Panorama Wheat Ale', N'12.0', N'0.046', N'N/A', 20, 191) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2236, N'Wobble', N'16.0', N'0.063', N'69.0', 16, 75) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2237, N'Night Cat', N'12.0', N'0.058', N'43.0', 11, 75) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2238, N'Night Cat (2014)', N'12.0', N'0.058', N'43.0', 11, 75) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2239, N'Dog Days Lager', N'12.0', N'0.051', N'17.0', 43, 75) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2240, N'Sidekick Extra Pale Ale', N'12.0', N'0.051', N'36.0', 18, 75) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2241, N'Atom Smasher', N'12.0', N'0.077', N'23.0', 75, 75) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2242, N'Testudo', N'12.0', N'0.045', N'N/A', 34, 75) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2243, N'Hobnob B & B Pale Ale', N'12.0', N'0.065', N'N/A', 18, 75) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2244, N'Cane and Ebel', N'12.0', N'0.07', N'68.0', 24, 75) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2245, N'Outlaw IPA (2015)', N'12.0', N'0.065', N'N/A', 16, 75) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2246, N'The Gilded Age', N'12.0', N'0.045', N'N/A', 79, 244) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2247, N'No Limits Hefeweizen', N'16.0', N'0.05', N'N/A', 65, 436) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2248, N'Honeyspot Road White IPA', N'12.0', N'0.06', N'N/A', 25, 436) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2249, N'Road 2 Ruin Double IPA', N'12.0', N'0.072', N'N/A', 12, 436) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2250, N'Workers Comp Saison', N'12.0', N'0.048', N'N/A', 90, 436) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2251, N'Ol'' Factory Pils', N'12.0', N'0.05', N'N/A', 62, 436) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2252, N'PUNK''N', N'12.0', N'0.05', N'10.0', 83, 160) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2253, N'Yard Sale Winter Lager', N'12.0', N'0.04', N'22.0', 6, 160) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2254, N'Trader Session IPA', N'12.0', N'0.04', N'42.0', 16, 160) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2255, N'Hop Nosh IPA', N'12.0', N'0.073', N'83.0', 16, 160) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2256, N'SUM''R', N'12.0', N'0.04', N'17.0', 9, 160) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2257, N'Organic Baba Black Lager', N'12.0', N'0.04', N'32.0', 91, 160) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2258, N'Hop Notch IPA (2013)', N'12.0', N'0.073', N'82.0', 16, 160) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2259, N'Cutthroat Pale Ale', N'12.0', N'0.04', N'34.0', 18, 160) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2260, N'WYLD Extra Pale Ale', N'12.0', N'0.04', N'29.0', 18, 160) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2261, N'Pilsner Ukiah', N'12.0', N'0.055', N'N/A', 62, 556) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2262, N'The Green Room', N'16.0', N'0.06', N'75.0', 16, 127) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2263, N'Humbucker Helles', N'16.0', N'0.047', N'25.0', 74, 127) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2264, N'Uncle John''s Apple Cherry Cider', N'16.0', N'0.065', N'N/A', 39, 339) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2265, N'Uncle John''s Apricot Apple Cider', N'16.0', N'0.065', N'N/A', 39, 339) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2266, N'Draught Hard Apple Cider', N'16.0', N'0.065', N'N/A', 39, 339) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2267, N'Scotty K NA', N'16.0', N'0.001', N'N/A', 73, 523) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2268, N'Bacon Brown Ale', N'16.0', N'0.068', N'N/A', 10, 523) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2269, N'Golden State Ale', N'16.0', N'0.064', N'N/A', 30, 523) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2270, N'Baltic Porter', N'16.0', N'0.078', N'N/A', 27, 523) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2271, N'Siamese twin', N'16.0', N'0.085', N'N/A', 44, 523) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2272, N'Double Duckpin', N'12.0', N'0.085', N'90.0', 12, 72) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2273, N'Old Pro', N'12.0', N'0.042', N'10.0', 63, 72) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2274, N'Duckpin Pale Ale', N'12.0', N'0.055', N'N/A', 18, 72) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2275, N'Balt Altbier', N'12.0', N'0.06', N'N/A', 3, 72) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2276, N'Campside Session IPA', N'16.0', N'0.045', N'50.0', 16, 203) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2277, N'Upland Wheat Ale', N'16.0', N'0.045', N'15.0', 100, 203) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2278, N'Dragonfly IPA', N'16.0', N'0.06', N'N/A', 16, 203) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2279, N'Lee Hill Series Vol. 5 - Belgian Style Quadrupel Ale', N'19.2', N'0.128', N'N/A', 84, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2280, N'Lee Hill Series Vol. 4 - Manhattan Style Rye Ale', N'19.2', N'0.104', N'N/A', 89, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2281, N'Lee Hill Series Vol. 2 - Wild Saison', N'19.2', N'0.068', N'24.0', 26, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2282, N'Lee Hill Series Vol. 3 - Barrel Aged Imperial Stout', N'19.2', N'0.099', N'51.0', 14, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2283, N'Lee Hill Series Vol. 1 - Barrel Aged Brown Ale', N'19.2', N'0.076', N'N/A', 10, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2284, N'Blood Orange Saison', N'12.0', N'0.06', N'N/A', 90, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2285, N'Thai Style White IPA', N'12.0', N'0.065', N'33.0', 25, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2286, N'Ferus Fluxus Wild Belgian Pale Ale', N'19.2', N'0.075', N'30.0', 26, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2287, N'Upslope Imperial India Pale Ale', N'19.2', N'0.099', N'90.0', 12, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2288, N'Upslope Christmas Ale', N'16.0', N'0.082', N'N/A', 99, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2289, N'Upslope Pumpkin Ale', N'16.0', N'0.077', N'N/A', 83, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2290, N'Upslope Belgian Style Pale Ale', N'12.0', N'0.075', N'30.0', 30, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2291, N'Upslope Foreign Style Stout', N'12.0', N'0.069', N'N/A', 60, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2292, N'Top Rope Mexican-style Craft Lager', N'12.0', N'0.048', N'15.0', 97, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2293, N'Upslope Craft Lager', N'12.0', N'0.048', N'22.0', 97, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2294, N'Upslope Brown Ale', N'12.0', N'0.067', N'N/A', 48, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2295, N'Upslope Pale Ale', N'12.0', N'0.058', N'N/A', 18, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2296, N'Upslope India Pale Ale', N'12.0', N'0.072', N'N/A', 16, 52) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2297, N'Common Sense Kentucky Common Ale', N'16.0', N'0.053', N'22.0', 10, 547) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2298, N'Upstate I.P.W.', N'12.0', N'0.065', N'70.0', 16, 547) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2299, N'Squatters Full Suspension Pale Ale', N'12.0', N'0.04', N'N/A', 18, 303) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2300, N'Squatters Hop Rising Double IPA', N'12.0', N'0.09', N'75.0', 12, 303) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2301, N'Devastator Double Bock', N'12.0', N'0.08', N'N/A', 42, 303) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2302, N'Wasatch Ghostrider White IPA', N'12.0', N'0.06', N'N/A', 25, 303) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2303, N'Wasatch Ghostrider White IPA (2014)', N'12.0', N'0.06', N'N/A', 25, 303) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2304, N'Wasatch Apricot Hefeweizen', N'12.0', N'0.04', N'N/A', 61, 303) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2305, N'Squatters Hop Rising Double IPA (2014)', N'12.0', N'0.09', N'75.0', 12, 303) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2306, N'Squatters Full Suspension Pale Ale', N'12.0', N'0.04', N'N/A', 18, 303) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2307, N'Nunica Pine', N'16.0', N'0.068', N'N/A', 39, 186) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2308, N'Ginger Peach', N'16.0', N'0.069', N'N/A', 39, 186) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2309, N'Totally Roasted', N'16.0', N'0.068', N'N/A', 39, 186) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2310, N'Blue Gold', N'16.0', N'0.068', N'N/A', 39, 186) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2311, N'Hard Apple', N'16.0', N'0.068', N'N/A', 39, 186) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2312, N'Nitro Can Coffee Stout', N'12.0', N'0.052', N'N/A', 23, 114) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2313, N'Voodoo Love Child', N'12.0', N'0.092', N'25.0', 96, 323) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2314, N'White Magick of the Sun', N'12.0', N'0.079', N'23.0', 100, 323) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2315, N'Wynona''s Big Brown Ale', N'12.0', N'0.075', N'31.0', 10, 323) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2316, N'Gran Met', N'12.0', N'0.092', N'25.0', 32, 323) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2317, N'Good Vibes IPA', N'12.0', N'0.073', N'85.0', 16, 323) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2318, N'Pilzilla', N'12.0', N'0.075', N'85.0', 13, 323) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2319, N'Wachusett Light IPA', N'12.0', N'0.04', N'37.0', 16, 296) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2320, N'Green Monsta IPA', N'12.0', N'0.06', N'55.0', 16, 296) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2321, N'Wachusett IPA', N'12.0', N'0.056', N'50.0', 16, 296) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2322, N'Strawberry White', N'12.0', N'0.047', N'N/A', 100, 296) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2323, N'Larry Imperial IPA', N'12.0', N'0.085', N'85.0', 12, 296) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2324, N'Wachusett Summer', N'12.0', N'0.047', N'N/A', 20, 296) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2325, N'Country Pale Ale', N'12.0', N'0.051', N'17.0', 51, 296) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2326, N'Wachusett Light IPA (2013)', N'12.0', N'0.04', N'37.0', 16, 296) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2327, N'Pumpkan', N'12.0', N'0.052', N'20.0', 83, 296) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2328, N'Wachusett Blueberry Ale', N'12.0', N'0.045', N'10.0', 61, 296) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2329, N'Green Monsta IPA', N'12.0', N'0.06', N'55.0', 16, 296) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2330, N'T-6 Red Ale (2004)', N'12.0', N'0.047', N'N/A', 5, 507) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2331, N'Self Starter', N'16.0', N'0.052', N'67.0', 16, 95) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2332, N'Ermal''s', N'16.0', N'0.054', N'20.0', 40, 95) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2333, N'10 Ton', N'16.0', N'0.07', N'N/A', 80, 95) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2334, N'Flyin'' Rye', N'16.0', N'0.07', N'N/A', 16, 95) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2335, N'Christmas Ale', N'12.0', N'0.09', N'N/A', 66, 101) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2336, N'Pay It Forward Cocoa Porter', N'12.0', N'0.07', N'N/A', 22, 101) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2337, N'West Sixth Amber Ale', N'12.0', N'0.055', N'N/A', 5, 101) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2338, N'West Sixth IPA', N'12.0', N'0', N'N/A', 16, 101) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2339, N'One Claw', N'12.0', N'0.055', N'N/A', 18, 385) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2340, N'Westbrook Gose', N'12.0', N'0.04', N'5.0', 63, 385) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2341, N'White Thai', N'12.0', N'0.05', N'16.0', 100, 385) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2342, N'Westbrook IPA', N'12.0', N'0.068', N'65.0', 16, 385) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2343, N'Westfield Octoberfest', N'12.0', N'0.057', N'22.0', 75, 352) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2344, N'Pop''s Old Fashioned Lager', N'12.0', N'0.052', N'N/A', 6, 352) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2345, N'Charlie in the Rye', N'12.0', N'0.058', N'55.0', 16, 352) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2346, N'Royal Lager', N'16.0', N'0', N'N/A', 19, 133) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2347, N'Rip Van Winkle (Current)', N'12.0', N'0.08', N'N/A', 35, 133) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2348, N'O’Malley’s Stout', N'12.0', N'0', N'N/A', 53, 133) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2349, N'O’Malley’s IPA', N'12.0', N'0.075', N'89.0', 16, 133) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2350, N'O’Malley’s Irish Style Cream Ale', N'12.0', N'0', N'N/A', 40, 133) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2351, N'L''il Lucy''s Hot Pepper Ale', N'12.0', N'0.049', N'28.0', 38, 133) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2352, N'Drop Kick Ale', N'12.0', N'0.052', N'N/A', 5, 133) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2353, N'Raspberry Berliner Weisse', N'12.0', N'0.055', N'N/A', 33, 48) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2354, N'Hop Session', N'12.0', N'0.05', N'N/A', 16, 48) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2355, N'Blueberry Berliner Weisse', N'12.0', N'0.055', N'N/A', 33, 48) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2356, N'Berliner Weisse', N'12.0', N'0.055', N'N/A', 33, 48) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2357, N'Super G IPA', N'16.0', N'0.06', N'N/A', 16, 397) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2358, N'Hefe Lemon', N'12.0', N'0.049', N'30.0', 85, 297) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2359, N'Hefe Black', N'12.0', N'0.049', N'30.0', 65, 297) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2360, N'Widmer Brothers Hefeweizen', N'12.0', N'0.049', N'30.0', 65, 297) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2361, N'Hop Slayer Double IPA', N'12.0', N'0.082', N'100.0', 12, 362) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2362, N'Pumpkin Ale', N'12.0', N'0.045', N'N/A', 83, 362) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2363, N'Big Bowl Blonde Ale', N'12.0', N'0.05', N'N/A', 10, 362) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2364, N'Phat Chance', N'12.0', N'0.052', N'27.0', 9, 362) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2365, N'Hop Slayer Double IPA (2011)', N'12.0', N'0.082', N'100.0', 12, 362) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2366, N'Hop Slayer Double IPA (2011)', N'12.0', N'0.082', N'100.0', 12, 362) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2367, N'Wild Onion Summer Wit', N'12.0', N'0.042', N'13.0', 100, 362) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2368, N'Jack Stout', N'12.0', N'0.06', N'23.0', 80, 362) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2369, N'Wild Onion Pumpkin Ale (2010)', N'12.0', N'0.045', N'N/A', 83, 362) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2370, N'Paddy Pale Ale', N'12.0', N'0.056', N'41.0', 18, 362) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2371, N'Blonde Hunny', N'12.0', N'0.068', N'21.0', 30, 182) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2372, N'Wild Wolf Wee Heavy Scottish Style Ale', N'12.0', N'0.057', N'20.0', 92, 182) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2373, N'Wild Wolf American Pilsner', N'12.0', N'0.045', N'25.0', 21, 182) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2374, N'Alpha Ale', N'12.0', N'0.051', N'45.0', 18, 182) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2375, N'Mystical Stout', N'16.0', N'0.054', N'N/A', 67, 500) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2376, N'Bodacious Bock', N'16.0', N'0.075', N'N/A', 35, 500) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2377, N'Ambitious Lager', N'16.0', N'0.05', N'N/A', 79, 500) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2378, N'Wyoming Pale Ale', N'16.0', N'0.072', N'N/A', 18, 551) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2379, N'Wind River Blonde Ale', N'16.0', N'0.05', N'N/A', 9, 551) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2380, N'Ace IPA', N'16.0', N'0.074', N'83.0', 16, 510) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2381, N'P-51 Porter', N'16.0', N'0.08', N'31.0', 22, 510) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2382, N'#001 Golden Amber Lager', N'12.0', N'0.055', N'N/A', 6, 212) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2383, N'#002 American I.P.A.', N'12.0', N'0.071', N'60.0', 16, 212) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2384, N'#003 Brown & Robust Porter', N'12.0', N'0.052', N'N/A', 22, 212) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2385, N'#004 Session I.P.A.', N'12.0', N'0.048', N'38.0', 16, 212) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2386, N'Tarasque', N'12.0', N'0.059', N'N/A', 90, 240) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2387, N'Ananda India Pale Ale', N'12.0', N'0.062', N'61.0', 16, 240) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2388, N'Tiny Bomb', N'12.0', N'0.045', N'23.0', 21, 240) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2389, N'Train Hopper', N'12.0', N'0.058', N'72.0', 16, 15) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2390, N'Edward’s Portly Brown', N'12.0', N'0.045', N'N/A', 10, 15) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2391, N'Troopers Alley IPA', N'12.0', N'0.059', N'135.0', 16, 345) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2392, N'Wolverine Premium Lager', N'12.0', N'0.047', N'15.0', 19, 403) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2393, N'Woodchuck Amber Hard Cider', N'12.0', N'0.05', N'N/A', 39, 502) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2394, N'4000 Footer IPA', N'12.0', N'0.065', N'82.0', 16, 110) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2395, N'Summer Brew', N'12.0', N'0.028', N'15.0', 21, 110) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2396, N'Be Hoppy IPA', N'16.0', N'0.065', N'69.0', 16, 340) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2397, N'Worthy IPA', N'12.0', N'0.069', N'69.0', 16, 200) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2398, N'Easy Day Kolsch', N'12.0', N'0.045', N'25.0', 70, 200) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2399, N'Lights Out Vanilla Cream Extra Stout', N'12.0', N'0.077', N'30.0', 12, 200) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2400, N'Worthy IPA (2013)', N'12.0', N'0.069', N'69.0', 16, 200) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2401, N'Worthy Pale', N'12.0', N'0.06', N'50.0', 18, 200) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2402, N'Patty''s Chile Beer', N'12.0', N'0.042', N'N/A', 38, 425) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2403, N'Colorojo Imperial Red Ale', N'12.0', N'0.082', N'N/A', 24, 425) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2404, N'Wynkoop Pumpkin Ale', N'12.0', N'0.055', N'N/A', 83, 425) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2405, N'Rocky Mountain Oyster Stout', N'12.0', N'0.075', N'N/A', 23, 425) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2406, N'Belgorado', N'12.0', N'0.067', N'45.0', 29, 425) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2407, N'Rail Yard Ale', N'12.0', N'0.052', N'N/A', 5, 425) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2408, N'B3K Black Lager', N'12.0', N'0.055', N'N/A', 91, 425) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2409, N'Silverback Pale Ale', N'12.0', N'0.055', N'40.0', 18, 425) | |
GO | |
INSERT [dbo].[Beer] ([BeerID], [BeerName], [Ounces], [ABV], [IBU], [StyleID], [BreweryID]) VALUES (2410, N'Rail Yard Ale (2009)', N'12.0', N'0.052', N'N/A', 5, 425) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (1, N'NorthGate Brewing ', 239) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (2, N'Against the Grain Brewery', 209) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (3, N'Jack''s Abby Craft Lagers', 128) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (4, N'Mike Hess Brewing Company', 314) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (5, N'Fort Point Beer Company', 315) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (6, N'COAST Brewing Company', 67) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (7, N'Great Divide Brewing Company', 97) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (8, N'Tapistry Brewing', 53) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (9, N'Big Lake Brewing', 159) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (10, N'The Mitten Brewing Company', 142) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (11, N'Brewery Vivant', 142) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (12, N'Petoskey Brewing', 280) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (13, N'Blackrocks Brewery', 221) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (14, N'Perrin Brewing Company', 84) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (15, N'Witch''s Hat Brewing Company', 339) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (16, N'Founders Brewing Company', 142) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (17, N'Flat 12 Bierwerks', 167) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (18, N'Tin Man Brewing Company', 119) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (19, N'Black Acre Brewing Co.', 167) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (20, N'Brew Link Brewing', 288) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (21, N'Bare Hands Brewery', 143) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (22, N'Three Pints Brewing', 223) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (23, N'Four Fathers Brewing ', 373) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (24, N'Indiana City Brewing', 167) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (25, N'Burn ''Em Brewing', 231) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (26, N'Sun King Brewing Company', 167) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (27, N'Evil Czech Brewery', 241) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (28, N'450 North Brewing Company', 82) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (29, N'Taxman Brewing Company', 28) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (30, N'Cedar Creek Brewery', 322) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (31, N'SanTan Brewing Company', 66) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (32, N'Boulevard Brewing Company', 176) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (33, N'James Page Brewing Company', 354) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (34, N'The Dudes'' Brewing Company', 365) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (35, N'Ballast Point Brewing Company', 314) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (36, N'Anchor Brewing Company', 315) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (37, N'Figueroa Mountain Brewing Company', 59) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (38, N'Avery Brewing Company', 48) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (39, N'Twisted X Brewing Company', 104) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (40, N'Gonzo''s BiggDogg Brewing', 174) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (41, N'Big Muddy Brewing', 252) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (42, N'Lost Nation Brewing', 110) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (43, N'Rising Tide Brewing Company', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (44, N'Rivertowne Brewing Company', 121) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (45, N'Revolution Brewing Company', 74) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (46, N'Tallgrass Brewing Company', 217) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (47, N'Sixpoint Craft Ales', 55) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (48, N'White Birch Brewing', 160) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (49, N'Firestone Walker Brewing Company', 275) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (50, N'SweetWater Brewing Company', 21) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (51, N'Flying Mouse Brewery', 367) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (52, N'Upslope Brewing Company', 48) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (53, N'Pipeworks Brewing Company', 74) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (54, N'Bent Brewstillery', 308) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (55, N'Flesk Brewing Company', 205) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (56, N'Pollyanna Brewing Company', 195) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (57, N'BuckleDown Brewing', 212) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (58, N'Destihl Brewery', 42) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (59, N'Summit Brewing Company', 352) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (60, N'Latitude 42 Brewing Company', 292) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (61, N'4 Hands Brewing Company', 311) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (62, N'Surly Brewing Company', 56) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (63, N'Against The Grain Brewery', 209) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (64, N'Crazy Mountain Brewing Company', 113) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (65, N'SlapShot Brewing Company', 74) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (66, N'Mikerphone Brewing', 74) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (67, N'Freetail Brewing Company', 313) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (68, N'3 Daughters Brewing', 350) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (69, N'Red Shedman Farm Brewery and Hop...', 250) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (70, N'Appalachian Mountain Brewery', 45) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (71, N'Birdsong Brewing Company', 68) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (72, N'Union Craft Brewing', 27) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (73, N'Atwater Brewery', 99) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (74, N'Ale Asylum', 215) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (75, N'Two Brothers Brewing Company', 377) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (76, N'Bent Paddle Brewing Company', 105) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (77, N'Bell''s Brewery', 174) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (78, N'Blue Owl Brewing', 25) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (79, N'Speakasy Ales & Lagers', 315) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (80, N'Black Tooth Brewing Company', 326) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (81, N'Hopworks Urban Brewery', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (82, N'Epic Brewing', 97) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (83, N'New Belgium Brewing Company', 125) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (84, N'Sierra Nevada Brewing Company', 75) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (85, N'Keweenaw Brewing Company', 161) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (86, N'Brewery Terra Firma', 366) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (87, N'Grey Sail Brewing Company', 383) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (88, N'Kirkwood Station Brewing Company', 180) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (89, N'Goose Island Brewing Company', 74) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (90, N'Broad Brook Brewing LLC', 111) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (91, N'The Lion Brewery', 389) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (92, N'Madtree Brewing Company', 76) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (93, N'Jackie O''s Pub & Brewery', 19) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (94, N'Rhinegeist Brewery', 76) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (95, N'Warped Wing Brewing Company', 95) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (96, N'Blackrocks Brewery', 221) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (97, N'Catawba Valley Brewing Company', 248) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (98, N'Tröegs Brewing Company', 157) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (99, N'Mission Brewery', 314) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (100, N'Christian Moerlein Brewing Company', 76) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (101, N'West Sixth Brewing', 200) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (102, N'Coastal Extreme Brewing Company', 262) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (103, N'King Street Brewing Company', 8) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (104, N'Beer Works Brewery', 211) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (105, N'Lone Tree Brewing Company', 206) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (106, N'Four String Brewing Company', 82) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (107, N'Glabrous Brewing Company', 285) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (108, N'Bonfire Brewing Company', 109) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (109, N'Thomas Hooker Brewing Company', 41) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (110, N'Woodstock Inn, Station & Brewery', 266) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (111, N'Renegade Brewing Company', 97) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (112, N'Mother Earth Brew Company', 376) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (113, N'Black Market Brewing Company', 363) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (114, N'Vault Brewing Company', 400) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (115, N'Jailbreak Brewing Company', 193) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (116, N'Smartmouth Brewing Company', 264) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (117, N'Base Camp Brewing Co.', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (118, N'Alameda Brewing', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (119, N'Southern Star Brewing Company', 86) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (120, N'Steamworks Brewing Company', 107) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (121, N'Horny Goat Brew Pub', 238) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (122, N'Cheboygan Brewing Company', 72) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (123, N'Center of the Universe Brewing C...', 15) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (124, N'Ipswich Ale Brewery', 168) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (125, N'Griffin Claw Brewing Company', 37) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (126, N'Karbach Brewing Company', 162) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (127, N'Uncle Billy''s Brewery and Smokeh...', 25) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (128, N'Deep Ellum Brewing Company', 92) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (129, N'Real Ale Brewing Company', 40) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (130, N'Straub Brewery', 348) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (131, N'Shebeen Brewing Company', 395) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (132, N'Stevens Point Brewery', 354) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (133, N'Weston Brewing Company', 386) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (134, N'Southern Prohibition Brewing Com...', 152) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (135, N'Minhas Craft Brewery', 244) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (136, N'Pug Ryan''s Brewery', 101) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (137, N'Hops & Grains Brewing Company', 25) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (138, N'Sietsema Orchards and Cider Mill', 3) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (139, N'Summit Brewing Company', 349) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (140, N'Core Brewing & Distilling Company', 345) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (141, N'Independence Brewing Company', 25) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (142, N'Cigar City Brewing Company', 360) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (143, N'Third Street Brewhouse', 79) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (144, N'Narragansett Brewing Company', 297) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (145, N'Grimm Brothers Brewhouse', 210) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (146, N'Cisco Brewers', 255) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (147, N'Angry Minnow', 154) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (148, N'Platform Beer Company', 78) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (149, N'Odyssey Beerwerks', 12) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (150, N'Lonerider Brewing Company', 298) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (151, N'Oakshire Brewing', 117) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (152, N'Fort Pitt Brewing Company', 192) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (153, N'Tin Roof Brewing Company', 29) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (154, N'Three Creeks Brewing', 330) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (155, N'2 Towns Ciderhouse', 88) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (156, N'Caldera Brewing Company', 15) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (157, N'Greenbrier Valley Brewing Company', 198) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (158, N'Phoenix Ale Brewery', 282) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (159, N'Lumberyard Brewing Company', 124) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (160, N'Uinta Brewing Company', 312) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (161, N'Four Peaks Brewing Company', 364) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (162, N'Martin House Brewing Company', 127) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (163, N'Right Brain Brewery', 366) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (164, N'Sly Fox Brewing Company', 283) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (165, N'Round Guys Brewing', 191) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (166, N'Great Crescent Brewery', 23) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (167, N'Oskar Blues Brewery', 207) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (168, N'Boxcar Brewing Company', 382) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (169, N'High Hops Brewery', 394) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (170, N'Crooked Fence Brewing Company', 135) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (171, N'Everybody''s Brewing', 387) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (172, N'Anderson Valley Brewing Company', 46) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (173, N'Fiddlehead Brewing Company', 324) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (174, N'Evil Twin Brewing', 55) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (175, N'New Orleans Lager & Ale Brewing ...', 258) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (176, N'Spiteful Brewing Company', 74) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (177, N'Rahr & Sons Brewing Company', 127) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (178, N'18th Street Brewery', 137) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (179, N'Cambridge Brewing Company', 62) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (180, N'Carolina Brewery', 286) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (181, N'Frog Level Brewing Company', 381) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (182, N'Wild Wolf Brewing Company', 257) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (183, N'COOP Ale Works', 270) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (184, N'Seventh Son Brewing Company', 82) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (185, N'Oasis Texas Brewing Company', 25) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (186, N'Vander Mill Ciders', 344) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (187, N'St. Julian Winery', 277) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (188, N'Pedernales Brewing Company', 131) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (189, N'Mother''s Brewing', 346) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (190, N'Modern Monks Brewery', 203) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (191, N'Two Beers Brewing Company', 321) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (192, N'Snake River Brewing Company', 169) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (193, N'Capital Brewery', 234) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (194, N'Anthem Brewing Company', 270) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (195, N'Goodlife Brewing Co.', 35) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (196, N'Breakside Brewery', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (197, N'Goose Island Brewery Company', 74) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (198, N'Burnside Brewing Co.', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (199, N'Hop Valley Brewing Company', 346) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (200, N'Worthy Brewing Company', 35) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (201, N'Occidental Brewing Company', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (202, N'Fearless Brewing Company', 116) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (203, N'Upland Brewing Company', 42) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (204, N'Mehana Brewing Co.', 158) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (205, N'Hawai''i Nui Brewing Co.', 158) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (206, N'People''s Brewing Company', 184) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (207, N'Fort George Brewery', 18) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (208, N'Branchline Brewing Company', 313) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (209, N'Kalona Brewing Company', 175) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (210, N'Modern Times Beer', 314) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (211, N'Temperance Beer Company', 118) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (212, N'Wisconsin Brewing Company', 374) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (213, N'Crow Peak Brewing Company', 342) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (214, N'Grapevine Craft Brewery', 123) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (215, N'Buffalo Bayou Brewing Company', 162) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (216, N'Texian Brewing Co.', 301) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (217, N'Orpheus Brewing', 21) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (218, N'Forgotten Boardwalk', 73) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (219, N'Laughing Dog Brewing Company', 290) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (220, N'Bozeman Brewing Company', 50) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (221, N'Big Choice Brewing', 57) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (222, N'Big Storm Brewing Company', 268) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (223, N'Carton Brewing Company', 22) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (224, N'Midnight Sun Brewing Company', 8) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (225, N'Fat Head''s Brewery', 232) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (226, N'Refuge Brewery', 363) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (227, N'Chatham Brewing', 70) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (228, N'DC Brau Brewing Company', 378) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (229, N'Geneva Lake Brewing Company', 187) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (230, N'Rochester Mills Brewing Company', 305) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (231, N'Cape Ann Brewing Company', 140) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (232, N'Borderlands Brewing Company', 368) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (233, N'College Street Brewhouse and Pub', 188) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (234, N'Joseph James Brewing Company', 156) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (235, N'Harpoon Brewery', 47) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (236, N'Back East Brewing Company', 41) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (237, N'Champion Brewing Company', 69) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (238, N'Devil''s Backbone Brewing Company', 200) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (239, N'Newburgh Brewing Company', 260) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (240, N'Wiseacre Brewing Company', 226) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (241, N'Golden Road Brewing', 208) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (242, N'New Republic Brewing Company', 80) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (243, N'Infamous Brewing Company', 25) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (244, N'Two Henrys Brewing Company', 289) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (245, N'Lift Bridge Brewing Company', 356) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (246, N'Lucky Town Brewing Company', 169) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (247, N'Quest Brewing Company', 146) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (248, N'Creature Comforts', 19) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (249, N'Half Full Brewery', 353) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (250, N'Southampton Publick House', 341) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (251, N'Chapman''s Brewing', 9) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (252, N'Barrio Brewing Company', 368) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (253, N'Santa Cruz Mountain Brewing', 317) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (254, N'Frankenmuth Brewery', 129) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (255, N'Meckley''s Cidery', 334) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (256, N'Stillwater Artisanal Ales', 27) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (257, N'Finch''s Beer Company', 74) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (258, N'South Austin Brewery', 335) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (259, N'Bauhaus Brew Labs', 239) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (260, N'Ozark Beer Company', 307) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (261, N'Mountain Town Brewing Company ', 249) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (262, N'Otter Creek Brewing', 380) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (263, N'The Brewer''s Art', 27) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (264, N'Denver Beer Company', 97) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (265, N'Ska Brewing Company', 107) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (266, N'Tractor Brewing Company', 6) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (267, N'Peak Organic Brewing Company', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (268, N'Cape Cod Beer', 165) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (269, N'Long Trail Brewing Company', 52) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (270, N'Great Raft Brewing Company', 327) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (271, N'Alaskan Brewing Company', 173) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (272, N'Notch Brewing Company', 168) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (273, N'The Alchemist', 380) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (274, N'Three Notch''d Brewing Company', 69) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (275, N'Portside Brewery', 78) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (276, N'Otter Creek Brewing', 233) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (277, N'Montauk Brewing Company', 245) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (278, N'Indeed Brewing Company', 239) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (279, N'Berkshire Brewing Company', 338) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (280, N'Foolproof Brewing Company', 279) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (281, N'Headlands Brewing Company', 237) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (282, N'Bolero Snort Brewery', 303) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (283, N'Thunderhead Brewing Company', 177) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (284, N'Defiance Brewing Company', 153) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (285, N'Milwaukee Brewing Company', 238) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (286, N'Catawba Island Brewing', 291) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (287, N'Back Forty Beer Company', 133) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (288, N'Four Corners Brewing Company', 92) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (289, N'Saint Archer Brewery', 314) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (290, N'Rogue Ales', 262) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (291, N'Hale''s Ales', 321) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (292, N'Tommyknocker Brewery', 166) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (293, N'Baxter Brewing Company', 199) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (294, N'Northampton Brewery', 267) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (295, N'Black Shirt Brewing Company', 97) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (296, N'Wachusett Brewing Company', 385) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (297, N'Widmer Brothers Brewing Company', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (298, N'Hop Farm Brewing Company', 287) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (299, N'Liquid Hero Brewery', 401) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (300, N'Matt Brewing Company', 371) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (301, N'Boston Beer Company', 47) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (302, N'Old Forge Brewing Company', 93) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (303, N'Utah Brewers Cooperative', 312) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (304, N'Magic Hat Brewing Company', 337) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (305, N'Blue Hills Brewery', 63) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (306, N'Night Shift Brewing', 120) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (307, N'Beach Brewing Company', 375) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (308, N'Payette Brewing Company', 135) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (309, N'Brew Bus Brewing', 360) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (310, N'Sockeye Brewing Company', 44) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (311, N'Pine Street Brewery', 315) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (312, N'Dirty Bucket Brewing Company', 397) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (313, N'Jackalope Brewing Company', 256) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (314, N'Slanted Rock Brewing Company', 229) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (315, N'Piney River Brewing Company', 58) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (316, N'Cutters Brewing Company', 26) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (317, N'Iron Hill Brewery & Restaurant', 392) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (318, N'Marshall Wharf Brewing Company', 31) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (319, N'Banner Beer Company', 391) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (320, N'Dick''s Brewing Company', 65) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (321, N'Claremont Craft Ales', 77) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (322, N'Rivertown Brewing Company', 204) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (323, N'Voodoo Brewery', 224) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (324, N'D.L. Geary Brewing Company', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (325, N'Pisgah Brewing Company', 39) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (326, N'Neshaminy Creek Brewing Company', 90) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (327, N'Morgan Street Brewery', 311) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (328, N'Half Acre Beer Company', 74) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (329, N'The Just Beer Project', 61) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (330, N'The Bronx Brewery', 54) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (331, N'Dead Armadillo Craft Brewing', 369) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (332, N'Catawba Brewing Company', 248) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (333, N'La Cumbre Brewing Company', 6) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (334, N'David''s Ale Works', 100) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (335, N'The Traveler Beer Company', 61) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (336, N'Fargo Brewing Company', 122) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (337, N'Big Sky Brewing Company', 242) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (338, N'Nebraska Brewing Company', 274) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (339, N'Uncle John''s Fruit House Winery', 351) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (340, N'Wormtown Brewery', 398) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (341, N'Due South Brewing Company', 49) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (342, N'Palisade Brewing Company', 272) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (343, N'KelSo Beer Company', 55) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (344, N'Hardywood Park Craft Brewery', 301) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (345, N'Wolf Hills Brewing Company', 1) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (346, N'Lavery Brewing Company', 115) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (347, N'Manzanita Brewing Company', 319) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (348, N'Fullsteam Brewery', 108) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (349, N'Four Horsemen Brewing Company', 336) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (350, N'Hinterland Brewery', 145) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (351, N'Central Coast Brewing Company', 316) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (352, N'Westfield River Brewing Company', 384) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (353, N'Elevator Brewing Company', 82) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (354, N'Aslan Brewing Company', 32) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (355, N'Kulshan Brewery', 32) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (356, N'Pikes Peak Brewing Company', 246) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (357, N'Manayunk Brewing Company', 281) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (358, N'Buckeye Brewing', 78) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (359, N'Daredevil Brewing Company', 325) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (360, N'NoDa Brewing Company', 68) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (361, N'Aviator Brewing Company', 132) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (362, N'Wild Onion Brewing Company', 186) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (363, N'Hilliard''s Beer', 321) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (364, N'Mikkeller', 295) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (365, N'Bohemian Brewery', 235) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (366, N'Great River Brewery', 94) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (367, N'Mustang Brewing Company', 253) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (368, N'Airways Brewing Company', 178) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (369, N'21st Amendment Brewery', 315) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (370, N'Eddyline Brewery & Restaurant', 60) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (371, N'Pizza Port Brewing Company', 64) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (372, N'Sly Fox Brewing Company', 295) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (373, N'Spring House Brewing Company', 85) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (374, N'7venth Sun', 106) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (375, N'Astoria Brewing Company', 18) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (376, N'Maui Brewing Company', 185) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (377, N'RoughTail Brewing Company', 236) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (378, N'Lucette Brewing Company', 227) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (379, N'Bold City Brewery', 171) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (380, N'Grey Sail Brewing of Rhode Island', 383) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (381, N'Blue Blood Brewing Company', 203) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (382, N'Swashbuckler Brewing Company', 218) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (383, N'Blue Mountain Brewery', 4) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (384, N'Starr Hill Brewery', 91) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (385, N'Westbrook Brewing Company', 251) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (386, N'Shipyard Brewing Company', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (387, N'Revolution Brewing', 273) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (388, N'Natian Brewery', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (389, N'Alltech''s Lexington Brewing Company', 200) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (390, N'Oskar Blues Brewery (North Carol...', 51) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (391, N'Orlison Brewing Company', 5) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (392, N'Breckenridge Brewery', 97) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (393, N'Santa Fe Brewing Company', 318) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (394, N'Miami Brewing Company', 230) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (395, N'Schilling & Company', 321) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (396, N'Hops & Grain Brewery', 25) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (397, N'White Flame Brewing Company', 163) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (398, N'Ruhstaller Beer Company', 310) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (399, N'Saugatuck Brewing Company', 103) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (400, N'Moab Brewery', 243) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (401, N'Macon Beer Company', 214) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (402, N'Amnesia Brewing Company', 379) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (403, N'Wolverine State Brewing Company', 10) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (404, N'Red Tank Cider Company', 35) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (405, N'Cascadia Ciderworks United', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (406, N'Fate Brewing Company', 48) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (407, N'Lazy Monk Brewing', 112) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (408, N'Bitter Root Brewing', 150) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (409, N'10 Barrel Brewing Company', 35) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (410, N'Tamarack Brewing Company', 189) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (411, N'New England Brewing Company', 396) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (412, N'Seattle Cider Company', 321) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (413, N'Straight to Ale', 164) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (414, N'Austin Beerworks', 25) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (415, N'Blue Mountain Brewery', 11) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (416, N'Coastal Empire Beer Company', 320) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (417, N'Jack''s Hard Cider (Hauser Estate...', 36) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (418, N'Boulder Beer Company', 48) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (419, N'Coalition Brewing Company', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (420, N'Sanitas Brewing Company', 48) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (421, N'Gore Range Brewery', 113) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (422, N'Redstone Meadery', 48) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (423, N'Blue Dog Mead', 117) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (424, N'Hess Brewing Company', 314) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (425, N'Wynkoop Brewing Company', 97) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (426, N'Ciderboys', 354) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (427, N'Armadillo Ale Works', 96) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (428, N'Roanoke Railhouse Brewery', 304) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (429, N'Schlafly Brewing Company', 311) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (430, N'Asher Brewing Company', 48) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (431, N'Lost Rhino Brewing Company', 13) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (432, N'North Country Brewing Company', 331) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (433, N'Seabright Brewery', 317) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (434, N'French Broad Brewery', 14) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (435, N'Angry Orchard Cider Company', 76) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (436, N'Two Roads Brewing Company', 357) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (437, N'Southern Oregon Brewing Company', 225) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (438, N'Brooklyn Brewery', 55) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (439, N'The Right Brain Brewery', 366) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (440, N'Kona Brewing Company', 182) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (441, N'MillKing It Productions', 309) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (442, N'Pateros Creek Brewing Company', 125) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (443, N'O''Fallon Brewery', 269) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (444, N'Marble Brewery', 6) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (445, N'Big Wood Brewery', 372) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (446, N'Howard Brewing Company', 196) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (447, N'Downeast Cider House', 197) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (448, N'Swamp Head Brewery', 134) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (449, N'Mavericks Beer Company', 149) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (450, N'TailGate Beer', 314) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (451, N'Northwest Brewing Company', 271) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (452, N'Dad & Dude''s Breweria', 23) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (453, N'Centennial Beer Company', 113) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (454, N'Denali Brewing Company', 359) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (455, N'Deschutes Brewery', 35) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (456, N'Sunken City Brewing Company', 151) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (457, N'Lucette Brewing Company', 228) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (458, N'The Black Tooth Brewing Company', 326) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (459, N'Kenai River Brewing Company', 333) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (460, N'River North Brewery', 97) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (461, N'Fremont Brewing Company', 321) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (462, N'Armstrong Brewing Company', 340) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (463, N'AC Golden Brewing Company', 141) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (464, N'Big Bend Brewing Company', 7) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (465, N'Good Life Brewing Company', 35) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (466, N'Engine 15 Brewing', 172) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (467, N'Green Room Brewing', 171) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (468, N'Brindle Dog Brewing Company', 361) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (469, N'Peace Tree Brewing Company', 181) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (470, N'Terrapin Brewing Company', 19) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (471, N'Pete''s Brewing Company', 313) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (472, N'Okoboji Brewing Company', 343) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (473, N'Crystal Springs Brewing Company', 48) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (474, N'Engine House 9', 358) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (475, N'Tonka Beer Company', 240) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (476, N'Red Hare Brewing Company', 219) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (477, N'Hangar 24 Craft Brewery', 299) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (478, N'Big Elm Brewing', 323) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (479, N'Good People Brewing Company', 37) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (480, N'Heavy Seas Beer', 148) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (481, N'Telluride Brewing Company', 362) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (482, N'7 Seas Brewing Company', 138) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (483, N'Confluence Brewing Company', 98) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (484, N'Bale Breaker Brewing Company', 399) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (485, N'The Manhattan Brewing Company', 259) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (486, N'MacTarnahans Brewing Company', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (487, N'Stillmank Beer Company', 145) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (488, N'Redhook Brewery', 397) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (489, N'Dock Street Brewery', 281) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (490, N'Blue Point Brewing Company', 276) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (491, N'Tampa Bay Brewing Company', 360) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (492, N'Devil''s Canyon Brewery', 33) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (493, N'Stone Coast Brewing Company', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (494, N'Broken Tooth Brewing Company', 8) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (495, N'Seven Brides Brewery', 328) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (496, N'Newburyport Brewing Company', 261) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (497, N'Dry Dock Brewing Company', 23) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (498, N'Cans Bar and Canteen', 68) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (499, N'Sprecher Brewing Company', 139) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (500, N'Wildwood Brewing Company', 355) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (501, N'High Noon Saloon And Brewery', 194) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (502, N'Woodchuck Hard Cider', 233) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (503, N'Sea Dog Brewing Company', 293) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (504, N'Oskar Blues Brewery', 212) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (505, N'Carolina Beer & Beverage', 247) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (506, N'Krebs Brewing Company (Pete''s Pl...', 183) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (507, N'Warbird Brewing Company', 126) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (508, N'Mudshark Brewing Company', 188) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (509, N'Spilker Ales', 87) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (510, N'Wingman Brewers', 358) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (511, N'Kettle House Brewing Company', 242) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (512, N'Sherwood Forest Brewers', 220) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (513, N'Cottrell Brewing', 278) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (514, N'Arctic Craft Brewery', 81) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (515, N'Monkey Paw Pub & Brewery', 314) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (516, N'Crabtree Brewing Company', 144) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (517, N'Emerald City Beer Company', 321) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (518, N'Butcher''s Brewing', 64) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (519, N'New South Brewing Company', 254) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (520, N'Big River Brewing Company', 71) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (521, N'Twisted Pine Brewing Company', 48) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (522, N'Flying Dog Brewery', 130) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (523, N'Uncommon Brewers', 317) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (524, N'Aspen Brewing Company', 17) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (525, N'Triangle Brewing Company', 108) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (526, N'Bomb Beer Company', 259) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (527, N'Churchkey Can Company', 321) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (528, N'Intuition Ale Works', 171) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (529, N'Asheville Brewing Company', 14) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (530, N'Northwoods Brewpub', 112) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (531, N'Buckbean Brewing Company', 300) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (532, N'Dolores River Brewery', 102) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (533, N'Flat Rock Brewing Company', 332) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (534, N'Abita Brewing Company', 2) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (535, N'Mammoth Brewing Company', 216) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (536, N'Harvest Moon Brewing Company', 34) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (537, N'Grand Canyon Brewing Company', 390) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (538, N'Lewis and Clark Brewing Company', 155) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (539, N'Dundee Brewing Company', 305) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (540, N'Twin Lakes Brewing Company', 146) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (541, N'Mother Earth Brewing Company', 179) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (542, N'Arcadia Brewing Company', 30) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (543, N'Angry Minnow Brewing Company', 154) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (544, N'Great Northern Brewing Company', 388) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (545, N'Pyramid Breweries', 321) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (546, N'Lancaster Brewing Company', 190) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (547, N'Upstate Brewing Company', 114) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (548, N'Moat Mountain Smoke House & Brew...', 265) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (549, N'Prescott Brewing Company', 296) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (550, N'Mogollon Brewing Company', 124) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (551, N'Wind River Brewing Company', 284) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (552, N'Silverton Brewery', 328) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (553, N'Mickey Finn''s Brewery', 202) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (554, N'Covington Brewhouse', 89) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (555, N'Dave''s Brewfarm', 393) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (556, N'Ukiah Brewing Company', 370) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (557, N'Butternuts Beer and Ale', 136) | |
GO | |
INSERT [dbo].[Brewery] ([BreweryID], [BreweryName], [CityID]) VALUES (558, N'Sleeping Lady Brewing Company', 8) | |
GO | |
SET IDENTITY_INSERT [dbo].[City] ON | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (1, N'Abingdon', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (2, N'Abita Springs', N'LA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (3, N'Ada', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (4, N'Afton', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (5, N'Airway Heights', N'WA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (6, N'Albuquerque', N'NM') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (7, N'Alpine', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (8, N'Anchorage', N'AK') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (9, N'Angola', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (10, N'Ann Arbor', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (11, N'Arrington', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (12, N'Arvada', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (13, N'Ashburn', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (14, N'Asheville', N'NC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (15, N'Ashland', N'OR') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (16, N'Ashland', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (17, N'Aspen', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (18, N'Astoria', N'OR') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (19, N'Athens', N'GA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (20, N'Athens', N'OH') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (21, N'Atlanta', N'GA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (22, N'Atlantic Highlands', N'NJ') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (23, N'Aurora', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (24, N'Aurora', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (25, N'Austin', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (26, N'Avon', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (27, N'Baltimore', N'MD') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (28, N'Bargersville', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (29, N'Baton Rouge', N'LA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (30, N'Battle Creek', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (31, N'Belfast', N'ME') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (32, N'Bellingham', N'WA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (33, N'Belmont', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (34, N'Belt', N'MT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (35, N'Bend', N'OR') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (36, N'Biglerville', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (37, N'Birmingham', N'AL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (38, N'Birmingham', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (39, N'Black Mountain', N'NC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (40, N'Blanco', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (41, N'Bloomfield', N'CT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (42, N'Bloomington', N'IL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (43, N'Bloomington', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (44, N'Boise', N'ID') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (45, N'Boone', N'NC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (46, N'Boonville', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (47, N'Boston', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (48, N'Boulder', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (49, N'Boynton Beach', N'FL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (50, N'Bozeman', N'MT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (51, N'Brevard', N'NC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (52, N'Bridgewater Corners', N'VT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (53, N'Bridgman', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (54, N'Bronx', N'NY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (55, N'Brooklyn', N'NY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (56, N'Brooklyn Center', N'MN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (57, N'Broomfield', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (58, N'Bucryus', N'MO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (59, N'Buellton', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (60, N'Buena Vista', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (61, N'Burlington', N'VT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (62, N'Cambridge', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (63, N'Canton', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (64, N'Carlsbad', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (65, N'Centralia', N'WA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (66, N'Chandler', N'AZ') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (67, N'Charleston', N'SC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (68, N'Charlotte', N'NC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (69, N'Charlottesville', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (70, N'Chatham', N'NY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (71, N'Chattanooga', N'TN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (72, N'Cheboygan', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (73, N'Cherry Hill', N'NJ') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (74, N'Chicago', N'IL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (75, N'Chico', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (76, N'Cincinnati', N'OH') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (77, N'Claremont', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (78, N'Cleveland', N'OH') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (79, N'Cold Spring', N'MN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (80, N'College Station', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (81, N'Colorado Springs', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (82, N'Columbus', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (83, N'Columbus', N'OH') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (84, N'Comstock Park', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (85, N'Conestoga', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (86, N'Conroe', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (87, N'Cortland', N'NE') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (88, N'Corvallis', N'OR') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (89, N'Covington', N'LA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (90, N'Croydon', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (91, N'Crozet', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (92, N'Dallas', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (93, N'Danville', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (94, N'Davenport', N'IA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (95, N'Dayton', N'OH') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (96, N'Denton', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (97, N'Denver', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (98, N'Des Moines', N'IA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (99, N'Detroit', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (100, N'Diamond Springs', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (101, N'Dillon', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (102, N'Dolores', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (103, N'Douglas', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (104, N'Dripping Springs', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (105, N'Duluth', N'MN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (106, N'Dunedin', N'FL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (107, N'Durango', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (108, N'Durham', N'NC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (109, N'Eagle', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (110, N'East Fairfield', N'VT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (111, N'East Windsor', N'CT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (112, N'Eau Claire', N'WI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (113, N'Edwards', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (114, N'Elmira', N'NY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (115, N'Erie', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (116, N'Estacada', N'OR') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (117, N'Eugene', N'OR') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (118, N'Evanston', N'IL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (119, N'Evansville', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (120, N'Everett', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (121, N'Export', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (122, N'Fargo', N'ND') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (123, N'Farmers Branch', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (124, N'Flagstaff', N'AZ') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (125, N'Fort Collins', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (126, N'Fort Wayne', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (127, N'Fort Worth', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (128, N'Framingham', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (129, N'Frankenmuth', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (130, N'Frederick', N'MD') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (131, N'Fredericksburg', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (132, N'Fuquay-Varina', N'NC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (133, N'Gadsden', N'AL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (134, N'Gainesville', N'FL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (135, N'Garden City', N'ID') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (136, N'Garrattsville', N'NY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (137, N'Gary', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (138, N'Gig Harbor', N'WA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (139, N'Glendale', N'WI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (140, N'Gloucester', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (141, N'Golden', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (142, N'Grand Rapids', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (143, N'Granger', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (144, N'Greeley', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (145, N'Green Bay', N'WI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (146, N'Greenville', N'DE') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (147, N'Greenville', N'SC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (148, N'Halethorpe', N'MD') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (149, N'Half Moon Bay', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (150, N'Hamilton', N'MT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (151, N'Hardy', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (152, N'Hattiesburg', N'MS') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (153, N'Hays', N'KS') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (154, N'Hayward', N'WI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (155, N'Helena', N'MT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (156, N'Henderson', N'NV') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (157, N'Hershey', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (158, N'Hilo', N'HI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (159, N'Holland', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (160, N'Hooksett', N'NH') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (161, N'Houghton', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (162, N'Houston', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (163, N'Hudsonville', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (164, N'Huntsville', N'AL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (165, N'Hyannis', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (166, N'Idaho Springs', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (167, N'Indianapolis', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (168, N'Ipswich', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (169, N'Jackson', N'MS') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (170, N'Jackson', N'WY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (171, N'Jacksonville', N'FL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (172, N'Jacksonville Beach', N'FL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (173, N'Juneau', N'AK') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (174, N'Kalamazoo', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (175, N'Kalona', N'IA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (176, N'Kansas City', N'MO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (177, N'Kearney', N'NE') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (178, N'Kent', N'WA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (179, N'Kinston', N'NC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (180, N'Kirkwood', N'MO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (181, N'Knoxville', N'IA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (182, N'Kona', N'HI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (183, N'Krebs', N'OK') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (184, N'Lafayette', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (185, N'Lahaina', N'HI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (186, N'Lake Barrington', N'IL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (187, N'Lake Geneva', N'WI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (188, N'Lake Havasu City', N'AZ') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (189, N'Lakeside', N'MT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (190, N'Lancaster', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (191, N'Lansdale', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (192, N'Latrobe', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (193, N'Laurel', N'MD') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (194, N'Leavenworth', N'KS') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (195, N'Lemont', N'IL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (196, N'Lenoir', N'NC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (197, N'Leominster', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (198, N'Lewisburg', N'WV') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (199, N'Lewiston', N'ME') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (200, N'Lexington', N'KY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (201, N'Lexington', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (202, N'Libertyville', N'IL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (203, N'Lincoln', N'NE') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (204, N'Lockland', N'OH') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (205, N'Lombard', N'IL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (206, N'Lone Tree', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (207, N'Longmont', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (208, N'Los Angeles', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (209, N'Louisville', N'KY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (210, N'Loveland', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (211, N'Lowell', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (212, N'Lyons', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (213, N'Lyons', N'IL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (214, N'Macon', N'GA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (215, N'Madison', N'WI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (216, N'Mammoth Lakes', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (217, N'Manhattan', N'KS') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (218, N'Manheim', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (219, N'Marietta', N'GA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (220, N'Marlborough', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (221, N'Marquette', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (222, N'Marquette', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (223, N'Martinsville', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (224, N'Meadville', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (225, N'Medford', N'OR') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (226, N'Memphis', N'TN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (227, N'Menominee', N'WI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (228, N'Menominie', N'WI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (229, N'Meridian', N'ID') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (230, N'Miami', N'FL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (231, N'Michigan City', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (232, N'Middleburg Heights', N'OH') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (233, N'Middlebury', N'VT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (234, N'Middleton', N'WI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (235, N'Midvale', N'UT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (236, N'Midwest City', N'OK') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (237, N'Mill Valley', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (238, N'Milwaukee', N'WI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (239, N'Minneapolis', N'MN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (240, N'Minnetonka', N'MN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (241, N'Mishawaka', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (242, N'Missoula', N'MT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (243, N'Moab', N'UT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (244, N'Monroe', N'WI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (245, N'Montauk', N'NY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (246, N'Monument', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (247, N'Mooresville', N'NC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (248, N'Morganton', N'NC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (249, N'Mount Pleasant', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (250, N'Mt. Airy', N'MD') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (251, N'Mt. Pleasant', N'SC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (252, N'Murphysboro', N'IL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (253, N'Mustang', N'OK') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (254, N'Myrtle Beach', N'SC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (255, N'Nantucket', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (256, N'Nashville', N'TN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (257, N'Nellysford', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (258, N'New Orleans', N'LA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (259, N'New York', N'NY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (260, N'Newburgh', N'NY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (261, N'Newburyport', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (262, N'Newport', N'OR') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (263, N'Newport', N'RI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (264, N'Norfolk', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (265, N'North Conway', N'NH') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (266, N'North Woodstock', N'NH') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (267, N'Northamtpon', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (268, N'Odessa', N'FL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (269, N'O''Fallon', N'MO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (270, N'Oklahoma City', N'OK') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (271, N'Pacific', N'WA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (272, N'Palisade', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (273, N'Paonia', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (274, N'Papillion', N'NE') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (275, N'Paso Robles', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (276, N'Patchogue', N'NY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (277, N'Paw Paw', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (278, N'Pawcatuck', N'CT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (279, N'Pawtucket', N'RI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (280, N'Petoskey', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (281, N'Philadelphia', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (282, N'Phoenix', N'AZ') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (283, N'Phoenixville', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (284, N'Pinedale', N'WY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (285, N'Pineland', N'ME') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (286, N'Pittsboro', N'NC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (287, N'Pittsburgh', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (288, N'Plainfield', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (289, N'Plant City', N'FL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (290, N'Ponderay', N'ID') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (291, N'Port Clinton', N'OH') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (292, N'Portage', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (293, N'Portland', N'ME') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (294, N'Portland', N'OR') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (295, N'Pottstown', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (296, N'Prescott', N'AZ') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (297, N'Providence', N'RI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (298, N'Raleigh', N'NC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (299, N'Redlands', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (300, N'Reno', N'NV') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (301, N'Richmond', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (302, N'Richmond', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (303, N'Ridgefield Park', N'NJ') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (304, N'Roanoke', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (305, N'Rochester', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (306, N'Rochester', N'NY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (307, N'Rogers', N'AR') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (308, N'Roseville', N'MN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (309, N'Royal Oak', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (310, N'Sacramento', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (311, N'Saint Louis', N'MO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (312, N'Salt Lake City', N'UT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (313, N'San Antonio', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (314, N'San Diego', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (315, N'San Francisco', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (316, N'San Luis Obispo', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (317, N'Santa Cruz', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (318, N'Santa Fe', N'NM') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (319, N'Santee', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (320, N'Savannah', N'GA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (321, N'Seattle', N'WA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (322, N'Seven Points', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (323, N'Sheffield', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (324, N'Shelburne', N'VT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (325, N'Shelbyville', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (326, N'Sheridan', N'WY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (327, N'Shreveport', N'LA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (328, N'Silverton', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (329, N'Silverton', N'OR') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (330, N'Sisters', N'OR') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (331, N'Slippery Rock', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (332, N'Smithton', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (333, N'Soldotna', N'AK') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (334, N'Somerset Center', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (335, N'South Austin', N'TX') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (336, N'South Bend', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (337, N'South Burlington', N'VT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (338, N'South Deerfield', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (339, N'South Lyon', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (340, N'South San Francisco', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (341, N'Southampton', N'NY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (342, N'Spearfish', N'SD') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (343, N'Spirit Lake', N'IA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (344, N'Spring Lake', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (345, N'Springdale', N'AR') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (346, N'Springfield', N'MO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (347, N'Springfield', N'OR') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (348, N'St Mary''s', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (349, N'St Paul', N'MN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (350, N'St Petersburg', N'FL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (351, N'St. John''s', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (352, N'St. Paul', N'MN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (353, N'Stamford', N'CT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (354, N'Stevens Point', N'WI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (355, N'Stevensville', N'MT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (356, N'Stillwater', N'MN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (357, N'Stratford', N'CT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (358, N'Tacoma', N'WA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (359, N'Talkeetna', N'AK') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (360, N'Tampa', N'FL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (361, N'Tampa Bay', N'FL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (362, N'Telluride', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (363, N'Temecula', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (364, N'Tempe', N'AZ') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (365, N'Torrance', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (366, N'Traverse City', N'MI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (367, N'Troutville', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (368, N'Tucson', N'AZ') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (369, N'Tulsa', N'OK') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (370, N'Ukiah', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (371, N'Utica', N'NY') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (372, N'Vadnais Heights', N'MN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (373, N'Valparaiso', N'IN') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (374, N'Verona', N'WI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (375, N'Virginia Beach', N'VA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (376, N'Vista', N'CA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (377, N'Warrenville', N'IL') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (378, N'Washington', N'DC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (379, N'Washougal', N'WA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (380, N'Waterbury', N'VT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (381, N'Waynesville', N'NC') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (382, N'West Chester', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (383, N'Westerly', N'RI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (384, N'Westfield', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (385, N'Westminster', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (386, N'Weston', N'MO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (387, N'White Salmon', N'WA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (388, N'Whitefish', N'MT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (389, N'Wilkes-Barre', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (390, N'Williams', N'AZ') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (391, N'Williamsburg', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (392, N'Wilmington', N'DE') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (393, N'Wilson', N'WI') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (394, N'Windsor', N'CO') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (395, N'Wolcott', N'CT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (396, N'Woodbridge', N'CT') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (397, N'Woodinville', N'WA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (398, N'Worcester', N'MA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (399, N'Yakima', N'WA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (400, N'Yardley', N'PA') | |
GO | |
INSERT [dbo].[City] ([CityID], [CityName], [StateCode]) VALUES (401, N'York', N'PA') | |
GO | |
SET IDENTITY_INSERT [dbo].[City] OFF | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'AK', N'Alaska') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'AL', N'Alabama') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'AR', N'Arkansas') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'AZ', N'Arizona') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'CA', N'California') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'CO', N'Colorado') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'CT', N'Connecticut') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'DC', N'District of Columbia') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'DE', N'Delaware') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'FL', N'Florida') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'GA', N'Georgia') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'HI', N'Hawaii') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'IA', N'Iowa') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'ID', N'Idaho') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'IL', N'Illinois') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'IN', N'Indiana') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'KS', N'Kansas') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'KY', N'Kentucky') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'LA', N'Louisiana') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'MA', N'Massachusetts') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'MD', N'Maryland') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'ME', N'Maine') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'MI', N'Michigan') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'MN', N'Minnesota') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'MO', N'Missouri') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'MS', N'Mississipi') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'MT', N'Montana') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'NC', N'North Carolina') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'ND', N'North Dalota') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'NE', N'Nebreska') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'NH', N'New Hampshire') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'NJ', N'New Jersey') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'NM', N'New Mexico') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'NV', N'Nevada') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'NY', N'New York') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'OH', N'Ohio') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'OK', N'Oklahoma') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'OR', N'Oregon') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'PA', N'Pennsylvania') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'RI', N'Rhode Island') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'SC', N'South Carolina') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'SD', N'South Dakota') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'TN', N'Tennessee') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'TX', N'Texas') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'UT', N'Utah') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'VA', N'Virginia') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'VT', N'Vermont') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'WA', N'Washington') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'WI', N'Wisconsin') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'WV', N'West Virginia') | |
GO | |
INSERT [dbo].[State] ([StateCode], [StateName]) VALUES (N'WY', N'Wyoming') | |
GO | |
SET IDENTITY_INSERT [dbo].[Style] ON | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (1, N'N/A') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (2, N'Abbey Single Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (3, N'Altbier') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (4, N'American Adjunct Lager') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (5, N'American Amber / Red Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (6, N'American Amber / Red Lager') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (7, N'American Barleywine') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (8, N'American Black Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (9, N'American Blonde Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (10, N'American Brown Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (11, N'American Dark Wheat Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (12, N'American Double / Imperial IPA') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (13, N'American Double / Imperial Pilsner') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (14, N'American Double / Imperial Stout') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (15, N'American India Pale Lager') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (16, N'American IPA') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (17, N'American Malt Liquor') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (18, N'American Pale Ale (APA)') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (19, N'American Pale Lager') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (20, N'American Pale Wheat Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (21, N'American Pilsner') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (22, N'American Porter') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (23, N'American Stout') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (24, N'American Strong Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (25, N'American White IPA') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (26, N'American Wild Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (27, N'Baltic Porter') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (28, N'Belgian Dark Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (29, N'Belgian IPA') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (30, N'Belgian Pale Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (31, N'Belgian Strong Dark Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (32, N'Belgian Strong Pale Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (33, N'Berliner Weissbier') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (34, N'Bière de Garde') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (35, N'Bock') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (36, N'Braggot') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (37, N'California Common / Steam Beer') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (38, N'Chile Beer') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (39, N'Cider') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (40, N'Cream Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (41, N'Czech Pilsener') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (42, N'Doppelbock') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (43, N'Dortmunder / Export Lager') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (44, N'Dubbel') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (45, N'Dunkelweizen') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (46, N'English Barleywine') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (47, N'English Bitter') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (48, N'English Brown Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (49, N'English Dark Mild Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (50, N'English India Pale Ale (IPA)') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (51, N'English Pale Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (52, N'English Pale Mild Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (53, N'English Stout') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (54, N'English Strong Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (55, N'Euro Dark Lager') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (56, N'Euro Pale Lager') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (57, N'Extra Special / Strong Bitter (ESB)') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (58, N'Flanders Oud Bruin') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (59, N'Flanders Red Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (60, N'Foreign / Export Stout') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (61, N'Fruit / Vegetable Beer') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (62, N'German Pilsener') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (63, N'Gose') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (64, N'Grisette') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (65, N'Hefeweizen') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (66, N'Herbed / Spiced Beer') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (67, N'Irish Dry Stout') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (68, N'Irish Red Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (69, N'Keller Bier / Zwickel Bier') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (70, N'Kölsch') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (71, N'Kristalweizen') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (72, N'Light Lager') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (73, N'Low Alcohol Beer') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (74, N'Maibock / Helles Bock') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (75, N'Märzen / Oktoberfest') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (76, N'Mead') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (77, N'Milk / Sweet Stout') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (78, N'Munich Dunkel Lager') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (79, N'Munich Helles Lager') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (80, N'Oatmeal Stout') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (81, N'Old Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (82, N'Other') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (83, N'Pumpkin Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (84, N'Quadrupel (Quad)') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (85, N'Radler') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (86, N'Rauchbier') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (87, N'Roggenbier') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (88, N'Russian Imperial Stout') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (89, N'Rye Beer') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (90, N'Saison / Farmhouse Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (91, N'Schwarzbier') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (92, N'Scotch Ale / Wee Heavy') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (93, N'Scottish Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (94, N'Shandy') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (95, N'Smoked Beer') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (96, N'Tripel') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (97, N'Vienna Lager') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (98, N'Wheat Ale') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (99, N'Winter Warmer') | |
GO | |
INSERT [dbo].[Style] ([StyleID], [StyleName]) VALUES (100, N'Witbier') | |
GO | |
SET IDENTITY_INSERT [dbo].[Style] OFF | |
GO | |
ALTER TABLE [dbo].[Beer] WITH CHECK ADD CONSTRAINT [FK_Beer_Brewery] FOREIGN KEY([BreweryID]) | |
REFERENCES [dbo].[Brewery] ([BreweryID]) | |
GO | |
ALTER TABLE [dbo].[Beer] CHECK CONSTRAINT [FK_Beer_Brewery] | |
GO | |
ALTER TABLE [dbo].[Beer] WITH CHECK ADD CONSTRAINT [FK_Beer_Style] FOREIGN KEY([StyleID]) | |
REFERENCES [dbo].[Style] ([StyleID]) | |
GO | |
ALTER TABLE [dbo].[Beer] CHECK CONSTRAINT [FK_Beer_Style] | |
GO | |
ALTER TABLE [dbo].[Brewery] WITH CHECK ADD CONSTRAINT [FK_Brewery_City] FOREIGN KEY([CityID]) | |
REFERENCES [dbo].[City] ([CityID]) | |
GO | |
ALTER TABLE [dbo].[Brewery] CHECK CONSTRAINT [FK_Brewery_City] | |
GO | |
ALTER TABLE [dbo].[City] WITH CHECK ADD CONSTRAINT [FK_City_State] FOREIGN KEY([StateCode]) | |
REFERENCES [dbo].[State] ([StateCode]) | |
GO | |
ALTER TABLE [dbo].[City] CHECK CONSTRAINT [FK_City_State] | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment