I am trying to insert 7 different types of beer into a table I created called Beers using T-SQL. I keep getting errors in my VALUES however with the message:The following error occured while executing the query:\[code\]Server: Msg 156, Level 15, State 1, Line 6Incorrect syntax near the keyword 'VALUES'. Incorrect syntax near the keyword 'VALUES'. Incorrect syntax near the keyword 'VALUES'. Incorrect syntax near the keyword 'VALUES'. Incorrect syntax near the keyword 'VALUES'. Incorrect syntax near the keyword 'VALUES'. Incorrect syntax near the keyword 'VALUES'.\[/code\]Is there something I am missing? I cannot figure out what the error is.Here is my SQL--Add Beers to Database\[code\]SET IDENTITY_INSERT [dbo].[Beers] ONIF NOT EXISTS (SELECT [BeerId] FROM [dbo].[Beers] WHERE [BeerId] = 1) INSERT INTO [dbo].[Beers] ([BeerId], [BeerName], [BeerPricePerBottle], [BeerType], [BeerRating], [Enabled], [DateInserted],[DateLastActivity], VALUES (1, 'Black_Butte', '$9.00', 'porter', NULL, 1, '20071111', '20071111')IF NOT EXISTS (SELECT [BeerId] FROM [dbo].[Beers] WHERE [BeerId] = 2) INSERT INTO [dbo].[Beers] ([BeerId], [BeerName], [BeerPricePerBottle], [BeerType], [BeerRating], [Enabled], [DateInserted],[DateLastActivity], VALUES (2, 'Corona', '$5.00', 'lager', NULL, 1, '20071111', '20071111')IF NOT EXISTS (SELECT [BeerId] FROM [dbo].[Beers] WHERE [BeerId] = 3) INSERT INTO [dbo].[Beers] ([BeerId], [BeerName], [BeerPricePerBottle], [BeerType], [BeerRating], [Enabled], [DateInserted],[DateLastActivity], VALUES (3, 'Duvel', '$12.00', 'pale ale', NULL, 1, '20071111', '20071111')IF NOT EXISTS (SELECT [BeerId] FROM [dbo].[Beers] WHERE [BeerId] = 4) INSERT INTO [dbo].[Beers] ([BeerId], [BeerName], [BeerPricePerBottle], [BeerType], [BeerRating], [Enabled], [DateInserted],[DateLastActivity], VALUES (4, 'Guinness', '$7.00', 'stout', NULL, 1, '20071111', '20071111')IF NOT EXISTS (SELECT [BeerId] FROM [dbo].[Beers] WHERE [BeerId] = 5) INSERT INTO [dbo].[Beers] ([BeerId], [BeerName], [BeerPricePerBottle], [BeerType], [BeerRating], [Enabled], [DateInserted],[DateLastActivity], VALUES (5, 'Heineken', '$6.00', 'lager', NULL, 1, '20071111', '20071111')IF NOT EXISTS (SELECT [BeerId] FROM [dbo].[Beers] WHERE [BeerId] = 6) INSERT INTO [dbo].[Beers] ([BeerId], [BeerName], [BeerPricePerBottle], [BeerType], [BeerRating], [Enabled], [DateInserted],[DateLastActivity], VALUES (6, 'Pilsner_Urquell', '$6.50', 'pilsner', NULL, 1, '20071111', '20071111')IF NOT EXISTS (SELECT [BeerId] FROM [dbo].[Beers] WHERE [BeerId] = 7) INSERT INTO [dbo].[Beers] ([BeerId], [BeerName], [BeerPricePerBottle], [BeerType], [BeerRating], [Enabled], [DateInserted],[DateLastActivity], VALUES (7, 'Stone', '$10.00', 'IPA', NULL, 1, '20071111', '20071111')SET IDENTITY_INSERT [dbo].[Beers] OFF\[/code\]