diff --git a/ERD.png b/ERD.png new file mode 100644 index 0000000..c572c01 Binary files /dev/null and b/ERD.png differ diff --git a/queries/createIndexes.sql b/queries/createIndexes.sql new file mode 100644 index 0000000..f9b9c0c --- /dev/null +++ b/queries/createIndexes.sql @@ -0,0 +1,22 @@ + + + + use RestaurantReservation ; + +-- 1. ReservationId in Orders table +CREATE INDEX idx_orders_reservationid ON Orders(ReservationId); + +-- 2. RestaurantId in Reservations table +CREATE INDEX idx_reservations_restaurantid ON Reservations(RestaurantId); + +-- 3. OrderId in OrderItems table +CREATE INDEX idx_orderitems_orderid ON OrderItems(OrderId); + +-- 4. ItemId in OrderItems table +CREATE INDEX idx_orderitems_itemid ON OrderItems(ItemId); + +-- 5. EmployeeId in Orders table +CREATE INDEX idx_orders_employeeid ON Orders(EmployeeId); + +-- 6. ReservationDate in Reservations table +CREATE INDEX idx_reservations_reservationdate ON Reservations(ReservationDate); \ No newline at end of file diff --git a/queries/fn_CalculateEmployeeSalary.sql b/queries/fn_CalculateEmployeeSalary.sql new file mode 100644 index 0000000..4da2f86 --- /dev/null +++ b/queries/fn_CalculateEmployeeSalary.sql @@ -0,0 +1,25 @@ + + -- **Database Function - Calculate Employees Salary**: + -- **Function Name**: **`fn_CalculateEmployeeSalary`** + -- **Purpose**: Compute the salary for a given employee. + -- **Parameter**: `EmployeeId` + -- **Implementation**: Salary is defined as: # number of orders made by specific employee * employee rank. + -- Employee’s rank based on position: Position = `VIPOrdersWaiter` = 5, `StandardWaiter` = 4, `AssistantWaiter` = 3. + -- **Return**: salary for the `EmployeeId`. + +CREATE FUNCTION fn_CalculateEmployeeSalary(@EmployeeId INT) +RETURNS INT as +begin +DECLARE @cnt INT=(select count(*) from Orders where EmployeeId=@EmployeeId); +DECLARE @pos NVARCHAR(100) = (SELECT Position FROM Employees WHERE EmployeeId = @EmployeeId); +DECLARE @rank INT = CASE + WHEN @pos = 'VIPOrdersWaiter' THEN 5 + WHEN @pos = 'StandardWaiter' THEN 4 + WHEN @pos = 'AssistantWaiter' THEN 3 + ELSE 2 END; + RETURN ISNULL(@cnt,0) * @rank; +end; + SELECT dbo.fn_CalculateEmployeeSalary(2) AS SalaryForEmployee2; + + + diff --git a/queries/fn_CalculateRevenue.sql b/queries/fn_CalculateRevenue.sql new file mode 100644 index 0000000..debf8b1 --- /dev/null +++ b/queries/fn_CalculateRevenue.sql @@ -0,0 +1,19 @@ + + -- **Database Function - Calculate Restaurant Revenue**: + -- - **Function Name**: **`fn_CalculateRevenue`** + -- - **Purpose**: Compute revenue made by a specific restaurant. + -- - **Parameter**: `RestaurantId` + -- - **Return**: total revenue amount for the `RestaurantId` . + +create function fn_CalculateRevenue(@RestaurantId INT) +RETURNS DECIMAL(18,2) as +begin +return( +select ISNULL(SUM(O.TotalAmount),0) + from Orders O + JOIN Reservations r ON o.ReservationId = r.ReservationId + WHERE r.RestaurantId = @RestaurantId + ); +end; + +SELECT dbo.fn_CalculateRevenue(3) AS RevenueForRestaurant1; diff --git a/queries/helperFun.sql b/queries/helperFun.sql new file mode 100644 index 0000000..2ab3d49 --- /dev/null +++ b/queries/helperFun.sql @@ -0,0 +1,20 @@ + + -- 13. **Stored Procedure - Borrowed Books Report**: + -- **Procedure Name**: **`sp_ResrvedTablesReport`** + -- **Purpose**: Generate a report of tables reserved within a specified date range. + -- **Parameters**: **`StartDate`**, **`EndDate`** + -- **Implementation**: Retrieve all tables reserved within the given range, with details like reservation date, party size and restaurant details. + -- **Return**: Tabulated report of reserved tables + + -- GET NEW ID FOR INSERT NEW ORDER +CREATE FUNCTION dbo.fn_GetNextOrderId() +RETURNS INT +AS +BEGIN + DECLARE @NextId INT; + + SELECT @NextId = ISNULL(MAX(OrderId), 0) + 1 + FROM Orders; + + RETURN @NextId; +END; \ No newline at end of file diff --git a/queries/q01_list_reservations_for_customer.sql b/queries/q01_list_reservations_for_customer.sql new file mode 100644 index 0000000..7ab7e2c --- /dev/null +++ b/queries/q01_list_reservations_for_customer.sql @@ -0,0 +1,8 @@ + +use RestaurantReservation ; +-- List all reservations for a specific customer + +DECLARE @CustomerId INT = 1; +SELECT * +FROM Reservations +WHERE CustomerId=@CustomerId; diff --git a/queries/q02_list_managers.sql b/queries/q02_list_managers.sql new file mode 100644 index 0000000..5f5d2a3 --- /dev/null +++ b/queries/q02_list_managers.sql @@ -0,0 +1,7 @@ + +use RestaurantReservation ; +-- List of Managers: Retrieve all employees holding Manager position. + +SELECT * +FROM Employees +WHERE Position = 'Manager'; diff --git a/queries/q03_orders_and_menuitems_for_reservation.sql b/queries/q03_orders_and_menuitems_for_reservation.sql new file mode 100644 index 0000000..7dc0b22 --- /dev/null +++ b/queries/q03_orders_and_menuitems_for_reservation.sql @@ -0,0 +1,13 @@ + +use RestaurantReservation ; +--List of Orders and Menu Items: Lists the orders placed on a specific given reservation along with the associated menu items. + +DECLARE @ReservationId INT = 1; +SELECT * +FROM Orders O +JOIN OrderItems OI +ON O.OrderId=OI.OrderId +JOIN MenuItems MI +ON MI.ItemId=OI.ItemId +WHERE O.ReservationId = @ReservationId; + diff --git a/queries/q04_ordered_menuitems_for_reservation.sql b/queries/q04_ordered_menuitems_for_reservation.sql new file mode 100644 index 0000000..6942e16 --- /dev/null +++ b/queries/q04_ordered_menuitems_for_reservation.sql @@ -0,0 +1,13 @@ + +use RestaurantReservation ; +--List of Ordered Menu Items: Lists the menu items ordered by a specific reservation. + +DECLARE @ReservationId INT = 1; +SELECT MI.* +FROM Orders O +JOIN OrderItems OI +ON O.OrderId = OI.OrderId +JOIN MenuItems MI +ON OI.ItemId = MI.ItemId +WHERE o.ReservationId = @ReservationId; + diff --git a/queries/q05_avg_order_amount_by_employee.sql b/queries/q05_avg_order_amount_by_employee.sql new file mode 100644 index 0000000..d4a491c --- /dev/null +++ b/queries/q05_avg_order_amount_by_employee.sql @@ -0,0 +1,12 @@ + +use RestaurantReservation ; +--Calculate Average Order Amount: Calculate the average order amount made through a specific employee. + +DECLARE @EmployeeId INT =7; + +SELECT emp.EmployeeId,emp.FirstName,emp.LastName, AVG(TotalAmount) AS AvgAmount +FROM Orders o +join Employees emp +on o.EmployeeId=emp.EmployeeId +WHERE o.EmployeeId = @EmployeeId +group by emp.EmployeeId,emp.FirstName,emp.LastName; \ No newline at end of file diff --git a/queries/q08_reservations_with_2plus_orders_cte.sql b/queries/q08_reservations_with_2plus_orders_cte.sql new file mode 100644 index 0000000..b267eab --- /dev/null +++ b/queries/q08_reservations_with_2plus_orders_cte.sql @@ -0,0 +1,15 @@ + +--Reservation’s Order with CTEs: Identify reservations which have 2 or more orders using CTEs. + + +WITH OrdersPerReservation AS ( + SELECT ReservationId, COUNT(*) AS OrdersCount + FROM Orders + WHERE ReservationId IS NOT NULL + GROUP BY ReservationId +) +SELECT * +FROM Reservations R +JOIN OrdersPerReservation OPR +ON R.ReservationId=OPR.ReservationId +WHERE OPR.OrdersCount>=2; \ No newline at end of file diff --git a/queries/q09_restaurant_popularity.sql b/queries/q09_restaurant_popularity.sql new file mode 100644 index 0000000..2382960 --- /dev/null +++ b/queries/q09_restaurant_popularity.sql @@ -0,0 +1,11 @@ + +--Restaurant Popularity using Aggregation: Rank restaurants by the reservation frequency. + + + +SELECT r.RestaurantId, r.Name, + COUNT(res.ReservationId) AS ReservationCount +FROM Restaurants r +LEFT JOIN Reservations res ON r.RestaurantId = res.RestaurantId +GROUP BY r.RestaurantId, r.Name +ORDER BY ReservationCount DESC; \ No newline at end of file diff --git a/queries/q10_popular_menu_item_per_restaurant_month.sql b/queries/q10_popular_menu_item_per_restaurant_month.sql new file mode 100644 index 0000000..f6ef5a2 --- /dev/null +++ b/queries/q10_popular_menu_item_per_restaurant_month.sql @@ -0,0 +1,22 @@ + +--Popular Menu Item Analysis using Joins and Window Functions: Identify the most popular menu item for each restaurant for a given month. +DECLARE @Year INT = 2025; +DECLARE @Month INT = 5; + + +;WITH ItemsInMonth AS ( + SELECT mi.RestaurantId, mi.ItemId, mi.Name, + SUM(oi.Quantity) AS QtySold + FROM OrderItems oi + JOIN Orders o ON oi.OrderId = o.OrderId + JOIN MenuItems mi ON oi.ItemId = mi.ItemId + WHERE YEAR(o.OrderDate) = @Year AND MONTH(o.OrderDate) = @Month + GROUP BY mi.RestaurantId, mi.ItemId, mi.Name +),Ranked AS ( + SELECT RestaurantId, ItemId, Name, QtySold, + ROW_NUMBER() OVER (PARTITION BY RestaurantId ORDER BY QtySold DESC) AS rn + FROM ItemsInMonth +)SELECT RestaurantId, ItemId, Name, QtySold +FROM Ranked +WHERE rn = 1 +ORDER BY RestaurantId; \ No newline at end of file diff --git a/queries/sp_AddNewOrder.sql b/queries/sp_AddNewOrder.sql new file mode 100644 index 0000000..10f45f3 --- /dev/null +++ b/queries/sp_AddNewOrder.sql @@ -0,0 +1,59 @@ + + + + -- **Stored Procedure - Add New Order**: + -- **Procedure Name**: **`sp_AddNewOrder`** + -- **Purpose**: Streamline the process of adding a new order. + -- **Parameters**: **`ReservationId`**, **`EmployeeId`**, **`OrderDate`**, and **`TotalAmount`**. + -- **Implementation**: Check if the specified reservation and employee exist, if not, return an error message, if existing, add new order. + -- **Return**: The new **`OrderId`** or an error message. + +IF OBJECT_ID('dbo.sp_AddNewOrder','P') IS NOT NULL + DROP PROCEDURE dbo.sp_AddNewOrder; +GO + +CREATE PROCEDURE dbo.sp_AddNewOrder + @ReservationId INT, + @EmployeeId INT, + @OrderDate DATETIME, + @TotalAmount DECIMAL(12,2) +AS +BEGIN + SET NOCOUNT ON; + + + IF NOT EXISTS (SELECT 1 FROM Reservations WHERE ReservationId = @ReservationId) + BEGIN + RAISERROR('Reservation not found (ReservationId=%d).',16,1,@ReservationId); + RETURN -1; + END + + + IF NOT EXISTS (SELECT 1 FROM Employees WHERE EmployeeId = @EmployeeId) + BEGIN + RAISERROR('Employee not found (EmployeeId=%d).',16,1,@EmployeeId); + RETURN -2; + END + + + DELETE FROM Orders + WHERE ReservationId = @ReservationId; + + + INSERT INTO Orders (OrderId, ReservationId, EmployeeId, OrderDate, TotalAmount) + VALUES (dbo.fn_GetNextOrderId(), @ReservationId, @EmployeeId, @OrderDate, @TotalAmount); + + + SELECT MAX(OrderId) AS NewOrderId FROM Orders; +END; +GO + + +EXEC dbo.sp_AddNewOrder + @ReservationId = 1, + @EmployeeId = 2000, + @OrderDate = '2025-09-29 14:35', + @TotalAmount = 50.00; + +SELECT MAX(OrderId) AS NewOrderId FROM Orders; +select * from Orders; \ No newline at end of file diff --git a/queries/sp_FutureReservedTables.sql b/queries/sp_FutureReservedTables.sql new file mode 100644 index 0000000..0b4792e --- /dev/null +++ b/queries/sp_FutureReservedTables.sql @@ -0,0 +1,42 @@ + + + --15. **SQL Stored Procedure with Temp Table**: + -- Design a stored procedure that retrieves all tables which have future reservations. + -- Store these tables in a temporary table, then join this temp table with the **`Restaurants`** + -- table to list out the specific information about the associated restaurants. + use RestaurantReservation ; + +CREATE PROCEDURE dbo.sp_FutureReservedTables +AS +BEGIN + SET NOCOUNT ON; + + + IF OBJECT_ID('tempdb..#FutureTables') IS NOT NULL + DROP TABLE #FutureTables; + + + SELECT DISTINCT + t.TableId, + t.RestaurantId, + t.Capacity + INTO #FutureTables + FROM Tables t + JOIN Reservations r ON t.TableId = r.TableId + WHERE r.ReservationDate > GETDATE(); + + + SELECT + ft.TableId, + ft.RestaurantId, + ft.Capacity, + res.Name AS RestaurantName, + res.Address AS RestaurantAddress, + res.PhoneNumber AS RestaurantPhone + FROM #FutureTables ft + LEFT JOIN Restaurants res ON ft.RestaurantId = res.RestaurantId + ORDER BY res.Name, ft.TableId; + +END; + +EXEC dbo.sp_FutureReservedTables; diff --git a/queries/sp_ResrvedTablesReport.sql b/queries/sp_ResrvedTablesReport.sql new file mode 100644 index 0000000..6fb105f --- /dev/null +++ b/queries/sp_ResrvedTablesReport.sql @@ -0,0 +1,25 @@ + + -- 13. **Stored Procedure - Borrowed Books Report**: + -- **Procedure Name**: **`sp_ResrvedTablesReport`** + -- **Purpose**: Generate a report of tables reserved within a specified date range. + -- **Parameters**: **`StartDate`**, **`EndDate`** + -- **Implementation**: Retrieve all tables reserved within the given range, with details like reservation date, party size and restaurant details. + -- **Return**: Tabulated report of reserved tables + +CREATE PROCEDURE sp_ResrvedTablesReport + @StartDate DATETIME, + @EndDate DATETIME +AS +begin + SELECT r.ReservationId, r.ReservationDate, r.PartySize, + rest.RestaurantId, rest.Name AS RestaurantName, rest.Address, rest.PhoneNumber, + r.TableId, + r.CustomerId + FROM Reservations r + JOIN Restaurants rest ON r.RestaurantId = rest.RestaurantId + WHERE r.ReservationDate BETWEEN @StartDate AND @EndDate + +end; +EXEC dbo.sp_ResrvedTablesReport '2025-01-01','2025-02-28'; + + diff --git a/queries/trg_LogReservationAudit.sql b/queries/trg_LogReservationAudit.sql new file mode 100644 index 0000000..94f1f45 --- /dev/null +++ b/queries/trg_LogReservationAudit.sql @@ -0,0 +1,25 @@ + + + --16. **Trigger Implementation** + -- Design a trigger to log an entry into a separate **`AuditLog`** table whenever a table get reserved. + --The **`AuditLog`** should capture `ResturantId`, `TableId`, `ReservationDate` and **`ChangeDate`**. + + use RestaurantReservation ; + +CREATE TABLE dbo.AuditLog ( + AuditId INT IDENTITY(1,1) PRIMARY KEY, + RestaurantId INT, + TableId INT, + ReservationDate DATETIME, + ChangeDate DATETIME DEFAULT GETDATE() +); + +CREATE TRIGGER dbo.trg_LogReservation +ON dbo.Reservations +AFTER INSERT +AS +BEGIN + INSERT INTO dbo.AuditLog (RestaurantId, TableId, ReservationDate) + SELECT RestaurantId, TableId, ReservationDate + FROM inserted; +END; \ No newline at end of file diff --git a/queries/vw_EmployeesFull.sql b/queries/vw_EmployeesFull.sql new file mode 100644 index 0000000..314cab7 --- /dev/null +++ b/queries/vw_EmployeesFull.sql @@ -0,0 +1,12 @@ + +--Retrieve Employees details with Views: Use a view to list all employees information including their restaurants details + + +CREATE VIEW EmployeesFull +AS +SELECT e.EmployeeId, e.FirstName, e.LastName, e.Position, e.RestaurantId, + r.Name AS RestaurantName, r.Address AS RestaurantAddress, r.PhoneNumber AS RestaurantPhone +FROM Employees e +JOIN Restaurants r ON e.RestaurantId = r.RestaurantId; + +SELECT * FROM EmployeesFull; \ No newline at end of file diff --git a/queries/vw_ReservationsFull.sql b/queries/vw_ReservationsFull.sql new file mode 100644 index 0000000..71ade92 --- /dev/null +++ b/queries/vw_ReservationsFull.sql @@ -0,0 +1,14 @@ + +--Retrieve Reservations Report with Views: Use a view to list all reservations information including restaurants and customers information. + + +CREATE VIEW ReservationsReport AS + SELECT r.ReservationId, r.ReservationDate, r.PartySize, r.TableId, + c.CustomerId, c.FirstName AS CustomerFirstName, c.LastName AS CustomerLastName, c.Email, c.PhoneNumber AS CustomerPhone, + res.RestaurantId, res.Name AS RestaurantName, res.Address AS RestaurantAddress, res.PhoneNumber AS RestaurantPhone + +FROM Reservations r +JOIN Customers c ON r.CustomerId = c.CustomerId +JOIN Restaurants res ON r.RestaurantId = res.RestaurantId; + +SELECT * FROM ReservationsReport; diff --git a/schema/010_RestaurantsSeed.sql b/schema/010_RestaurantsSeed.sql new file mode 100644 index 0000000..4c4dc0e --- /dev/null +++ b/schema/010_RestaurantsSeed.sql @@ -0,0 +1,53 @@ + +use RestaurantReservation ; +INSERT INTO Restaurants +VALUES (1,N'Feedbug',N'85458 Little Fleur Street',N'576-497-2023',N'10:00-22:00'), + (2,N'Dabfeed',N'20 Montana Park',N'985-612-5435',N'11:00-20:00'), + (3,N'Camido',N'6 Northland Terrace',N'283-349-6563',N'11:00-20:00'), + (4,N'Fatz',N'5302 Barnett Center',N'617-669-7116',N'10:00-18:00'), + (5,N'Quimba',N'22267 Bellgrove Court',N'585-859-2558',N'09:00-17:00'), + (6,N'Edgepulse',N'9 Oak Court',N'137-831-5691',N'11:00-20:00'), + (7,N'Livepath',N'02529 Grim Center',N'272-705-1871',N'09:30-21:00'), + (8,N'Demivee',N'12313 Nevada Park',N'655-599-2172',N'11:00-20:00'), + (9,N'Yombu',N'01 Walton Terrace',N'272-405-2300',N'11:00-20:00'), + (10,N'Skiptube',N'17181 Graedel Way',N'813-756-8022',N'09:30-21:00'), + (11,N'Digitube',N'55 Esker Terrace',N'285-302-0663',N'09:30-21:00'), + (12,N'Babbleopia',N'3 Green Ridge Parkway',N'270-722-7269',N'11:00-20:00'), + (13,N'Tagpad',N'178 East Drive',N'298-333-8132',N'10:00-22:00'), + (14,N'Realcube',N'37093 Homewood Court',N'204-830-4624',N'09:30-21:00'), + (15,N'Camimbo',N'8 8th Circle',N'469-680-6508',N'09:00-17:00'), + (16,N'Brightbean',N'9 Barnett Point',N'811-286-4011',N'10:00-22:00'), + (17,N'Tambee',N'51 Gerald Center',N'944-726-1825',N'10:00-18:00'), + (18,N'Avamm',N'63 Orin Road',N'624-882-8959',N'09:00-17:00'), + (19,N'Midel',N'860 Esch Alley',N'931-348-6372',N'11:00-20:00'), + (20,N'Riffpedia',N'6 Charing Cross Hill',N'358-416-5933',N'10:00-18:00'), + (21,N'Browseblab',N'11455 Basil Hill',N'651-330-6018',N'09:30-21:00'), + (22,N'Twitterwire',N'815 Monica Park',N'580-989-1670',N'11:00-20:00'), + (23,N'Gabtype',N'79050 Portage Place',N'753-375-0675',N'09:30-21:00'), + (24,N'Flipbug',N'3 Hermina Avenue',N'503-127-5049',N'09:30-21:00'), + (25,N'Jatri',N'1 Dunning Circle',N'412-296-8497',N'10:00-18:00'), + (26,N'Wikibox',N'63827 Acker Terrace',N'331-209-4767',N'10:00-22:00'), + (27,N'Oyoba',N'277 Stone Corner Road',N'431-371-4791',N'10:00-18:00'), + (28,N'Yotz',N'3236 Valley Edge Lane',N'705-258-7465',N'10:00-22:00'), + (29,N'Twitterwire',N'48436 Mandrake Center',N'429-140-1116',N'10:00-18:00'), + (30,N'Zoomzone',N'0 Jackson Drive',N'239-259-0413',N'11:00-20:00'), + (31,N'Vidoo',N'0 Sullivan Parkway',N'584-799-4496',N'10:00-18:00'), + (32,N'Divavu',N'51546 Vermont Way',N'438-394-6840',N'11:00-20:00'), + (33,N'Buzzbean',N'5 Lunder Lane',N'798-595-9993',N'11:00-20:00'), + (34,N'Buzzbean',N'349 6th Place',N'291-820-7063',N'10:00-18:00'), + (35,N'Jaxspan',N'045 Everett Plaza',N'533-666-0856',N'09:30-21:00'), + (36,N'Dabvine',N'6300 Marquette Crossing',N'520-222-4935',N'10:00-22:00'), + (37,N'Twimm',N'381 Washington Park',N'674-431-1769',N'10:00-18:00'), + (38,N'Kazio',N'02126 Waywood Place',N'141-650-5280',N'11:00-20:00'), + (39,N'Meezzy',N'1557 Bunting Court',N'879-831-2092',N'11:00-20:00'), + (40,N'Mudo',N'24 Clyde Gallagher Court',N'642-384-5990',N'09:30-21:00'), + (41,N'Flashpoint',N'52 Judy Hill',N'534-286-9352',N'09:00-17:00'), + (42,N'Youopia',N'17 Maryland Place',N'713-386-3719',N'11:00-20:00'), + (43,N'Wikibox',N'2838 Express Point',N'714-406-0552',N'11:00-20:00'), + (44,N'Jabberbean',N'60226 Susan Park',N'834-669-8952',N'11:00-20:00'), + (45,N'Mybuzz',N'46 Troy Circle',N'294-193-8909',N'10:00-22:00'), + (46,N'Twitterworks',N'5 Becker Center',N'983-895-8989',N'09:30-21:00'), + (47,N'Tagchat',N'2 Clove Court',N'973-146-5884',N'09:00-17:00'), + (48,N'Yakidoo',N'117 Dottie Drive',N'127-850-2478',N'11:00-20:00'), + (49,N'Blognation',N'7 Maywood Way',N'498-229-1702',N'11:00-20:00'), + (50,N'Jabbertype',N'1053 Claremont Terrace',N'978-662-5421',N'09:00-17:00'); \ No newline at end of file diff --git a/schema/011_CustomersSeed.sql b/schema/011_CustomersSeed.sql new file mode 100644 index 0000000..1f3b2b1 --- /dev/null +++ b/schema/011_CustomersSeed.sql @@ -0,0 +1,403 @@ + +use RestaurantReservation ; +INSERT INTO Customers VALUES + (1,N'Rafferty',N'Totaro',N'rtotaro0@nsw.gov.au',N'802-510-0125'), + (2,N'Javier',N'Pringle',N'jpringle1@photobucket.com',N'865-517-9694'), + (3,N'Ashil',N'Vizard',N'avizard2@edublogs.org',N'883-912-8773'), + (4,N'Juanita',N'Ruste',N'jruste3@intel.com',N'486-732-3869'), + (5,N'Lucio',N'Musso',N'lmusso4@independent.co.uk',N'519-623-0560'), + (6,N'Shara',N'Wickrath',N'swickrath5@mit.edu',N'810-158-1436'), + (7,N'Michelina',N'Sissot',N'msissot6@smh.com.au',N'854-288-1805'), + (8,N'Oliviero',N'Kellar',N'okellar7@google.es',N'429-439-2623'), + (9,N'Whit',N'Rochell',N'wrochell8@ebay.co.uk',N'630-993-5662'), + (10,N'Forbes',N'Biddlecombe',N'fbiddlecombe9@walmart.com',N'336-469-6360'), + (11,N'Ricky',N'Allman',N'rallmana@npr.org',N'644-745-0393'), + (12,N'Raynell',N'Eatttok',N'reatttokb@netlog.com',N'874-939-6411'), + (13,N'Glenden',N'Gauthorpp',N'ggauthorppc@unc.edu',N'132-757-8100'), + (14,N'Denis',N'Lyddon',N'dlyddond@tripod.com',N'819-640-3644'), + (15,N'Felic',N'Kolczynski',N'fkolczynskie@about.me',N'784-795-6912'), + (16,N'Brett',N'Tewkesbury.',N'btewkesburyf@amazonaws.com',N'150-805-1686'), + (17,N'Meg',N'Chstney',N'mchstneyg@tinyurl.com',N'477-831-1809'), + (18,N'William',N'Morrice',N'wmorriceh@europa.eu',N'506-786-7100'), + (19,N'Marten',N'Bucklee',N'mbuckleei@slashdot.org',N'896-776-1929'), + (20,N'Doralia',N'McCarron',N'dmccarronj@newyorker.com',N'421-194-5899'), + (21,N'Lianna',N'Kersaw',N'lkersawk@altervista.org',N'657-363-7847'), + (22,N'Irv',N'Wiggall',N'iwiggalll@latimes.com',N'990-945-9031'), + (23,N'Lyndel',N'Bugs',N'lbugsm@bandcamp.com',N'642-838-6083'), + (24,N'Barney',N'Hasley',N'bhasleyn@jimdo.com',N'485-448-2173'), + (25,N'Merill',N'Drummond',N'mdrummondo@archive.org',N'127-161-3500'), + (26,N'Adria',N'Gascoine',N'agascoinep@blogspot.com',N'937-278-2306'), + (27,N'Myrah',N'Biffin',N'mbiffinq@taobao.com',N'706-834-7922'), + (28,N'Ellyn',N'Beller',N'ebellerr@mit.edu',N'872-217-1248'), + (29,N'Erek',N'Quogan',N'equogans@bloglovin.com',N'949-970-6206'), + (30,N'Windham',N'Gregh',N'wgreght@wikia.com',N'884-494-3211'), + (31,N'Maudie',N'Kingsley',N'mkingsleyu@etsy.com',N'225-482-1445'), + (32,N'Durand',N'Buswell',N'dbuswellv@home.pl',N'267-538-7263'), + (33,N'Gwenore',N'Owers',N'gowersw@prweb.com',N'961-382-3249'), + (34,N'Eugenie',N'Feldhorn',N'efeldhornx@slideshare.net',N'184-305-2909'), + (35,N'Merilee',N'Stocken',N'mstockeny@nymag.com',N'790-817-3848'), + (36,N'Nikaniki',N'Baughn',N'nbaughnz@google.com.hk',N'391-909-0777'), + (37,N'Ephrem',N'Hake',N'ehake10@eepurl.com',N'714-815-1549'), + (38,N'Katharyn',N'Livermore',N'klivermore11@state.tx.us',N'440-674-1562'), + (39,N'Abrahan',N'Allender',N'aallender12@sun.com',N'339-517-6872'), + (40,N'Adey',N'Mudle',N'amudle13@reference.com',N'264-654-9174'), + (41,N'Cameron',N'Duffus',N'cduffus14@webs.com',N'547-982-2277'), + (42,N'Findley',N'Tyas',N'ftyas15@clickbank.net',N'668-394-0309'), + (43,N'Rory',N'Tenny',N'rtenny16@ning.com',N'766-447-8134'), + (44,N'Coop',N'Rolfe',N'crolfe17@auda.org.au',N'948-850-8715'), + (45,N'Ruggiero',N'Iley',N'riley18@jimdo.com',N'480-587-9154'), + (46,N'Caritta',N'Goligly',N'cgoligly19@ustream.tv',N'497-964-0660'), + (47,N'Kristoffer',N'Castleton',N'kcastleton1a@senate.gov',N'180-776-3325'), + (48,N'Barbabas',N'Goudman',N'bgoudman1b@nydailynews.com',N'962-325-0502'), + (49,N'Glenn',N'Le Borgne',N'gleborgne1c@blogger.com',N'735-931-3149'), + (50,N'Donavon',N'Bister',N'dbister1d@yolasite.com',N'311-584-6863'), + (51,N'Emmey',N'Mazonowicz',N'emazonowicz1e@google.com',N'681-906-0933'), + (52,N'Rory',N'Mattys',N'rmattys1f@reverbnation.com',N'923-797-4672'), + (53,N'Bertrand',N'Croughan',N'bcroughan1g@netvibes.com',N'888-218-7515'), + (54,N'Deerdre',N'Duffell',N'dduffell1h@rakuten.co.jp',N'880-951-1440'), + (55,N'Dasya',N'Olivari',N'dolivari1i@noaa.gov',N'408-387-1279'), + (56,N'Patti',N'Zamorrano',N'pzamorrano1j@ihg.com',N'391-213-4080'), + (57,N'Gallagher',N'Klauber',N'gklauber1k@yale.edu',N'848-811-9313'), + (58,N'Hana',N'Morena',N'hmorena1l@squidoo.com',N'830-570-5154'), + (59,N'Ozzie',N'Lethby',N'olethby1m@usnews.com',N'302-687-4006'), + (60,N'Bern',N'Syplus',N'bsyplus1n@deliciousdays.com',N'132-244-9275'), + (61,N'Humphrey',N'Linsay',N'hlinsay1o@nbcnews.com',N'499-474-3726'), + (62,N'Gwendolyn',N'Kynston',N'gkynston1p@telegraph.co.uk',N'133-893-3404'), + (63,N'Berk',N'Van Schafflaer',N'bvanschafflaer1q@pagesperso-orange.fr',N'128-548-1662'), + (64,N'Gal',N'Lednor',N'glednor1r@pcworld.com',N'506-952-8204'), + (65,N'Celestyn',N'Whitworth',N'cwhitworth1s@blogspot.com',N'199-472-0227'), + (66,N'Neile',N'Ellesmere',N'nellesmere1t@mtv.com',N'270-265-7857'), + (67,N'Haleigh',N'Tinto',N'htinto1u@sogou.com',N'238-111-2877'), + (68,N'Emmalynn',N'Heinke',N'eheinke1v@vimeo.com',N'144-933-4249'), + (69,N'Fabe',N'Creany',N'fcreany1w@nifty.com',N'513-895-6555'), + (70,N'Lief',N'Chaytor',N'lchaytor1x@plala.or.jp',N'214-135-5769'), + (71,N'Sheree',N'Preator',N'spreator1y@xinhuanet.com',N'898-612-4372'), + (72,N'Wilfred',N'Bezemer',N'wbezemer1z@mtv.com',N'798-330-6543'), + (73,N'Louis',N'Shafe',N'lshafe20@theglobeandmail.com',N'376-753-6152'), + (74,N'Tessy',N'Millhouse',N'tmillhouse21@4shared.com',N'304-435-1563'), + (75,N'Elroy',N'Vasilik',N'evasilik22@digg.com',N'993-323-4442'), + (76,N'Omero',N'Duggen',N'oduggen23@cmu.edu',N'340-521-4186'), + (77,N'Dory',N'Coulman',N'dcoulman24@hhs.gov',N'932-623-1253'), + (78,N'Ardene',N'Jiggen',N'ajiggen25@delicious.com',N'436-593-8154'), + (79,N'Carl',N'Antonoczyk',N'cantonoczyk26@networksolutions.com',N'628-987-8699'), + (80,N'Austin',N'Mustoo',N'amustoo27@scribd.com',N'430-219-8020'), + (81,N'Vonny',N'Alywen',N'valywen28@bravesites.com',N'987-301-3407'), + (82,N'Paolina',N'Dominy',N'pdominy29@soup.io',N'346-964-9022'), + (83,N'Ogdon',N'Ronca',N'oronca2a@noaa.gov',N'455-348-4765'), + (84,N'Tomi',N'Yetts',N'tyetts2b@blogs.com',N'886-723-4952'), + (85,N'Constantin',N'Sparks',N'csparks2c@youku.com',N'346-113-2138'), + (86,N'Dom',N'Donaldson',N'ddonaldson2d@youtu.be',N'505-354-1937'), + (87,N'Yasmeen',N'Simyson',N'ysimyson2e@house.gov',N'879-269-7170'), + (88,N'Jodie',N'Domesday',N'jdomesday2f@timesonline.co.uk',N'106-541-6212'), + (89,N'Atlanta',N'Janko',N'ajanko2g@chron.com',N'566-430-8526'), + (90,N'Barbette',N'Harbard',N'bharbard2h@studiopress.com',N'973-779-3092'), + (91,N'Nerissa',N'Aberdalgy',N'naberdalgy2i@thetimes.co.uk',N'816-100-0169'), + (92,N'Kelly',N'Gogerty',N'kgogerty2j@google.com',N'873-627-1277'), + (93,N'Miller',N'Kohler',N'mkohler2k@omniture.com',N'684-185-9811'), + (94,N'Parke',N'Hacun',N'phacun2l@ustream.tv',N'737-605-0586'), + (95,N'Brendin',N'Guildford',N'bguildford2m@google.ca',N'289-928-0653'), + (96,N'Ofella',N'Cristou',N'ocristou2n@google.com.br',N'984-323-3861'), + (97,N'Lyssa',N'Macauley',N'lmacauley2o@stumbleupon.com',N'468-968-5188'), + (98,N'Neville',N'Mushet',N'nmushet2p@cnet.com',N'960-519-1730'), + (99,N'Lowell',N'McDonell',N'lmcdonell2q@businesswire.com',N'367-552-5146'), + (100,N'Elka',N'Choppin',N'echoppin2r@ustream.tv',N'578-753-2413'), + (101,N'Nyssa',N'Scutchings',N'nscutchings2s@list-manage.com',N'286-992-9932'), + (102,N'Kean',N'Krystek',N'kkrystek2t@google.com',N'331-763-1607'), + (103,N'Cecily',N'Tunnoch',N'ctunnoch2u@github.com',N'995-804-2606'), + (104,N'Arie',N'McClaren',N'amcclaren2v@acquirethisname.com',N'255-954-3223'), + (105,N'Kipper',N'Petr',N'kpetr2w@vkontakte.ru',N'164-636-7053'), + (106,N'Aile',N'Gwalter',N'agwalter2x@vkontakte.ru',N'769-299-7471'), + (107,N'Sibbie',N'Metheringham',N'smetheringham2y@unicef.org',N'437-880-5010'), + (108,N'Payton',N'Jeffree',N'pjeffree2z@google.nl',N'343-965-9708'), + (109,N'Dede',N'Kiggel',N'dkiggel30@reuters.com',N'609-930-0036'), + (110,N'Nanci',N'Eakly',N'neakly31@free.fr',N'440-916-4786'), + (111,N'Letisha',N'Veschi',N'lveschi32@delicious.com',N'939-641-2210'), + (112,N'Jennifer',N'Massingham',N'jmassingham33@sogou.com',N'346-594-5151'), + (113,N'Sutherland',N'Olkowicz',N'solkowicz34@tmall.com',N'112-262-4670'), + (114,N'Emmaline',N'Lee',N'elee35@google.pl',N'582-141-8419'), + (115,N'Zara',N'Baine',N'zbaine36@cafepress.com',N'624-866-1778'), + (116,N'Marlon',N'O''Lahy',N'molahy37@ted.com',N'275-537-6207'), + (117,N'Gena',N'Ferrar',N'gferrar38@indiatimes.com',N'109-131-0897'), + (118,N'Elmore',N'Brugh',N'ebrugh39@ibm.com',N'370-856-0994'), + (119,N'Tori',N'Norville',N'tnorville3a@dyndns.org',N'416-858-1824'), + (120,N'Prescott',N'Chesson',N'pchesson3b@about.me',N'977-265-2365'), + (121,N'Cale',N'Ling',N'cling3c@sphinn.com',N'413-599-8382'), + (122,N'Adelaida',N'Sprasen',N'asprasen3d@harvard.edu',N'583-222-8963'), + (123,N'Shell',N'Hendriks',N'shendriks3e@tripod.com',N'248-214-3782'), + (124,N'Merv',N'Jelks',N'mjelks3f@yandex.ru',N'570-374-0009'), + (125,N'Ruperta',N'Tilsley',N'rtilsley3g@unesco.org',N'628-780-2261'), + (126,N'Gordan',N'Asel',N'gasel3h@photobucket.com',N'801-799-1065'), + (127,N'Miller',N'Hallworth',N'mhallworth3i@godaddy.com',N'218-711-2302'), + (128,N'Sid',N'Spain-Gower',N'sspaingower3j@slate.com',N'651-279-4222'), + (129,N'Helyn',N'Eyckel',N'heyckel3k@timesonline.co.uk',N'991-266-7881'), + (130,N'Cheryl',N'Vallance',N'cvallance3l@newyorker.com',N'925-905-2229'), + (131,N'Philippine',N'McKennan',N'pmckennan3m@marriott.com',N'271-451-9426'), + (132,N'Thatcher',N'Timpany',N'ttimpany3n@trellian.com',N'932-532-6887'), + (133,N'Fredelia',N'Claussen',N'fclaussen3o@alibaba.com',N'814-297-2038'), + (134,N'El',N'Brinsden',N'ebrinsden3p@vinaora.com',N'648-695-3657'), + (135,N'Zacharie',N'Wratten',N'zwratten3q@unicef.org',N'459-753-1659'), + (136,N'Mimi',N'Gidman',N'mgidman3r@craigslist.org',N'308-371-8432'), + (137,N'Minny',N'Rickert',N'mrickert3s@weebly.com',N'555-546-5524'), + (138,N'Melodee',N'Hunday',N'mhunday3t@theglobeandmail.com',N'183-173-2118'), + (139,N'Rogerio',N'Blewis',N'rblewis3u@bigcartel.com',N'994-693-1783'), + (140,N'Manon',N'Yakunin',N'myakunin3v@google.cn',N'347-312-8776'), + (141,N'Randi',N'Fairbairn',N'rfairbairn3w@virginia.edu',N'726-727-2573'), + (142,N'Vanya',N'Repp',N'vrepp3x@omniture.com',N'260-163-6232'), + (143,N'Caron',N'Lanphier',N'clanphier3y@nymag.com',N'865-576-4071'), + (144,N'Fayina',N'Jeaffreson',N'fjeaffreson3z@surveymonkey.com',N'479-318-1220'), + (145,N'Atlante',N'Rankin',N'arankin40@goodreads.com',N'851-590-2163'), + (146,N'Hammad',N'Sill',N'hsill41@fotki.com',N'860-818-9817'), + (147,N'Shelby',N'Satterfitt',N'ssatterfitt42@pinterest.com',N'539-332-9325'), + (148,N'Loren',N'Benedetti',N'lbenedetti43@usnews.com',N'848-960-5941'), + (149,N'Gilly',N'Tunsley',N'gtunsley44@arizona.edu',N'736-658-2561'), + (150,N'Wallis',N'Geleman',N'wgeleman45@merriam-webster.com',N'369-254-0263'), + (151,N'Morena',N'Ruseworth',N'mruseworth46@merriam-webster.com',N'457-860-1942'), + (152,N'Bastian',N'Restall',N'brestall47@paginegialle.it',N'524-401-9813'), + (153,N'Penelopa',N'Summerlie',N'psummerlie48@thetimes.co.uk',N'915-130-1027'), + (154,N'Cordelia',N'Philliskirk',N'cphilliskirk49@wordpress.org',N'713-501-0204'), + (155,N'Meagan',N'Brimfield',N'mbrimfield4a@exblog.jp',N'470-821-8337'), + (156,N'Rowena',N'Le Gallo',N'rlegallo4b@gmpg.org',N'406-989-4326'), + (157,N'Virgil',N'Reinger',N'vreinger4c@eventbrite.com',N'212-684-2075'), + (158,N'Alphard',N'Rickarsey',N'arickarsey4d@sohu.com',N'158-442-2586'), + (159,N'Kerrill',N'Thorouggood',N'kthorouggood4e@github.io',N'977-459-7393'), + (160,N'Abigail',N'Corteney',N'acorteney4f@cdbaby.com',N'247-369-7438'), + (161,N'Adair',N'Tabbernor',N'atabbernor4g@biblegateway.com',N'713-176-7744'), + (162,N'Gilbertina',N'Plowell',N'gplowell4h@dyndns.org',N'724-249-0475'), + (163,N'Arlena',N'Axon',N'aaxon4i@stumbleupon.com',N'379-230-2144'), + (164,N'Jose',N'Jeaffreson',N'jjeaffreson4j@columbia.edu',N'139-391-1934'), + (165,N'Roley',N'Millmoe',N'rmillmoe4k@posterous.com',N'979-353-1476'), + (166,N'Isa',N'Ashbey',N'iashbey4l@myspace.com',N'796-178-0337'), + (167,N'Irving',N'Jago',N'ijago4m@epa.gov',N'743-414-2725'), + (168,N'Natassia',N'Langan',N'nlangan4n@sun.com',N'162-833-9845'), + (169,N'Gusty',N'Keable',N'gkeable4o@house.gov',N'513-872-9626'), + (170,N'Florida',N'Mulles',N'fmulles4p@t.co',N'112-165-5532'), + (171,N'Wallie',N'Middleweek',N'wmiddleweek4q@usda.gov',N'397-635-0739'), + (172,N'Amalle',N'Lathee',N'alathee4r@github.com',N'625-768-3474'), + (173,N'Reena',N'MacAughtrie',N'rmacaughtrie4s@purevolume.com',N'938-533-9049'), + (174,N'Missy',N'Yakhin',N'myakhin4t@princeton.edu',N'964-230-2515'), + (175,N'Simonette',N'Planks',N'splanks4u@example.com',N'324-291-5327'), + (176,N'Enos',N'Gerrelts',N'egerrelts4v@google.com',N'504-258-9612'), + (177,N'Lory',N'Wishart',N'lwishart4w@nps.gov',N'298-559-3977'), + (178,N'Row',N'Withams',N'rwithams4x@usatoday.com',N'683-424-8111'), + (179,N'Shurlocke',N'Harryman',N'sharryman4y@pinterest.com',N'432-898-6387'), + (180,N'Sabrina',N'Raithmill',N'sraithmill4z@simplemachines.org',N'468-283-4424'), + (181,N'Dimitri',N'Vick',N'dvick50@nationalgeographic.com',N'513-825-9332'), + (182,N'Matilda',N'Gillion',N'mgillion51@noaa.gov',N'785-524-9421'), + (183,N'Eimile',N'Summerlie',N'esummerlie52@photobucket.com',N'945-341-2989'), + (184,N'Monique',N'De''Vere - Hunt',N'mdeverehunt53@usnews.com',N'979-582-9463'), + (185,N'Conan',N'Measor',N'cmeasor54@cnbc.com',N'817-388-7277'), + (186,N'Berk',N'Tremoulet',N'btremoulet55@ebay.com',N'213-554-6314'), + (187,N'Casey',N'Jinkins',N'cjinkins56@github.com',N'805-203-2387'), + (188,N'Magdalena',N'Turfitt',N'mturfitt57@engadget.com',N'906-347-8332'), + (189,N'Obie',N'Rowbottom',N'orowbottom58@miitbeian.gov.cn',N'683-309-5216'), + (190,N'Jonas',N'Brownhill',N'jbrownhill59@goodreads.com',N'271-343-4907'), + (191,N'Lyndel',N'Laidel',N'llaidel5a@liveinternet.ru',N'371-738-2678'), + (192,N'Fredra',N'Munkley',N'fmunkley5b@amazon.com',N'790-497-3658'), + (193,N'Irvin',N'Rickertsen',N'irickertsen5c@icio.us',N'919-355-2599'), + (194,N'Niko',N'Faucett',N'nfaucett5d@fotki.com',N'442-238-4447'), + (195,N'Katya',N'Leblanc',N'kleblanc5e@howstuffworks.com',N'469-373-9330'), + (196,N'Alain',N'Fawkes',N'afawkes5f@php.net',N'793-462-4773'), + (197,N'Alida',N'Leyburn',N'aleyburn5g@admin.ch',N'862-152-2353'), + (198,N'Mirella',N'Lilly',N'mlilly5h@vkontakte.ru',N'766-140-9789'), + (199,N'Baxy',N'Sigars',N'bsigars5i@pen.io',N'668-670-9397'), + (200,N'Aile',N'Hodgon',N'ahodgon5j@va.gov',N'528-369-8787'), + (201,N'Jeddy',N'Musto',N'jmusto5k@noaa.gov',N'330-580-1834'), + (202,N'Gertrud',N'Tooting',N'gtooting5l@wisc.edu',N'193-290-5422'), + (203,N'Misty',N'Cardiff',N'mcardiff5m@qq.com',N'535-433-9445'), + (204,N'Sterne',N'Hubbuck',N'shubbuck5n@addtoany.com',N'917-794-5736'), + (205,N'Lynett',N'Moncey',N'lmoncey5o@flavors.me',N'897-553-0078'), + (206,N'Jobi',N'Dolder',N'jdolder5p@macromedia.com',N'209-675-7741'), + (207,N'Andreana',N'Duxbury',N'aduxbury5q@altervista.org',N'463-832-2693'), + (208,N'Ewen',N'Jossum',N'ejossum5r@icio.us',N'165-675-5006'), + (209,N'Janek',N'Sollis',N'jsollis5s@ehow.com',N'882-630-9175'), + (210,N'Katalin',N'Braim',N'kbraim5t@telegraph.co.uk',N'578-602-6799'), + (211,N'Ofella',N'Ioselev',N'oioselev5u@berkeley.edu',N'857-465-4489'), + (212,N'Madelyn',N'Mallabar',N'mmallabar5v@ameblo.jp',N'170-929-6667'), + (213,N'Marven',N'Spafford',N'mspafford5w@aboutads.info',N'152-675-5629'), + (214,N'Barn',N'Platts',N'bplatts5x@hubpages.com',N'876-482-8127'), + (215,N'Xerxes',N'Liston',N'xliston5y@yale.edu',N'367-388-7145'), + (216,N'Nata',N'Jenman',N'njenman5z@washington.edu',N'984-256-1483'), + (217,N'Andres',N'Bleackly',N'ableackly60@dedecms.com',N'704-924-9883'), + (218,N'Laurella',N'Jotham',N'ljotham61@usnews.com',N'425-183-0437'), + (219,N'Eveline',N'Gibbins',N'egibbins62@google.co.uk',N'339-590-6568'), + (220,N'Amanda',N'Isles',N'aisles63@soup.io',N'989-880-5860'), + (221,N'Cobbie',N'Michelle',N'cmichelle64@hc360.com',N'912-352-2079'), + (222,N'Suzanne',N'Skahill',N'sskahill65@youku.com',N'474-690-7158'), + (223,N'Abbey',N'Harcarse',N'aharcarse66@cam.ac.uk',N'770-333-6991'), + (224,N'Netti',N'Houliston',N'nhouliston67@gravatar.com',N'398-945-1313'), + (225,N'Aurie',N'Fenny',N'afenny68@cbc.ca',N'971-441-1820'), + (226,N'Cyndy',N'Woollends',N'cwoollends69@facebook.com',N'677-285-7245'), + (227,N'Sarah',N'Cardero',N'scardero6a@ning.com',N'302-174-0845'), + (228,N'Garrik',N'Twigley',N'gtwigley6b@sciencedirect.com',N'677-510-8044'), + (229,N'Vitoria',N'Starbuck',N'vstarbuck6c@wordpress.org',N'998-840-5912'), + (230,N'Elisabetta',N'Reding',N'ereding6d@seesaa.net',N'154-868-9936'), + (231,N'Lynn',N'Feighney',N'lfeighney6e@jugem.jp',N'650-629-4414'), + (232,N'Evangelina',N'Marham',N'emarham6f@wikispaces.com',N'253-331-7785'), + (233,N'Diandra',N'Iacovozzo',N'diacovozzo6g@alibaba.com',N'349-239-2911'), + (234,N'Stormy',N'Bhatia',N'sbhatia6h@noaa.gov',N'101-778-0967'), + (235,N'Marmaduke',N'Soro',N'msoro6i@engadget.com',N'427-212-8890'), + (236,N'Morgen',N'Garz',N'mgarz6j@1688.com',N'672-752-5345'), + (237,N'Frank',N'Carlon',N'fcarlon6k@businessweek.com',N'607-334-7422'), + (238,N'Cara',N'Cotmore',N'ccotmore6l@nature.com',N'966-463-5306'), + (239,N'Jeffy',N'Ambrois',N'jambrois6m@upenn.edu',N'970-117-7603'), + (240,N'Valida',N'Klimentyonok',N'vklimentyonok6n@gmpg.org',N'767-259-2725'), + (241,N'Silvie',N'Tocque',N'stocque6o@sciencedirect.com',N'387-736-6753'), + (242,N'Bram',N'Folkard',N'bfolkard6p@telegraph.co.uk',N'926-943-7802'), + (243,N'Thia',N'Louch',N'tlouch6q@skype.com',N'202-571-3720'), + (244,N'Gay',N'Erskine Sandys',N'gerskinesandys6r@unblog.fr',N'101-819-7708'), + (245,N'Claudian',N'Mannagh',N'cmannagh6s@flavors.me',N'876-211-7478'), + (246,N'Rodi',N'Pates',N'rpates6t@dell.com',N'594-198-2126'), + (247,N'Phaidra',N'Mundell',N'pmundell6u@soundcloud.com',N'265-230-1640'), + (248,N'Martita',N'Pierpoint',N'mpierpoint6v@netscape.com',N'364-474-2546'), + (249,N'Ardys',N'Roper',N'aroper6w@technorati.com',N'493-174-8516'), + (250,N'Tull',N'Gillhespy',N'tgillhespy6x@discovery.com',N'549-440-3629'); +INSERT INTO [Customers] VALUES (251,N'Broddy',N'Plevin',N'bplevin6y@technorati.com',N'133-915-9213'), + (252,N'Courtnay',N'Phetteplace',N'cphetteplace6z@exblog.jp',N'633-340-4981'), + (253,N'Shanon',N'Madelin',N'smadelin70@discuz.net',N'233-590-4299'), + (254,N'Ardelle',N'Stern',N'astern71@epa.gov',N'239-261-1870'), + (255,N'Barret',N'Vouls',N'bvouls72@buzzfeed.com',N'938-312-6731'), + (256,N'Elspeth',N'Konrad',N'ekonrad73@delicious.com',N'823-895-3161'), + (257,N'Alistair',N'Fortie',N'afortie74@wordpress.com',N'732-567-1433'), + (258,N'Gustave',N'Foulger',N'gfoulger75@bing.com',N'104-495-0395'), + (259,N'Stavro',N'Meritt',N'smeritt76@nba.com',N'605-852-9768'), + (260,N'Melvyn',N'Fone',N'mfone77@twitter.com',N'158-472-1890'), + (261,N'Taddeo',N'Clemerson',N'tclemerson78@bandcamp.com',N'456-446-7054'), + (262,N'Dre',N'Cawsey',N'dcawsey79@tumblr.com',N'328-532-8301'), + (263,N'Ernaline',N'Lecordier',N'elecordier7a@reuters.com',N'135-471-5186'), + (264,N'Leonard',N'Bunten',N'lbunten7b@myspace.com',N'117-488-3218'), + (265,N'Hill',N'Maclaine',N'hmaclaine7c@mail.ru',N'869-560-5468'), + (266,N'Clair',N'Grennan',N'cgrennan7d@state.tx.us',N'624-245-6316'), + (267,N'Orella',N'Bleeze',N'obleeze7e@elegantthemes.com',N'677-415-9768'), + (268,N'Nikolaus',N'Kent',N'nkent7f@opensource.org',N'728-870-0127'), + (269,N'Mathe',N'Cinnamond',N'mcinnamond7g@netvibes.com',N'365-620-4451'), + (270,N'Elia',N'Maylin',N'emaylin7h@phoca.cz',N'813-972-3521'), + (271,N'Gregg',N'Savine',N'gsavine7i@ucsd.edu',N'636-105-1459'), + (272,N'Andrea',N'Normandale',N'anormandale7j@cbsnews.com',N'547-974-7634'), + (273,N'Gerome',N'Gitsham',N'ggitsham7k@geocities.jp',N'195-352-6344'), + (274,N'Burtie',N'Magrannell',N'bmagrannell7l@mtv.com',N'555-392-8340'), + (275,N'Shea',N'Folbige',N'sfolbige7m@ameblo.jp',N'404-787-8253'), + (276,N'Ethelyn',N'Redrup',N'eredrup7n@issuu.com',N'451-645-3672'), + (277,N'Fletch',N'Harkins',N'fharkins7o@rambler.ru',N'527-607-9457'), + (278,N'Georgia',N'Urwen',N'gurwen7p@cmu.edu',N'472-299-0889'), + (279,N'Aldon',N'Duplan',N'aduplan7q@oaic.gov.au',N'907-292-5274'), + (280,N'Moselle',N'Box',N'mbox7r@tripod.com',N'899-968-0580'), + (281,N'Ricky',N'Laxson',N'rlaxson7s@timesonline.co.uk',N'863-537-3771'), + (282,N'Rochella',N'Magnay',N'rmagnay7t@sciencedirect.com',N'479-941-3899'), + (283,N'Eileen',N'Ronaghan',N'eronaghan7u@amazon.co.jp',N'755-661-3827'), + (284,N'Maude',N'Weekley',N'mweekley7v@mozilla.com',N'869-668-1910'), + (285,N'Roanna',N'Luesley',N'rluesley7w@woothemes.com',N'951-796-1480'), + (286,N'Uta',N'MacCafferky',N'umaccafferky7x@squidoo.com',N'574-550-6764'), + (287,N'Dorie',N'Burdon',N'dburdon7y@time.com',N'419-888-6145'), + (288,N'Kane',N'Willatts',N'kwillatts7z@delicious.com',N'655-224-3036'), + (289,N'Verney',N'Rossborough',N'vrossborough80@altervista.org',N'666-371-0741'), + (290,N'Anna',N'Winston',N'awinston81@indiegogo.com',N'663-225-4605'), + (291,N'Rockie',N'Silverlock',N'rsilverlock82@wikipedia.org',N'780-918-7449'), + (292,N'Davidde',N'Denton',N'ddenton83@ehow.com',N'128-129-0498'), + (293,N'Giacinta',N'Faichney',N'gfaichney84@newsvine.com',N'504-427-7440'), + (294,N'Sawyer',N'Hayley',N'shayley85@istockphoto.com',N'624-217-1413'), + (295,N'Lester',N'MacKeogh',N'lmackeogh86@earthlink.net',N'885-226-9157'), + (296,N'Imogen',N'Raggett',N'iraggett87@businessweek.com',N'365-267-4100'), + (297,N'Vita',N'Dyzart',N'vdyzart88@acquirethisname.com',N'690-182-3692'), + (298,N'Isabel',N'Pineaux',N'ipineaux89@wikimedia.org',N'467-283-0858'), + (299,N'Quillan',N'Rosenzveig',N'qrosenzveig8a@google.fr',N'872-971-4385'), + (300,N'Vikky',N'Daw',N'vdaw8b@cornell.edu',N'891-669-8582'), + (301,N'Ephraim',N'Karolowski',N'ekarolowski8c@yolasite.com',N'128-517-6373'), + (302,N'Ronnica',N'Laterza',N'rlaterza8d@ehow.com',N'847-702-1854'), + (303,N'Colleen',N'Yapp',N'cyapp8e@amazon.com',N'163-911-4250'), + (304,N'Sosanna',N'Ingarfill',N'singarfill8f@auda.org.au',N'149-748-9853'), + (305,N'Brigit',N'Jakubowicz',N'bjakubowicz8g@umn.edu',N'608-656-9601'), + (306,N'Shem',N'Breede',N'sbreede8h@devhub.com',N'935-510-1865'), + (307,N'Harmonia',N'Geelan',N'hgeelan8i@goodreads.com',N'387-518-7322'), + (308,N'Boris',N'Whitlow',N'bwhitlow8j@ycombinator.com',N'593-349-6302'), + (309,N'Evonne',N'Spondley',N'espondley8k@java.com',N'589-883-0481'), + (310,N'Briggs',N'Iacovo',N'biacovo8l@cargocollective.com',N'327-525-9701'), + (311,N'Tyrone',N'Sharrock',N'tsharrock8m@google.com.br',N'178-919-3451'), + (312,N'Barnaby',N'Wattinham',N'bwattinham8n@hexun.com',N'739-172-4353'), + (313,N'Ricard',N'Luttgert',N'rluttgert8o@tuttocitta.it',N'508-877-3834'), + (314,N'Gram',N'Stroton',N'gstroton8p@gov.uk',N'364-506-6678'), + (315,N'Chickie',N'Cleere',N'ccleere8q@senate.gov',N'438-991-2622'), + (316,N'Loretta',N'Blakiston',N'lblakiston8r@mac.com',N'181-558-7703'), + (317,N'Hildy',N'Marien',N'hmarien8s@godaddy.com',N'829-271-8140'), + (318,N'Gabbie',N'Mee',N'gmee8t@microsoft.com',N'550-682-0687'), + (319,N'Andie',N'McGilleghole',N'amcgilleghole8u@businesswire.com',N'943-797-0979'), + (320,N'Carlo',N'Corris',N'ccorris8v@archive.org',N'244-414-0392'), + (321,N'Freeman',N'Swindell',N'fswindell8w@sfgate.com',N'982-195-7973'), + (322,N'Glynda',N'O''Garmen',N'gogarmen8x@springer.com',N'852-140-4068'), + (323,N'Lydon',N'Ciotto',N'lciotto8y@hubpages.com',N'284-733-0404'), + (324,N'Tina',N'Armell',N'tarmell8z@techcrunch.com',N'947-609-7260'), + (325,N'Margarethe',N'Houlworth',N'mhoulworth90@taobao.com',N'454-237-4153'), + (326,N'Devlin',N'Whorf',N'dwhorf91@nba.com',N'716-155-0651'), + (327,N'Shawna',N'Ubsdall',N'subsdall92@spotify.com',N'399-361-2160'), + (328,N'Erie',N'Saddington',N'esaddington93@facebook.com',N'162-589-3819'), + (329,N'Kara-lynn',N'Kahn',N'kkahn94@gnu.org',N'589-367-9056'), + (330,N'Kristal',N'Colton',N'kcolton95@livejournal.com',N'341-398-5881'), + (331,N'Em',N'Shama',N'eshama96@altervista.org',N'973-259-2288'), + (332,N'Corrinne',N'Killby',N'ckillby97@microsoft.com',N'312-903-3846'), + (333,N'Norri',N'Luker',N'nluker98@youtube.com',N'538-123-9684'), + (334,N'Matthieu',N'Robelin',N'mrobelin99@instagram.com',N'367-441-5204'), + (335,N'Upton',N'Rising',N'urising9a@timesonline.co.uk',N'631-275-2692'), + (336,N'Martie',N'Forsyde',N'mforsyde9b@topsy.com',N'509-738-1534'), + (337,N'Gwen',N'Segrave',N'gsegrave9c@foxnews.com',N'679-115-2755'), + (338,N'Michale',N'Issacoff',N'missacoff9d@shutterfly.com',N'961-979-1514'), + (339,N'Sacha',N'Huggard',N'shuggard9e@google.com.br',N'680-678-9999'), + (340,N'Anthiathia',N'Ruffy',N'aruffy9f@oakley.com',N'718-123-0873'), + (341,N'Charmian',N'Dove',N'cdove9g@tiny.cc',N'863-308-0198'), + (342,N'Bailey',N'Clarkin',N'bclarkin9h@networkadvertising.org',N'224-101-6533'), + (343,N'Berthe',N'Hancell',N'bhancell9i@elpais.com',N'102-694-0638'), + (344,N'Leighton',N'Skep',N'lskep9j@odnoklassniki.ru',N'987-143-4425'), + (345,N'Doralyn',N'Huncote',N'dhuncote9k@zimbio.com',N'351-978-7008'), + (346,N'Jemima',N'Skeete',N'jskeete9l@upenn.edu',N'566-112-0089'), + (347,N'Valaria',N'Forrester',N'vforrester9m@wunderground.com',N'120-779-0989'), + (348,N'Nicholle',N'Stutte',N'nstutte9n@jalbum.net',N'700-108-6474'), + (349,N'Brod',N'Elias',N'belias9o@twitter.com',N'767-412-7204'), + (350,N'Sasha',N'Jeskin',N'sjeskin9p@cpanel.net',N'998-340-6095'), + (351,N'Odelinda',N'Dzeniskevich',N'odzeniskevich9q@japanpost.jp',N'976-621-5378'), + (352,N'Kirsti',N'Gutsell',N'kgutsell9r@unesco.org',N'792-731-9035'), + (353,N'Bunni',N'Worsom',N'bworsom9s@163.com',N'423-717-5153'), + (354,N'Andreas',N'Wassung',N'awassung9t@ed.gov',N'865-119-1349'), + (355,N'Phil',N'Bulpitt',N'pbulpitt9u@bloglovin.com',N'822-146-2668'), + (356,N'Madella',N'O'' Quirk',N'moquirk9v@bing.com',N'404-810-6042'), + (357,N'Cristi',N'ducarme',N'cducarme9w@auda.org.au',N'772-562-2747'), + (358,N'Ambur',N'Dautry',N'adautry9x@deliciousdays.com',N'475-690-9750'), + (359,N'Stewart',N'O''Rodane',N'sorodane9y@ed.gov',N'915-430-4803'), + (360,N'Addison',N'Corss',N'acorss9z@bandcamp.com',N'356-391-1239'), + (361,N'Sylvia',N'Domke',N'sdomkea0@cam.ac.uk',N'450-259-8186'), + (362,N'Bald',N'Wicks',N'bwicksa1@mac.com',N'960-924-6231'), + (363,N'Gerry',N'Mulhill',N'gmulhilla2@freewebs.com',N'667-987-4714'), + (364,N'Harley',N'Crocken',N'hcrockena3@themeforest.net',N'108-574-7660'), + (365,N'Allie',N'Branno',N'abrannoa4@mapquest.com',N'177-100-6366'), + (366,N'Rosette',N'Bedbrough',N'rbedbrougha5@myspace.com',N'703-170-5587'), + (367,N'Lise',N'Caldwell',N'lcaldwella6@technorati.com',N'346-884-9004'), + (368,N'Rock',N'Dufaire',N'rdufairea7@csmonitor.com',N'431-690-8612'), + (369,N'Johann',N'Lorens',N'jlorensa8@rakuten.co.jp',N'682-920-1773'), + (370,N'Tallulah',N'Angeli',N'tangelia9@fema.gov',N'419-330-0223'), + (371,N'Moria',N'Opie',N'mopieaa@omniture.com',N'780-942-0867'), + (372,N'Ninette',N'Chapelle',N'nchapelleab@dedecms.com',N'378-414-7813'), + (373,N'Dan',N'Chettle',N'dchettleac@instagram.com',N'341-810-1218'), + (374,N'Tracey',N'Beadham',N'tbeadhamad@i2i.jp',N'665-448-9124'), + (375,N'Mandie',N'Boler',N'mbolerae@liveinternet.ru',N'630-841-6073'), + (376,N'Judd',N'Dowdell',N'jdowdellaf@domainmarket.com',N'570-455-7354'), + (377,N'Natty',N'Mallord',N'nmallordag@wsj.com',N'743-768-5219'), + (378,N'Margarita',N'Netherwood',N'mnetherwoodah@parallels.com',N'771-729-0161'), + (379,N'Illa',N'Ewan',N'iewanai@ow.ly',N'711-458-1253'), + (380,N'Dianne',N'Oakly',N'doaklyaj@shop-pro.jp',N'427-818-4490'), + (381,N'Dorella',N'Luetkemeyer',N'dluetkemeyerak@amazon.co.jp',N'189-657-8365'), + (382,N'Corissa',N'Gantzer',N'cgantzeral@exblog.jp',N'186-538-1000'), + (383,N'Kiley',N'Evequot',N'kevequotam@lulu.com',N'675-314-0932'), + (384,N'Lazarus',N'Shackle',N'lshacklean@tinyurl.com',N'503-544-7275'), + (385,N'Jerald',N'Dammarell',N'jdammarellao@patch.com',N'268-683-5402'), + (386,N'Morgun',N'Perocci',N'mperocciap@nba.com',N'484-363-2391'), + (387,N'Ninnette',N'Beeching',N'nbeechingaq@delicious.com',N'435-600-8593'), + (388,N'Rupert',N'Theml',N'rthemlar@fastcompany.com',N'311-656-8606'), + (389,N'Flss',N'Marczyk',N'fmarczykas@zdnet.com',N'256-534-4003'), + (390,N'Teena',N'Flowers',N'tflowersat@vk.com',N'904-747-2682'), + (391,N'Eartha',N'Olorenshaw',N'eolorenshawau@jiathis.com',N'114-280-1375'), + (392,N'Darelle',N'Aldwich',N'daldwichav@github.com',N'428-871-7740'), + (393,N'Levin',N'Slaght',N'lslaghtaw@uiuc.edu',N'296-729-5922'), + (394,N'Donn',N'Artharg',N'darthargax@cloudflare.com',N'957-355-7250'), + (395,N'Reagen',N'Rustan',N'rrustanay@patch.com',N'236-925-5357'), + (396,N'Ailsun',N'California',N'acaliforniaaz@google.com.br',N'195-409-2090'), + (397,N'Daria',N'Antosik',N'dantosikb0@sciencedaily.com',N'377-193-6440'), + (398,N'Dwain',N'Runge',N'drungeb1@china.com.cn',N'731-887-7381'), + (399,N'Ivory',N'Pettisall',N'ipettisallb2@icq.com',N'424-212-1985'), + (400,N'Arlette',N'Hanratty',N'ahanrattyb3@techcrunch.com',N'533-781-4529'); diff --git a/schema/012_EmployeesSeed.sql b/schema/012_EmployeesSeed.sql new file mode 100644 index 0000000..59da1fd --- /dev/null +++ b/schema/012_EmployeesSeed.sql @@ -0,0 +1,103 @@ + +use RestaurantReservation ; +INSERT INTO Employees VALUES + (1,26,N'Gun',N'Stinton',N'StandardWaiter'), + (2,10,N'Stormie',N'Gaynesford',N'AssistantWaiter'), + (3,24,N'Tyrus',N'Kondratenya',N'AssistantWaiter'), + (4,39,N'Erl',N'Halloway',N'AssistantWaiter'), + (5,15,N'Yardley',N'Tozer',N'AssistantWaiter'), + (6,1,N'Benedicto',N'Etty',N'AssistantWaiter'), + (7,4,N'Kort',N'MacRonald',N'AssistantWaiter'), + (8,21,N'Hakim',N'Rippin',N'AssistantWaiter'), + (9,47,N'Austen',N'Mc Comb',N'VIPOrdersWaiter'), + (10,6,N'Lucinda',N'Paz',N'AssistantWaiter'), + (11,41,N'Daria',N'Paolacci',N'StandardWaiter'), + (12,9,N'Nahum',N'Donnersberg',N'AssistantWaiter'), + (13,12,N'Windham',N'Manton',N'AssistantWaiter'), + (14,7,N'Marchelle',N'Andrivel',N'StandardWaiter'), + (15,23,N'Lynette',N'Arnaldy',N'VIPOrdersWaiter'), + (16,32,N'Laraine',N'Fradgley',N'AssistantWaiter'), + (17,11,N'Sisely',N'Seedhouse',N'VIPOrdersWaiter'), + (18,33,N'Masha',N'Siuda',N'AssistantWaiter'), + (19,42,N'Nollie',N'Shuttlewood',N'VIPOrdersWaiter'), + (20,31,N'Monique',N'Ormrod',N'VIPOrdersWaiter'), + (21,13,N'Marthena',N'Pantecost',N'AssistantWaiter'), + (22,40,N'Tiena',N'Reardon',N'StandardWaiter'), + (23,37,N'Natty',N'Veillard',N'AssistantWaiter'), + (24,44,N'Gayleen',N'O''Mara',N'StandardWaiter'), + (25,46,N'Bevvy',N'Reid',N'VIPOrdersWaiter'), + (26,18,N'Harv',N'Pfertner',N'AssistantWaiter'), + (27,27,N'Sianna',N'Boltwood',N'VIPOrdersWaiter'), + (28,49,N'Miguela',N'Baldacco',N'VIPOrdersWaiter'), + (29,25,N'Lorinda',N'Galbreath',N'VIPOrdersWaiter'), + (30,43,N'Elsbeth',N'McKevany',N'VIPOrdersWaiter'), + (31,5,N'Phaedra',N'Grindlay',N'AssistantWaiter'), + (32,35,N'Ariel',N'Mawman',N'StandardWaiter'), + (33,19,N'Loralee',N'Fallows',N'StandardWaiter'), + (34,16,N'Morty',N'Rysdale',N'AssistantWaiter'), + (35,14,N'Leicester',N'Nettles',N'VIPOrdersWaiter'), + (36,30,N'Delilah',N'Eouzan',N'VIPOrdersWaiter'), + (37,22,N'Josephine',N'Brazenor',N'AssistantWaiter'), + (38,3,N'Harwell',N'Meas',N'AssistantWaiter'), + (39,34,N'Mellisent',N'Lochet',N'StandardWaiter'), + (40,48,N'Kenyon',N'Vanner',N'AssistantWaiter'), + (41,20,N'Verile',N'Gable',N'AssistantWaiter'), + (42,2,N'Colin',N'Djokic',N'StandardWaiter'), + (43,29,N'Rowland',N'McKain',N'VIPOrdersWaiter'), + (44,8,N'Robena',N'Hannum',N'AssistantWaiter'), + (45,17,N'Armando',N'Reims',N'AssistantWaiter'), + (46,45,N'Nelie',N'Soaper',N'AssistantWaiter'), + (47,36,N'Auguste',N'Gadney',N'VIPOrdersWaiter'), + (48,28,N'Willie',N'Batting',N'StandardWaiter'), + (49,50,N'Koral',N'Greenstock',N'VIPOrdersWaiter'), + (50,38,N'Dylan',N'Chipperfield',N'StandardWaiter'), + (51,37,N'Lurleen',N'Selwyn',N'VIPOrdersWaiter'), + (52,6,N'Dasie',N'Wisden',N'VIPOrdersWaiter'), + (53,39,N'Oralia',N'Rusling',N'AssistantWaiter'), + (54,16,N'Benedikta',N'Mouatt',N'StandardWaiter'), + (55,4,N'Roma',N'Hearley',N'AssistantWaiter'), + (56,33,N'Rollie',N'Alessandrini',N'StandardWaiter'), + (57,1,N'Ivette',N'Fitzer',N'VIPOrdersWaiter'), + (58,20,N'Constance',N'Siccombe',N'StandardWaiter'), + (59,41,N'Sarge',N'Ickeringill',N'VIPOrdersWaiter'), + (60,3,N'Bealle',N'Revel',N'VIPOrdersWaiter'), + (61,46,N'Donnie',N'Cleeton',N'AssistantWaiter'), + (62,13,N'Emlynn',N'Jost',N'VIPOrdersWaiter'), + (63,21,N'Mordy',N'Lewson',N'VIPOrdersWaiter'), + (64,43,N'Auguste',N'Delgardo',N'VIPOrdersWaiter'), + (65,23,N'Robin',N'Barrowcliff',N'VIPOrdersWaiter'), + (66,19,N'Arie',N'Conboy',N'StandardWaiter'), + (67,28,N'Maude',N'Calbrathe',N'StandardWaiter'), + (68,7,N'Marys',N'Standon',N'StandardWaiter'), + (69,9,N'Moise',N'Rizzelli',N'StandardWaiter'), + (70,18,N'Eugenie',N'Ivantsov',N'StandardWaiter'), + (71,15,N'Jessamyn',N'Worledge',N'StandardWaiter'), + (72,27,N'Tilda',N'Prickett',N'VIPOrdersWaiter'), + (73,12,N'Delphine',N'Stopford',N'StandardWaiter'), + (74,2,N'Willem',N'Persey',N'StandardWaiter'), + (75,40,N'Marget',N'Greenin',N'AssistantWaiter'), + (76,47,N'Titus',N'Dronsfield',N'AssistantWaiter'), + (77,11,N'Rosa',N'Jellings',N'AssistantWaiter'), + (78,50,N'Tremain',N'Bayman',N'StandardWaiter'), + (79,30,N'Crystal',N'Nisby',N'StandardWaiter'), + (80,24,N'Fanya',N'MacComiskey',N'StandardWaiter'), + (81,17,N'Candi',N'Gornal',N'StandardWaiter'), + (82,8,N'Lexine',N'Tschursch',N'VIPOrdersWaiter'), + (83,29,N'Lorianne',N'Aggs',N'VIPOrdersWaiter'), + (84,38,N'Nance',N'Byram',N'AssistantWaiter'), + (85,14,N'Raye',N'Wynett',N'VIPOrdersWaiter'), + (86,10,N'My',N'Pirozzi',N'StandardWaiter'), + (87,34,N'Barnett',N'Mansel',N'VIPOrdersWaiter'), + (88,32,N'Consolata',N'Kinton',N'VIPOrdersWaiter'), + (89,44,N'Bertrand',N'Cosstick',N'AssistantWaiter'), + (90,49,N'Elana',N'Dobbs',N'StandardWaiter'), + (91,45,N'Kit',N'Denington',N'StandardWaiter'), + (92,5,N'Meghan',N'Brou',N'AssistantWaiter'), + (93,48,N'Theo',N'Hansemann',N'VIPOrdersWaiter'), + (94,36,N'Calypso',N'Newis',N'VIPOrdersWaiter'), + (95,35,N'Gussy',N'Riddiford',N'StandardWaiter'), + (96,31,N'Herb',N'Tenney',N'VIPOrdersWaiter'), + (97,22,N'Farrell',N'Selvey',N'VIPOrdersWaiter'), + (98,25,N'Mikol',N'Andries',N'VIPOrdersWaiter'), + (99,42,N'Henrieta',N'Kalaher',N'VIPOrdersWaiter'), + (100,26,N'Gothart',N'Pinchen',N'AssistantWaiter'); diff --git a/schema/013_MenuItemsSeed.sql b/schema/013_MenuItemsSeed.sql new file mode 100644 index 0000000..ebd7392 --- /dev/null +++ b/schema/013_MenuItemsSeed.sql @@ -0,0 +1,1002 @@ + +use RestaurantReservation ; +INSERT INTO [MenuItems] VALUES (1,24,N'Energy Bites',N'this is a Description',3.99), + (2,23,N'Margherita Pizza',N'this is a Description',7.99), + (3,16,N'Puffer Winter Coat',N'this is a Description',99.99), + (4,33,N'Puffed Rice Cake',N'this is a Description',2.49), + (5,27,N'Balsamic Vinegar',N'this is a Description',4.99), + (6,11,N'Chocolate Mint Cookies',N'this is a Description',2.29), + (7,42,N'Raspberry Tart',N'this is a Description',5.49), + (8,9,N'Herb Garlic Butter',N'this is a Description',3.99), + (9,39,N'Grass Fed Beef Patties',N'this is a Description',9.99), + (10,43,N'Herb Seasoned Croutons',N'this is a Description',2.99), + (11,32,N'Electric Air Pump',N'this is a Description',29.99), + (12,3,N'Silicone Baking Molds',N'this is a Description',15.99), + (13,30,N'Breathable Face Mask Set',N'this is a Description',14.99), + (14,6,N'Handcrafted Wooden Coasters',N'this is a Description',19.99), + (15,34,N'Buffalo Stilton Cheese',N'this is a Description',8.99), + (16,4,N'Chocolate Chip Cookie Dough',N'this is a Description',5.49), + (17,38,N'Car Emergency Kit',N'this is a Description',49.99), + (18,12,N'Sliced Cucumbers',N'this is a Description',1.29), + (19,19,N'Honey Ginger Tea',N'this is a Description',2.99), + (20,36,N'Pet Leash',N'this is a Description',15.99), + (21,18,N'Set of Gardening Gloves with Claws',N'this is a Description',15.99), + (22,10,N'Adjustable Dog Harness',N'this is a Description',24.99), + (23,49,N'Creamy Garlic Dressing',N'this is a Description',3.99), + (24,28,N'Cabbage',N'this is a Description',1.29), + (25,44,N'Apple Juice',N'this is a Description',3.29), + (26,8,N'Honey Sesame Chicken Mix',N'this is a Description',8.99), + (27,17,N'Grilled Vegetable Medley',N'this is a Description',4.49), + (28,31,N'Dark Chocolate Covered Raisins',N'this is a Description',3.99), + (29,2,N'A-Line Skirt',N'this is a Description',35.99), + (30,50,N'Thai Peanut Noodles',N'this is a Description',4.99), + (31,41,N'Multi-Purpose Marine Rope',N'this is a Description',19.99), + (32,19,N'Luxe Velvet Blazer',N'this is a Description',89.99), + (33,4,N'Sculpting Kit',N'this is a Description',25.99), + (34,23,N'Personal Blender with Travel Lid',N'this is a Description',34.99), + (35,25,N'Lockable Bicycle Chain',N'this is a Description',19.99), + (36,13,N'Coconut Chia Pudding',N'this is a Description',3.49), + (37,36,N'Laptop Backpack',N'this is a Description',69.99), + (38,3,N'Honey Ginger Tea',N'this is a Description',2.99), + (39,38,N'High-Quality Yoga Mat',N'this is a Description',34.99), + (40,29,N'Blue Denim Jeans',N'this is a Description',49.99), + (41,15,N'Compact Folding Table',N'this is a Description',49.99), + (42,12,N'Classic Black Dress',N'this is a Description',79.99), + (43,49,N'Handheld Garment Steamer',N'this is a Description',34.99), + (44,30,N'Sustainable Wooden Toys',N'this is a Description',29.99), + (45,39,N'Cooking Utensil Set',N'this is a Description',24.99), + (46,46,N'Spicy Roasted Nuts',N'this is a Description',4.99), + (47,47,N'Decorative LED Neon Sign',N'this is a Description',45.99), + (48,7,N'Eco-Friendly Stainless Steel Straws',N'this is a Description',12.99), + (49,2,N'Water Bottle with Built-in Fruit Infuser',N'this is a Description',18.99), + (50,22,N'Yoga Blocks',N'this is a Description',29.99), + (51,28,N'Herbal Tea Variety Pack',N'this is a Description',4.99), + (52,9,N'Ramen Noodles',N'this is a Description',0.99), + (53,42,N'Almond Joy Munch Bars',N'this is a Description',1.39), + (54,20,N'Magnetic Phone Case',N'this is a Description',19.99), + (55,41,N'Home Delivery Food Journal',N'this is a Description',14.99), + (56,50,N'Fried Rice',N'this is a Description',4.29), + (57,45,N'Electric Ice Cream Maker',N'this is a Description',59.99), + (58,27,N'Bluetooth Headphones',N'this is a Description',79.99), + (59,44,N'Smartphone Tripod with Remote',N'this is a Description',29.99), + (60,17,N'Solar String Lights',N'this is a Description',29.99), + (61,48,N'Frozen Hash Browns',N'this is a Description',2.99), + (62,5,N'Tattoo Kit',N'this is a Description',99.99), + (63,32,N'Chia Seed Pudding Mix',N'this is a Description',4.19), + (64,21,N'Classic Vanilla Fudge',N'this is a Description',4.49), + (65,38,N'Wireless Charging Pad',N'this is a Description',19.99), + (66,28,N'Balsamic Glazed Brussels Sprouts',N'this is a Description',4.99), + (67,33,N'Peas (frozen)',N'this is a Description',1.89), + (68,50,N'Pumpkin Spice Cookies',N'this is a Description',3.29), + (69,15,N'Wireless Charger Stand',N'this is a Description',24.99), + (70,31,N'Ceramic Cookware Set',N'this is a Description',179.99), + (71,25,N'Stainless Steel Water Bottle',N'this is a Description',25.99), + (72,8,N'Creamy Coleslaw Mix',N'this is a Description',2.39), + (73,35,N'Pasta Primavera Kit',N'this is a Description',7.49), + (74,16,N'Thai Green Curry Paste',N'this is a Description',2.49), + (75,40,N'Bock Beer Mustard',N'this is a Description',2.29), + (76,34,N'Beach Cover-Up',N'this is a Description',29.99), + (77,3,N'Blue Corn Tortilla Chips',N'this is a Description',3.49), + (78,44,N'Digital Meat Thermometer',N'this is a Description',24.99), + (79,46,N'Kids'' Science Experiment Kit',N'this is a Description',29.99), + (80,7,N'Orange Ginger Vinaigrette',N'this is a Description',3.99), + (81,17,N'Board Game',N'this is a Description',34.99), + (82,36,N'Maple Cinnamon Granola Bars',N'this is a Description',3.49), + (83,1,N'Vegetable Stir-Fry Sauce',N'this is a Description',3.49), + (84,24,N'Portable Camping Shower',N'this is a Description',39.99), + (85,30,N'Acoustic Guitar',N'this is a Description',199.99), + (86,12,N'Sustainable Wooden Toys',N'this is a Description',29.99), + (87,5,N'Himalayan Pink Salt',N'this is a Description',1.99), + (88,37,N'Handheld Shower Head',N'this is a Description',34.99), + (89,23,N'Stylish Wireless Earbuds',N'this is a Description',59.99), + (90,27,N'Portable Hand Warmer',N'this is a Description',24.99), + (91,6,N'Acoustic Guitar',N'this is a Description',199.99), + (92,20,N'Blue Denim Jeans',N'this is a Description',49.99), + (93,26,N'Coconut Cream',N'this is a Description',2.99), + (94,15,N'Insulated Sport Tumbler',N'this is a Description',22.99), + (95,33,N'Casual Sneakers',N'this is a Description',39.99), + (96,29,N'Maple Almond Butter',N'this is a Description',5.49), + (97,40,N'Bike Helmet',N'this is a Description',34.99), + (98,25,N'Outdoor Sports Backpack',N'this is a Description',49.99), + (99,44,N'Lentil Vegetable Curry',N'this is a Description',4.49), + (100,23,N'Magnetic Phone Case',N'this is a Description',19.99), + (101,39,N'Handmade Wooden Utensil Set',N'this is a Description',24.99), + (102,36,N'Organic Italian Seasoning',N'this is a Description',2.99), + (103,2,N'Air Purifier',N'this is a Description',129.99), + (104,42,N'Italian Breadsticks',N'this is a Description',2.49), + (105,9,N'Crispy Potato Tots',N'this is a Description',3.69), + (106,38,N'Fitness Resistance Bands Kit',N'this is a Description',29.99), + (107,18,N'Classic Pumps',N'this is a Description',64.99), + (108,17,N'Coffee Subscription Service',N'this is a Description',29.99), + (109,13,N'Cheese Stuffed Jalapenos',N'this is a Description',5.99), + (110,30,N'Spicy Kimchi',N'this is a Description',4.79), + (111,45,N'Heat-Resistant Silicone Mat',N'this is a Description',19.99), + (112,41,N'Honey Roasted Chickpeas',N'this is a Description',3.29), + (113,24,N'Induction Cooktop',N'this is a Description',89.99), + (114,5,N'Sweet Potatoes (organic)',N'this is a Description',1.99), + (115,16,N'Peanut Butter Banana Smoothie Mix',N'this is a Description',4.49), + (116,49,N'Asian Stir-Fry Kit',N'this is a Description',5.49), + (117,47,N'LED Strip Lights',N'this is a Description',19.99), + (118,26,N'Kombucha Drink',N'this is a Description',3.49), + (119,43,N'Personalized Pet ID Tags',N'this is a Description',9.99), + (120,34,N'Maple Almond Butter',N'this is a Description',5.49), + (121,4,N'Collapsible Folding Chair',N'this is a Description',29.99), + (122,50,N'Silicone Baking Mats',N'this is a Description',19.99), + (123,20,N'Tea Infuser',N'this is a Description',12.99), + (124,12,N'Digital Alarm Clock',N'this is a Description',19.99), + (125,48,N'Whisk Set',N'this is a Description',12.99), + (126,9,N'Organic Black Bean Burger',N'this is a Description',4.49), + (127,39,N'Scented Soy Candles',N'this is a Description',19.99), + (128,4,N'Silicone Cooking Utensils Set',N'this is a Description',34.99), + (129,31,N'Blue Denim Jeans',N'this is a Description',49.99), + (130,3,N'Elderberry Syrup',N'this is a Description',11.99), + (131,27,N'Board Game Storage',N'this is a Description',19.99), + (132,19,N'Green Tea Matcha Powder',N'this is a Description',15.99), + (133,50,N'Kids'' Trampoline',N'this is a Description',139.99), + (134,16,N'Folding Table',N'this is a Description',59.99), + (135,43,N'Indoor Plants',N'this is a Description',19.99), + (136,13,N'Sweet Chili Thai Sauce',N'this is a Description',3.49), + (137,2,N'Bamboo Cutting Board Set',N'this is a Description',34.99), + (138,7,N'Ground Turkey',N'this is a Description',5.49), + (139,44,N'Outdoor Adventure Backpack',N'this is a Description',59.99), + (140,20,N'Classic Caesar Salad Kit',N'this is a Description',4.99), + (141,5,N'Pet Food Storage Container',N'this is a Description',24.99), + (142,26,N'Peanut Butter Granola',N'this is a Description',4.99), + (143,8,N'Summer Tank Dress',N'this is a Description',39.99), + (144,18,N'Vegan Cheese',N'this is a Description',4.99), + (145,33,N'Kids'' Building Blocks',N'this is a Description',19.99), + (146,30,N'LED Camping Lantern with USB Charging',N'this is a Description',34.99), + (147,10,N'Tomato Sauce',N'this is a Description',2.79), + (148,36,N'Portable Water Filter',N'this is a Description',29.99), + (149,45,N'Fruit and Nut Energy Bites',N'this is a Description',2.99), + (150,38,N'Casual Cropped Sweater',N'this is a Description',39.99), + (151,11,N'Pepperoni Pizza Roll-Ups',N'this is a Description',5.99), + (152,23,N'Whole Wheat Pasta',N'this is a Description',2.49), + (153,49,N'Safety Pin Dispenser',N'this is a Description',5.99), + (154,47,N'Honey mustard chicken tenders',N'this is a Description',7.99), + (155,15,N'Pet Waterer with Filtration',N'this is a Description',39.99), + (156,10,N'Avocado Oil',N'this is a Description',8.49), + (157,17,N'Foldable Picnic Table',N'this is a Description',49.99), + (158,2,N'Pet Caress Brush',N'this is a Description',12.99), + (159,44,N'Children''s Garden Tool Set',N'this is a Description',22.99), + (160,20,N'Memory Foam Mattress Pad',N'this is a Description',69.99), + (161,34,N'Mini Air Hockey Table',N'this is a Description',39.99), + (162,38,N'Pet Water Fountain',N'this is a Description',39.99), + (163,40,N'Cable Knit Cardigan',N'this is a Description',49.99), + (164,19,N'Whole Chicken',N'this is a Description',12.99), + (165,36,N'Rustic Italian Breads',N'this is a Description',3.99), + (166,21,N'Active Racerback Tank',N'this is a Description',24.99), + (167,41,N'Spinach Pizza Rolls',N'this is a Description',4.99), + (168,4,N'Vegan Chocolate Cake Mix',N'this is a Description',4.29), + (169,26,N'Nordic Berry Smoothie',N'this is a Description',3.99), + (170,6,N'Pumpkin Spice Granola',N'this is a Description',4.99), + (171,43,N'Peach Slices in Syrup',N'this is a Description',2.59), + (172,45,N'Watering Can with Nozzle',N'this is a Description',19.99), + (173,47,N'Chili Lime Seasoning',N'this is a Description',2.99), + (174,24,N'Organic Honeycrisp Apples',N'this is a Description',1.99), + (175,11,N'Energy Protein Bars',N'this is a Description',2.29), + (176,9,N'Throw Pillow Covers',N'this is a Description',22.99), + (177,16,N'Pistachios',N'this is a Description',6.99), + (178,37,N'Coffee Maker',N'this is a Description',89.99), + (179,3,N'Coconut Chia Pudding',N'this is a Description',3.49), + (180,8,N'Backpack',N'this is a Description',49.99), + (181,35,N'Spaghetti Squash',N'this is a Description',3.99), + (182,15,N'Pet Grooming Scissors',N'this is a Description',16.99), + (183,1,N'Watering Can with Nozzle',N'this is a Description',19.99), + (184,42,N'Chino Shorts',N'this is a Description',34.99), + (185,23,N'Decorative Throw Pillows',N'this is a Description',29.99), + (186,50,N'Organic Coconut Sugar',N'this is a Description',4.19), + (187,2,N'Organic Brown Sugar',N'this is a Description',2.49), + (188,48,N'Veggie Lovers Pizza',N'this is a Description',8.99), + (189,46,N'Saffron Rice Mix',N'this is a Description',2.99), + (190,33,N'Essential Oil Diffuser',N'this is a Description',34.99), + (191,17,N'Digital Camera',N'this is a Description',299.99), + (192,21,N'Organic Chia Seeds',N'this is a Description',7.99), + (193,29,N'Reusable Food Storage Bags',N'this is a Description',19.99), + (194,13,N'Almond Coconut Granola',N'this is a Description',3.99), + (195,6,N'Halloween Decoration Set',N'this is a Description',29.99), + (196,24,N'Herb Seasoned Croutons',N'this is a Description',2.99), + (197,11,N'Digital Kitchen Timer',N'this is a Description',14.99), + (198,50,N'Reversible Swimming Pool Lounger',N'this is a Description',34.99), + (199,3,N'Shatterproof Wine Glasses',N'this is a Description',24.99), + (200,49,N'Roasted Chickpeas',N'this is a Description',2.99), + (201,5,N'Non-Stick Grill Pan',N'this is a Description',39.99), + (202,1,N'Black Bean Salsa',N'this is a Description',3.49), + (203,8,N'Classic Minestrone Soup',N'this is a Description',2.99), + (204,39,N'Memory Foam Pillow',N'this is a Description',39.99), + (205,47,N'Honey Mustard Chicken Breasts',N'this is a Description',8.99), + (206,35,N'Fitness Foam Roller',N'this is a Description',29.99), + (207,16,N'Spicy Roasted Nuts',N'this is a Description',4.99), + (208,19,N'Outdoor Folding Table',N'this is a Description',39.99), + (209,28,N'Fitness Jump Rope with LCD Counter',N'this is a Description',15.99), + (210,22,N'Pesto Pasta Salad',N'this is a Description',4.99), + (211,15,N'USB Desk Fan',N'this is a Description',14.99), + (212,10,N'Garlic Parmesan Wings',N'this is a Description',8.99), + (213,7,N'Marinated Artichokes',N'this is a Description',3.79), + (214,37,N'Reversible Comforter Set',N'this is a Description',89.99), + (215,41,N'Roasted Chickpeas',N'this is a Description',2.99), + (216,42,N'Travel Jewelry Case',N'this is a Description',24.99), + (217,20,N'Wireless Earbuds',N'this is a Description',69.99), + (218,46,N'Chili Powder',N'this is a Description',2.09), + (219,41,N'Portable Water Filter',N'this is a Description',29.99), + (220,39,N'Kale and Quinoa Salad',N'this is a Description',6.49), + (221,44,N'Coconut Curry Lentil Soup',N'this is a Description',3.99), + (222,43,N'Scent Diffuser',N'this is a Description',34.99), + (223,40,N'Ultraviolet Phone Sanitizer',N'this is a Description',39.99), + (224,34,N'Pineapple Teriyaki Chicken Mix',N'this is a Description',6.99), + (225,31,N'Ginger Tea',N'this is a Description',4.99), + (226,22,N'Collapsible Storage Crates',N'this is a Description',18.99), + (227,14,N'Tahini',N'this is a Description',5.49), + (228,17,N'Cat Tree with Scratching Posts',N'this is a Description',79.99), + (229,48,N'Outdoor Mosquito Repellent Lantern',N'this is a Description',34.99), + (230,3,N'Pressure Washer Accessories Kit',N'this is a Description',39.99), + (231,19,N'Avocado Lime Dressing',N'this is a Description',4.29), + (232,33,N'Foam Building Blocks for Kids',N'this is a Description',22.99), + (233,10,N'Coffee Capsule Dispenser',N'this is a Description',24.99), + (234,24,N'Organic Cereal Bars',N'this is a Description',4.29), + (235,50,N'Self-Inflating Camping Mattress',N'this is a Description',49.99), + (236,20,N'Halloween Decoration Set',N'this is a Description',29.99), + (237,35,N'Wireless Smart Plug',N'this is a Description',19.99), + (238,16,N'Raspberry Tart',N'this is a Description',5.49), + (239,21,N'Organic Coconut Flour',N'this is a Description',5.49), + (240,8,N'Over-the-Door Shoe Organizer',N'this is a Description',22.99), + (241,47,N'Pistachio Ice Cream',N'this is a Description',4.99), + (242,5,N'Tomatillo Salsa',N'this is a Description',3.29), + (243,37,N'Luxury Yoga Mat',N'this is a Description',39.99), + (244,36,N'Roasted Red Pepper Dip',N'this is a Description',3.29), + (245,15,N'Digital Food Scale',N'this is a Description',22.99), + (246,30,N'Vegan Mac & Cheese',N'this is a Description',8.99), + (247,38,N'Graphic Sweatshirt',N'this is a Description',34.99), + (248,23,N'Mini Fondue Set',N'this is a Description',34.99), + (249,9,N'Water Bottle with Built-in Fruit Infuser',N'this is a Description',18.99), + (250,5,N'Foldable Electric Scooter',N'this is a Description',349.99); +INSERT INTO [MenuItems] VALUES (251,45,N'Dish Rack',N'this is a Description',24.99), + (252,29,N'Silicone Baking Mats',N'this is a Description',19.99), + (253,44,N'Spicy Thai Coconut Soup',N'this is a Description',3.99), + (254,8,N'Whisk Set',N'this is a Description',12.99), + (255,20,N'Sporty Cap',N'this is a Description',15.99), + (256,12,N'LED Flashlight with Rechargeable Batteries',N'this is a Description',19.99), + (257,34,N'Smart LED Desk Lamp',N'this is a Description',39.99), + (258,10,N'Ergonomic Gaming Chair',N'this is a Description',199.99), + (259,46,N'Chickpea Pasta',N'this is a Description',4.19), + (260,28,N'Coconut Oil Spray',N'this is a Description',4.99), + (261,11,N'Smart WiFi Plug',N'this is a Description',19.99), + (262,41,N'Pepper Jack Cheese Slices',N'this is a Description',3.49), + (263,43,N'Fall-Themed Table Runner',N'this is a Description',19.99), + (264,26,N'Creamy Garlic Dressing',N'this is a Description',3.99), + (265,25,N'Phone Case',N'this is a Description',14.99), + (266,32,N'Portable Solar Camp Shower',N'this is a Description',29.99), + (267,33,N'DIY Lip Balm Kit',N'this is a Description',22.99), + (268,50,N'Blender Bottle',N'this is a Description',12.99), + (269,18,N'Crispy Potato Tots',N'this is a Description',3.69), + (270,35,N'Rain Jacket',N'this is a Description',64.99), + (271,48,N'Plant Pot Drip Trays',N'this is a Description',9.99), + (272,16,N'Sweet Potatoes',N'this is a Description',0.89), + (273,47,N'Berries Medley',N'this is a Description',6.99), + (274,37,N'Voice-Controlled Speaker',N'this is a Description',99.99), + (275,13,N'Spinach and Cheese Stuffed Shells',N'this is a Description',5.99), + (276,36,N'Kids'' Learning Tablet',N'this is a Description',129.99), + (277,7,N'Mango Sticky Rice Dessert',N'this is a Description',4.5), + (278,19,N'Kids'' Outdoor Explorer Kit',N'this is a Description',24.99), + (279,40,N'Sesame Seeds',N'this is a Description',1.99), + (280,10,N'Rice Cakes',N'this is a Description',2.29), + (281,47,N'Instant Mashed Potatoes',N'this is a Description',1.79), + (282,20,N'Buffalo Stilton Cheese',N'this is a Description',8.99), + (283,13,N'Window Blinds',N'this is a Description',59.99), + (284,12,N'Wireless Gaming Mouse',N'this is a Description',39.99), + (285,22,N'Biodegradable Dog Waste Bags',N'this is a Description',14.99), + (286,24,N'Water Bottle',N'this is a Description',18.99), + (287,17,N'Lockable Bicycle Chain',N'this is a Description',19.99), + (288,36,N'Dog Collar',N'this is a Description',15.99), + (289,41,N'Chickpea Pasta',N'this is a Description',4.19), + (290,23,N'Peach Preserves',N'this is a Description',3.79), + (291,34,N'Tomato Basil Soup',N'this is a Description',3.49), + (292,19,N'Cucumber Lime Sparkling Water',N'this is a Description',1.49), + (293,21,N'Dual Function Electric Skillet',N'this is a Description',59.99), + (294,44,N'Garlic and Herb Rub',N'this is a Description',2.29), + (295,26,N'Brownie Bites',N'this is a Description',4.99), + (296,18,N'Portable Solar Path Lights',N'this is a Description',39.99), + (297,25,N'Adjustable Laptop Desk',N'this is a Description',59.99), + (298,42,N'Honey Wheat Pretzels',N'this is a Description',3.49), + (299,33,N'Wireless Induction Charger',N'this is a Description',19.99), + (300,48,N'Maple Oatmeal',N'this is a Description',2.99), + (301,5,N'Indoor Plants',N'this is a Description',19.99), + (302,43,N'Wireless HDMI Transmitter',N'this is a Description',79.99), + (303,28,N'Ripped Boyfriend Jeans',N'this is a Description',54.99), + (304,8,N'Outdoor Sports Backpack',N'this is a Description',49.99), + (305,40,N'Strawberry Fruit Spread',N'this is a Description',3.59), + (306,1,N'Maple Almond Yogurt',N'this is a Description',1.89), + (307,2,N'Classic Cheeseburger Mix',N'this is a Description',5.49), + (308,49,N'Essential Oil Diffuser',N'this is a Description',34.99), + (309,50,N'Cotton Quilted Throw Blanket',N'this is a Description',39.99), + (310,3,N'Teriyaki Chicken Bowl',N'this is a Description',6.49), + (311,50,N'Low-Fat Cottage Cheese',N'this is a Description',2.99), + (312,3,N'Raspberry Tart',N'this is a Description',5.49), + (313,20,N'Organic Black Beans',N'this is a Description',1.29), + (314,19,N'Lemon Pepper Seasoning',N'this is a Description',3.29), + (315,32,N'Spice Rack',N'this is a Description',39.99), + (316,43,N'Spicy Snack Mix',N'this is a Description',4.99), + (317,45,N'Almond Milk',N'this is a Description',3.29), + (318,47,N'Basmati Rice',N'this is a Description',5.79), + (319,44,N'Kitchen Scale',N'this is a Description',19.99), + (320,14,N'Granola Cereal',N'this is a Description',4.49), + (321,25,N'Blue Denim Jeans',N'this is a Description',49.99), + (322,9,N'Organic Green Apples',N'this is a Description',1.49), + (323,27,N'Pistachio Ice Cream',N'this is a Description',4.99), + (324,30,N'Body Pillow Case',N'this is a Description',14.99), + (325,4,N'Pet First Aid Kit',N'this is a Description',29.99), + (326,41,N'Almond Butter Cups',N'this is a Description',3.29), + (327,2,N'Car Seat Organizer',N'this is a Description',14.99), + (328,40,N'Pasta (Fusilli)',N'this is a Description',1.79), + (329,49,N'Chiffon Blouse',N'this is a Description',39.99), + (330,11,N'Jigsaw Puzzle',N'this is a Description',14.99), + (331,38,N'Multi-Purpose Plant Care Tool',N'this is a Description',24.99), + (332,24,N'Spicy Chicken Wings',N'this is a Description',9.99), + (333,13,N'Granola Clusters',N'this is a Description',4.99), + (334,16,N'Pet Camera with Treat Dispenser',N'this is a Description',149.99), + (335,33,N'Whole Grain Hamburger Buns',N'this is a Description',2.69), + (336,15,N'Maple Bacon Popcorn',N'this is a Description',3.49), + (337,42,N'Pineapple Coconut Rice Mix',N'this is a Description',3.99), + (338,17,N'Cookbook',N'this is a Description',27.99), + (339,10,N'Adjustable Garden Rake',N'this is a Description',22.99), + (340,1,N'French Onion Dip',N'this is a Description',2.99), + (341,18,N'Chocolate Syrup',N'this is a Description',2.99), + (342,20,N'Fleece Throw Blanket',N'this is a Description',29.99), + (343,33,N'Sushi Rice',N'this is a Description',3.99), + (344,5,N'Fruit Infuser Water Bottle',N'this is a Description',15.99), + (345,47,N'Multi-Purpose Scissors',N'this is a Description',8.99), + (346,39,N'Teriyaki Sauce',N'this is a Description',2.99), + (347,14,N'Granola',N'this is a Description',4.79), + (348,32,N'Potting Soil',N'this is a Description',15.99), + (349,27,N'Folding Backpack Chair',N'this is a Description',49.99), + (350,37,N'Reversible Comforter Set',N'this is a Description',89.99), + (351,29,N'Portable Air Pump',N'this is a Description',19.99), + (352,41,N'Wireless Charging Station',N'this is a Description',39.99), + (353,42,N'Biodegradable Phone Case',N'this is a Description',23.99), + (354,40,N'Honey Roasted Chickpeas',N'this is a Description',3.29), + (355,34,N'Kids'' Educational Tablet',N'this is a Description',129.99), + (356,43,N'Magnet Travel Fridge Magnets',N'this is a Description',12.99), + (357,28,N'Pet Grooming Gloves',N'this is a Description',9.99), + (358,19,N'Tennis Racket',N'this is a Description',89.99), + (359,35,N'Cranberry Almond Granola',N'this is a Description',4.29), + (360,49,N'Home Brewing Starter Kit',N'this is a Description',79.99), + (361,45,N'Pineapple Teriyaki Chicken Mix',N'this is a Description',6.99), + (362,3,N'Rustic Italian Bread',N'this is a Description',3.59), + (363,50,N'Chocolate Mint Cookies',N'this is a Description',2.29), + (364,12,N'Electric Razor',N'this is a Description',59.99), + (365,8,N'Magnetic Screen Door',N'this is a Description',24.99), + (366,16,N'Tomato Paste',N'this is a Description',1.29), + (367,21,N'Peas (frozen)',N'this is a Description',1.89), + (368,38,N'Digital Photo Frame',N'this is a Description',79.99), + (369,6,N'Sweet BBQ Dipping Sauce',N'this is a Description',3.49), + (370,26,N'Portable Bluetooth Headphones',N'this is a Description',79.99), + (371,15,N'Rechargeable Electric Screwdriver',N'this is a Description',39.99), + (372,13,N'Roasted Sweet Corn',N'this is a Description',1.99), + (373,24,N'Cold Brew Coffee Concentrate',N'this is a Description',7.99), + (374,32,N'Coconut Oil Spray',N'this is a Description',4.99), + (375,28,N'Wireless Keyboard and Mouse Combo',N'this is a Description',34.99), + (376,13,N'Wi-Fi Enabled Smart Light Switch',N'this is a Description',24.99), + (377,43,N'Sesame Garlic Stir-Fry Sauce',N'this is a Description',2.79), + (378,2,N'Organic Almonds',N'this is a Description',8.99), + (379,29,N'Computer Monitor Stand',N'this is a Description',29.99), + (380,35,N'Silicone Baking Molds',N'this is a Description',15.99), + (381,30,N'Chocolate Covered Pretzels',N'this is a Description',3.29), + (382,20,N'Magnetic Spice Containers',N'this is a Description',24.99), + (383,21,N'Vegetable Quinoa Bowl',N'this is a Description',5.99), + (384,40,N'Ripped Boyfriend Jeans',N'this is a Description',54.99), + (385,47,N'Asian Stir-Fry Kit',N'this is a Description',5.49), + (386,34,N'Coconut Curry Chicken',N'this is a Description',9.99), + (387,37,N'Wild Rice & Quinoa Mix',N'this is a Description',2.99), + (388,26,N'Mini Pretzels',N'this is a Description',2.99), + (389,19,N'Chocolate Chip Cookie Dough',N'this is a Description',5.49), + (390,36,N'Portable Solar Charger',N'this is a Description',29.99), + (391,16,N'Scent Diffuser',N'this is a Description',34.99), + (392,39,N'Pork Chops',N'this is a Description',9.49), + (393,12,N'Zucchini',N'this is a Description',0.79), + (394,42,N'Electric Ice Cream Maker',N'this is a Description',59.99), + (395,33,N'Hibiscus Tea Bags',N'this is a Description',3.79), + (396,15,N'Oven Mitts',N'this is a Description',15.99), + (397,31,N'Foam Building Blocks for Kids',N'this is a Description',22.99), + (398,50,N'Electric Pressure Cooker',N'this is a Description',89.99), + (399,14,N'Sparkling Blood Orange Soda',N'this is a Description',1.99), + (400,9,N'Green Smoothie Mix',N'this is a Description',5.99), + (401,44,N'Avocado Lime Dressing',N'this is a Description',4.29), + (402,17,N'Energy Bites',N'this is a Description',3.99), + (403,4,N'Rechargeable Electric Screwdriver',N'this is a Description',39.99), + (404,24,N'Slingback Sandals',N'this is a Description',29.99), + (405,35,N'Smart LED Desk Lamp',N'this is a Description',39.99), + (406,3,N'Hydration Backpack',N'this is a Description',39.99), + (407,12,N'Underwater Camera',N'this is a Description',199.99), + (408,2,N'Customizable Name Puzzle',N'this is a Description',29.99), + (409,33,N'Fall-Themed Table Runner',N'this is a Description',19.99), + (410,21,N'Caraway Rye Bread',N'this is a Description',4.79), + (411,49,N'Sesame Noodles',N'this is a Description',5.99), + (412,38,N'Outdoor Camping Hammock',N'this is a Description',29.99), + (413,42,N'Cushion Covers',N'this is a Description',35), + (414,19,N'Coconut Curry Lentils',N'this is a Description',5.79), + (415,50,N'Induction Cooktop',N'this is a Description',89.99), + (416,22,N'Basic V-Neck T-Shirt',N'this is a Description',19.99), + (417,40,N'Foam Roller for Muscle Recovery',N'this is a Description',29.99), + (418,7,N'Chia Seed Pudding',N'this is a Description',3.99), + (419,11,N'Fashionable Belt Bag',N'this is a Description',34.99), + (420,44,N'Wrap Jumpsuit',N'this is a Description',54.99), + (421,18,N'Apple Pie Filling',N'this is a Description',3.49), + (422,46,N'Banana Peanut Butter Smoothie',N'this is a Description',5.49), + (423,14,N'Buffalo Style Cauliflower Bites',N'this is a Description',5.49), + (424,29,N'Juice Extractor',N'this is a Description',99.99), + (425,4,N'High-Pressure Handheld Shower Head',N'this is a Description',39.99), + (426,17,N'Pleated Midi Dress',N'this is a Description',79.99), + (427,48,N'Ginger Turmeric Latte Mix',N'this is a Description',5.29), + (428,41,N'Faux Fur Throw Blanket',N'this is a Description',39.99), + (429,1,N'Turkey Bacon',N'this is a Description',3.99), + (430,10,N'Sliced Cheese',N'this is a Description',4.49), + (431,45,N'Beef Tacos',N'this is a Description',5.49), + (432,28,N'Jennifer''s Amazing Lip Balm Kit',N'this is a Description',22.99), + (433,13,N'Cinnamon Sugar Donuts',N'this is a Description',4.99), + (434,30,N'Gaming Mousepad',N'this is a Description',19.99), + (435,1,N'Puffed Rice Cake',N'this is a Description',2.49), + (436,13,N'Electric Wax Warmer',N'this is a Description',22.99), + (437,41,N'Wireless Range Extender',N'this is a Description',49.99), + (438,4,N'Carrot Sticks',N'this is a Description',2.49), + (439,21,N'Coffee Subscription Service',N'this is a Description',29.99), + (440,10,N'Gluten-Free Pancake Mix',N'this is a Description',5.99), + (441,11,N'Organic Whole Wheat Flour',N'this is a Description',2.99), + (442,32,N'Marinara Sauce',N'this is a Description',3.49), + (443,23,N'Ice Pack',N'this is a Description',8.99), + (444,50,N'Wireless Charger Stand',N'this is a Description',24.99), + (445,31,N'Quinoa Salad',N'this is a Description',5.99), + (446,47,N'Pretzel Bites',N'this is a Description',4.99), + (447,40,N'Sweet Corn',N'this is a Description',1.5), + (448,36,N'LED Canopy Lights',N'this is a Description',29.99), + (449,18,N'Electric Heating Pad',N'this is a Description',20.99), + (450,12,N'Puzzle',N'this is a Description',27.99), + (451,17,N'Spicy Avocado Salsa',N'this is a Description',4.49), + (452,22,N'High-Speed HDMI Cable',N'this is a Description',12.99), + (453,5,N'Digital Stopwatch Timer',N'this is a Description',12.99), + (454,9,N'Children''s Art Set',N'this is a Description',34.99), + (455,35,N'Outdoor Fire Pit',N'this is a Description',149.99), + (456,28,N'Smart Doorbell',N'this is a Description',119.99), + (457,6,N'Car Emergency Kit',N'this is a Description',49.99), + (458,3,N'Sketchbook',N'this is a Description',14.99), + (459,7,N'Vanilla Bean Greek Yogurt',N'this is a Description',1.99), + (460,42,N'Ceramic Bakeware Set',N'this is a Description',49.99), + (461,44,N'Coconut Macaroons',N'this is a Description',4.99), + (462,34,N'Buttermilk Pancakes',N'this is a Description',3.99), + (463,46,N'Sweet Pea Hummus',N'this is a Description',4.29), + (464,38,N'Peanut Butter Protein Balls',N'this is a Description',5.29), + (465,43,N'Fitness Resistance Bands',N'this is a Description',29.99), + (466,2,N'Wireless Security Camera',N'this is a Description',109.99), + (467,33,N'Chocolate Raspberry Tart',N'this is a Description',9.99), + (468,47,N'Cajun Seasoning',N'this is a Description',1.99), + (469,39,N'Almond Flour Cookies',N'this is a Description',4.99), + (470,27,N'Sweet Potato Tots',N'this is a Description',4.29), + (471,34,N'Fitness Tracker Watch',N'this is a Description',79.99), + (472,28,N'Garden Hoses with Expandable Features',N'this is a Description',34.99), + (473,37,N'Dark Chocolate Covered Almonds',N'this is a Description',7.19), + (474,42,N'Roasted Garlic Butter',N'this is a Description',3.29), + (475,43,N'Laundry Detergent',N'this is a Description',12.99), + (476,5,N'Self-Inflating Camping Mattress',N'this is a Description',49.99), + (477,44,N'Chili Lime Shrimp',N'this is a Description',8.99), + (478,22,N'Beef Tacos',N'this is a Description',5.49), + (479,9,N'Elegant Lace Dress',N'this is a Description',79.99), + (480,35,N'Silicone Ice Cube Tray',N'this is a Description',10.99), + (481,15,N'Aeropress Coffee Maker',N'this is a Description',29.99), + (482,25,N'Printed Maxi Skirt',N'this is a Description',39.99), + (483,12,N'LED Desk Lamp with USB Charging',N'this is a Description',39.99), + (484,31,N'Set of Gardening Gloves with Claws',N'this is a Description',15.99), + (485,20,N'Raisin Cinnamon Granola',N'this is a Description',3.79), + (486,26,N'Set of Herb Garden Markers',N'this is a Description',8.99), + (487,30,N'Compact Shoe Rack',N'this is a Description',34.99), + (488,11,N'Frozen Mixed Berries',N'this is a Description',5.99), + (489,3,N'LED Christmas Tree Lights',N'this is a Description',34.99), + (490,46,N'Oven Thermometer',N'this is a Description',11.99), + (491,36,N'Whipped Cream Cheese',N'this is a Description',2.99), + (492,4,N'Watercolor Set',N'this is a Description',19.99), + (493,16,N'LED Strip Lights',N'this is a Description',19.99), + (494,40,N'Plant-Based Cookbook',N'this is a Description',29.99), + (495,23,N'Organic Fruit Salad',N'this is a Description',4.49), + (496,10,N'Electric Food Steamer',N'this is a Description',59.99), + (497,46,N'Puffer Winter Coat',N'this is a Description',99.99), + (498,4,N'Collapsible Storage Crates',N'this is a Description',18.99), + (499,44,N'Canvas High-Top Sneakers',N'this is a Description',49.99), + (500,38,N'Dish Rack',N'this is a Description',24.99); +INSERT INTO [MenuItems] VALUES (501,36,N'Golf Putting Green',N'this is a Description',79.99), + (502,34,N'Pet Grooming Brush',N'this is a Description',19.99), + (503,41,N'Honeycrisp Apples',N'this is a Description',1.89), + (504,40,N'Cherry Almond Protein Bar',N'this is a Description',1.99), + (505,27,N'Portable Phone Mug Holder',N'this is a Description',14.99), + (506,29,N'Protein Powder',N'this is a Description',44.99), + (507,23,N'Lemon Herb Quinoa',N'this is a Description',3.49), + (508,31,N'Portable Pet Stroller',N'this is a Description',89.99), + (509,35,N'Wireless Music Receiver',N'this is a Description',19.99), + (510,5,N'Insulated Wine Tote',N'this is a Description',24.99), + (511,50,N'Electric Milk Frother',N'this is a Description',19.99), + (512,45,N'Customizable Name Plate',N'this is a Description',19.99), + (513,30,N'Pecan Nuts',N'this is a Description',6.49), + (514,6,N'Balsamic Fig Dressing',N'this is a Description',3.79), + (515,39,N'Dog Car Seat Cover',N'this is a Description',39.99), + (516,17,N'Samsung Galaxy Smartwatch',N'this is a Description',249.99), + (517,8,N'Adjustable Skipping Rope',N'this is a Description',12.99), + (518,47,N'Mediterranean Chickpea Bowl',N'this is a Description',6.49), + (519,19,N'Oven-Baked Chicken Tenders',N'this is a Description',6.99), + (520,7,N'Pumpkin Pie Spice',N'this is a Description',2.99), + (521,37,N'Memory Foam Mattress Topper',N'this is a Description',109.99), + (522,25,N'Vegetable Potstickers',N'this is a Description',5.99), + (523,32,N'Interactive Plush Toy',N'this is a Description',34.99), + (524,10,N'Balsamic Vinegar',N'this is a Description',4.99), + (525,24,N'Adjustable Pet Feeder',N'this is a Description',39.99), + (526,28,N'Sweet Corn',N'this is a Description',1.5), + (527,33,N'Sesame Seeds',N'this is a Description',1.99), + (528,40,N'Desk Lamp with USB Port',N'this is a Description',29.99), + (529,4,N'Pesto Pasta Sauce',N'this is a Description',3.99), + (530,3,N'Avocados',N'this is a Description',1.5), + (531,18,N'Leek and Potato Soup',N'this is a Description',3.29), + (532,43,N'Outdoor Inflatable Pool',N'this is a Description',149.99), + (533,20,N'Children''s Art Set',N'this is a Description',34.99), + (534,19,N'Smartphone Gimbal',N'this is a Description',89.99), + (535,30,N'Strawberry Banana Smoothie Pack',N'this is a Description',4.99), + (536,7,N'Tailored Dress Pants',N'this is a Description',79.99), + (537,16,N'Motorcycle Phone Mount',N'this is a Description',14.99), + (538,10,N'Dog Walking Waist Pack',N'this is a Description',19.99), + (539,47,N'Whole Wheat Pita Bread',N'this is a Description',2.79), + (540,48,N'Ranch Dressing',N'this is a Description',2.59), + (541,49,N'Lemon Dill Chicken Skewers',N'this is a Description',9.99), + (542,32,N'Marinara Sauce',N'this is a Description',3.49), + (543,17,N'Essential White Button-Up',N'this is a Description',44.99), + (544,5,N'Cinnamon Ice Cream',N'this is a Description',4.99), + (545,33,N'Green Smoothie Mix',N'this is a Description',5.99), + (546,1,N'Chocolate Fudge Brownie Mix',N'this is a Description',2.99), + (547,37,N'Glass Water Bottle',N'this is a Description',25.99), + (548,2,N'Buffalo Wing Sauce',N'this is a Description',3.99), + (549,9,N'Mediterranean Olives',N'this is a Description',6.49), + (550,21,N'Chili Con Carne Mix',N'this is a Description',2.99), + (551,39,N'Rechargeable Electric Screwdriver',N'this is a Description',39.99), + (552,50,N'Traditional Hummus',N'this is a Description',3.29), + (553,45,N'Adjustable Laptop Desk',N'this is a Description',59.99), + (554,44,N'Stylish Wide-Leg Trousers',N'this is a Description',59.99), + (555,34,N'Lemon Herb Quinoa',N'this is a Description',3.49), + (556,13,N'Wireless Charger Stand',N'this is a Description',24.99), + (557,24,N'Floral Wrap Top',N'this is a Description',49.99), + (558,27,N'Voice-Controlled Speaker',N'this is a Description',99.99), + (559,39,N'Digital Bullet Journal',N'this is a Description',24.99), + (560,25,N'Magnetic Phone Case',N'this is a Description',19.99), + (561,24,N'Laptop Stand',N'this is a Description',29.99), + (562,38,N'Digital Photo Frame',N'this is a Description',79.99), + (563,1,N'Cranberry Pecan Granola',N'this is a Description',3.99), + (564,15,N'Kettle Corn Popcorn',N'this is a Description',2.99), + (565,2,N'Portable Bluetooth Speaker',N'this is a Description',49.99), + (566,16,N'Wireless Charging Station',N'this is a Description',39.99), + (567,29,N'Toilet Paper (12 rolls)',N'this is a Description',8.99), + (568,8,N'Wooden Toy Train Set',N'this is a Description',29.99), + (569,23,N'Blackberry Jam',N'this is a Description',4.29), + (570,45,N'Portable Phone Charger',N'this is a Description',29.99), + (571,10,N'Compact Folding Table',N'this is a Description',49.99), + (572,18,N'Scent Diffuser Oil',N'this is a Description',14.99), + (573,21,N'Sliced Strawberries',N'this is a Description',4.99), + (574,36,N'Mango Chia Pudding',N'this is a Description',4.49), + (575,33,N'Pesto Pasta Sauce',N'this is a Description',3.99), + (576,22,N'Wall Decals for Kids',N'this is a Description',24.99), + (577,11,N'Compact Digital Camera',N'this is a Description',249.99), + (578,46,N'Carrot Sticks',N'this is a Description',2.49), + (579,12,N'Radish Chips',N'this is a Description',2.89), + (580,49,N'Smoked Gouda Cheese',N'this is a Description',5.49), + (581,14,N'Gluten-Free Bread',N'this is a Description',5.49), + (582,42,N'Peanut Butter Chocolate Chip Bars',N'this is a Description',4.59), + (583,26,N'Ginger Turmeric Shots',N'this is a Description',3.99), + (584,41,N'Magic Color-Changing Mug',N'this is a Description',14.99), + (585,47,N'Sesame Ginger Dressing',N'this is a Description',4.09), + (586,34,N'Self-Watering Planter',N'this is a Description',24.99), + (587,40,N'Foldable Yoga Mat',N'this is a Description',29.99), + (588,48,N'Cabbage',N'this is a Description',1.29), + (589,50,N'Gardening Kneeler and Seat',N'this is a Description',39.99), + (590,20,N'Canned Sardines',N'this is a Description',3.29), + (591,32,N'Chia Seeds',N'this is a Description',6.99), + (592,40,N'Andouille Sausage',N'this is a Description',5.49), + (593,26,N'Baby Monitor',N'this is a Description',79.99), + (594,38,N'Motion Sensor Light',N'this is a Description',19.99), + (595,7,N'Computer Monitor Stand',N'this is a Description',29.99), + (596,23,N'Insulated Lunch Box',N'this is a Description',24.99), + (597,33,N'Lemon Basil Pasta Sauce',N'this is a Description',4.99), + (598,45,N'Digital Kitchen Timer',N'this is a Description',14.99), + (599,48,N'Maple Almond Yogurt',N'this is a Description',1.89), + (600,34,N'Savory Rice Cakes',N'this is a Description',2.5), + (601,46,N'Baked Potato Chips',N'this is a Description',2.49), + (602,12,N'Classic Caesar Dressing',N'this is a Description',3.49), + (603,5,N'Fall-Themed Table Runner',N'this is a Description',19.99), + (604,31,N'Tactical Backpack',N'this is a Description',59.99), + (605,42,N'Sustainable Wooden Toys',N'this is a Description',29.99), + (606,49,N'Cream Cheese',N'this is a Description',2.69), + (607,21,N'Faux Fur Throw Blanket',N'this is a Description',39.99), + (608,15,N'Multi-Cooker',N'this is a Description',89.99), + (609,35,N'Electric Griddle with Lid',N'this is a Description',49.99), + (610,11,N'Ginger Tea',N'this is a Description',4.99), + (611,16,N'Cacao Powder',N'this is a Description',4.49), + (612,8,N'Kids'' Art Easel',N'this is a Description',58.99), + (613,28,N'Couscous Mix',N'this is a Description',2.49), + (614,24,N'Homestyle Beef Stew',N'this is a Description',7.99), + (615,36,N'Buffalo Stilton Cheese',N'this is a Description',8.99), + (616,39,N'Microwave Popcorn Maker',N'this is a Description',19.99), + (617,25,N'Curried Lentil Salad',N'this is a Description',4.29), + (618,22,N'Pumpkin Spice Latte Mix',N'this is a Description',3.29), + (619,37,N'Mobile Workbench',N'this is a Description',199.99), + (620,6,N'Honey Glazed Carrots',N'this is a Description',3.49), + (621,19,N'Organic Blueberries',N'this is a Description',5.49), + (622,35,N'Stainless Steel Grater',N'this is a Description',14.99), + (623,24,N'Beef Tacos',N'this is a Description',5.49), + (624,40,N'Raspberry Lemonade Mix',N'this is a Description',3.99), + (625,8,N'Crew Neck Sweater',N'this is a Description',39.99), + (626,3,N'Coconut Cream',N'this is a Description',2.99), + (627,39,N'Spicy Tuna Rolls',N'this is a Description',6.49), + (628,48,N'Electric Bike',N'this is a Description',899.99), + (629,45,N'Trackpad for Laptop',N'this is a Description',49.99), + (630,12,N'Sports Water Bottle with Infuser',N'this is a Description',19.99), + (631,34,N'Electric Stool Heater',N'this is a Description',29.99), + (632,18,N'Instant Pot',N'this is a Description',89.99), + (633,9,N'Kettle Corn Popcorn',N'this is a Description',2.99), + (634,14,N'Herbal Tea Set',N'this is a Description',19.99), + (635,15,N'Wireless Security System',N'this is a Description',299.99), + (636,32,N'Collapsible Folding Chair',N'this is a Description',29.99), + (637,31,N'Teriyaki Chicken Skewers',N'this is a Description',8.99), + (638,21,N'Portable Solar Path Lights',N'this is a Description',39.99), + (639,33,N'Sour Cream',N'this is a Description',3.49), + (640,26,N'Indoor Plants',N'this is a Description',19.99), + (641,49,N'Shower Curtain Hooks',N'this is a Description',12.99), + (642,28,N'Portable SSD',N'this is a Description',129.99), + (643,1,N'Magnetic Puzzle Board',N'this is a Description',24.99), + (644,4,N'Jasmine Rice',N'this is a Description',2.39), + (645,43,N'Set of Silicone Baking Molds',N'this is a Description',15.99), + (646,6,N'Teriyaki Beef Jerky',N'this is a Description',5.49), + (647,10,N'Cranberry Almond Cookies',N'this is a Description',4.29), + (648,36,N'Coconut Chia Seed Pudding',N'this is a Description',2.99), + (649,2,N'Air Purifier',N'this is a Description',129.99), + (650,17,N'Nutty Trail Mix',N'this is a Description',4.29), + (651,46,N'Digital Meat Thermometer',N'this is a Description',24.99), + (652,15,N'Foldable Yoga Mat',N'this is a Description',29.99), + (653,6,N'Car Escape Tool',N'this is a Description',12.99), + (654,5,N'Chocolate Hazelnut Spread',N'this is a Description',5.99), + (655,26,N'Roasted Garlic Pasta Sauce',N'this is a Description',4.99), + (656,32,N'Hibiscus Tea Bags',N'this is a Description',3.79), + (657,41,N'Bird Feeder',N'this is a Description',24.99), + (658,31,N'Portable Refrigerator Freezer',N'this is a Description',299.99), + (659,28,N'Peach Mango Smoothie',N'this is a Description',3.49), + (660,3,N'Silicone Baking Mat Set',N'this is a Description',24.99), + (661,25,N'Digital Bullet Journal',N'this is a Description',24.99), + (662,13,N'Canvas High-Top Sneakers',N'this is a Description',49.99), + (663,22,N'Pocket Blanket',N'this is a Description',24.99), + (664,20,N'Chickpeas',N'this is a Description',1.29), + (665,30,N'Computer Monitor Stand',N'this is a Description',29.99), + (666,37,N'Handheld Vacuum',N'this is a Description',79.99), + (667,23,N'Honey Sriracha Chicken Bites',N'this is a Description',7.99), + (668,36,N'Portable SSD',N'this is a Description',129.99), + (669,33,N'Rechargeable Electric Toothbrush',N'this is a Description',49.99), + (670,50,N'Folding Backpack Chair',N'this is a Description',49.99), + (671,35,N'Trail Mix (Deluxe)',N'this is a Description',4.59), + (672,12,N'Dog Walking Waist Pack',N'this is a Description',19.99), + (673,44,N'Maple Cinnamon Granola',N'this is a Description',4.29), + (674,34,N'Compact Dishwasher',N'this is a Description',299.99), + (675,17,N'Rechargeable Electric Toothbrush',N'this is a Description',49.99), + (676,11,N'Ground Cinnamon',N'this is a Description',1.99), + (677,19,N'Dried Mango Slices',N'this is a Description',3.49), + (678,42,N'Phone Screen Protector',N'this is a Description',12.99), + (679,39,N'Sporty Slide Sandals',N'this is a Description',24.99), + (680,2,N'Siphon Coffee Maker',N'this is a Description',49.99), + (681,10,N'Dried Apricots',N'this is a Description',3.79), + (682,48,N'Artisan Flatbreads',N'this is a Description',2.99), + (683,45,N'Homestyle Chicken Noodle Soup',N'this is a Description',2.99), + (684,41,N'Vegetable Pizza Rolls',N'this is a Description',6.49), + (685,13,N'Lightweight Backpacking Tent',N'this is a Description',129.99), + (686,44,N'Non-Toxic Crayons for Kids',N'this is a Description',10.99), + (687,1,N'Frozen Burritos',N'this is a Description',8.99), + (688,19,N'Peach Salsa',N'this is a Description',3.29), + (689,42,N'Falafel Mix',N'this is a Description',2.79), + (690,29,N'Balsamic Salad Dressing',N'this is a Description',2.99), + (691,5,N'Tuna Fish (canned)',N'this is a Description',2.29), + (692,35,N'Smart Home Security Camera',N'this is a Description',79.99), + (693,39,N'Peach Yogurt',N'this is a Description',1.29), + (694,47,N'Instant Pot',N'this is a Description',89.99), + (695,7,N'Himalayan Pink Salt',N'this is a Description',1.99), + (696,27,N'Fleece Hoodie',N'this is a Description',39.99), + (697,16,N'Multi-Function Meat Tenderizer',N'this is a Description',19.99), + (698,25,N'Peach Mango Smoothie',N'this is a Description',3.49), + (699,43,N'Taro Chips',N'this is a Description',3.59), + (700,46,N'Organic Coconut Water',N'this is a Description',2.79), + (701,48,N'Breezy Off-The-Shoulder Top',N'this is a Description',34.99), + (702,15,N'Vegan Mayonnaise',N'this is a Description',4.49), + (703,28,N'Smoked Paprika',N'this is a Description',2.99), + (704,31,N'Feta Cheese',N'this is a Description',4.99), + (705,14,N'Garden Tool Set with Carrying Bag',N'this is a Description',39.99), + (706,9,N'Fitness Tracker Band',N'this is a Description',29.99), + (707,20,N'Adjustable Standing Desk',N'this is a Description',299.99), + (708,18,N'Streaming Device',N'this is a Description',49.99), + (709,30,N'Coconut Cream Pie Yogurt',N'this is a Description',1.99), + (710,22,N'Soft Plush Throw Blanket',N'this is a Description',29.99), + (711,24,N'Coconut Curry Chicken',N'this is a Description',9.99), + (712,36,N'Couscous Mix',N'this is a Description',2.49), + (713,37,N'Coloring Books for Adults',N'this is a Description',14.99), + (714,47,N'Coconut Water',N'this is a Description',2.49), + (715,45,N'Sriracha Honey Glaze',N'this is a Description',3.59), + (716,38,N'Memory Foam Mattress Pad',N'this is a Description',69.99), + (717,1,N'Suction Cup Hooks',N'this is a Description',9.99), + (718,31,N'Kids'' Educational Tablet',N'this is a Description',129.99), + (719,42,N'Gluten-Free Bread',N'this is a Description',5.49), + (720,48,N'Tortilla Chips',N'this is a Description',2.99), + (721,41,N'LED Strip Lights Kit',N'this is a Description',29.99), + (722,35,N'Face Mask Set',N'this is a Description',19.99), + (723,13,N'Cranberry Orange Juice',N'this is a Description',2.49), + (724,28,N'Hydration Backpack',N'this is a Description',39.99), + (725,36,N'Skincare Set',N'this is a Description',54.99), + (726,6,N'Travel Document Organizer',N'this is a Description',15.99), + (727,40,N'Trail Mix (Deluxe)',N'this is a Description',4.59), + (728,8,N'Window Blinds',N'this is a Description',59.99), + (729,34,N'Flavored Popcorn Mix',N'this is a Description',2.99), + (730,49,N'Frozen Pizza',N'this is a Description',7.99), + (731,29,N'Adjustable Resistance Bands',N'this is a Description',39.99), + (732,26,N'Honey Ginger Tea',N'this is a Description',2.99), + (733,23,N'Faux Fur Coat',N'this is a Description',129.99), + (734,30,N'Garlic Parmesan Roasted Nuts',N'this is a Description',4.89), + (735,50,N'Portable Ice Maker',N'this is a Description',199.99), + (736,20,N'Luxury Bath Salts',N'this is a Description',19.99), + (737,24,N'Digital Kitchen Timer',N'this is a Description',14.99), + (738,15,N'Cinnamon Raisin Bread',N'this is a Description',3.79), + (739,17,N'Frozen Broccoli',N'this is a Description',2.49), + (740,33,N'Savory Oats',N'this is a Description',2.49), + (741,11,N'Cranberry Orange Oatmeal',N'this is a Description',2.49), + (742,44,N'Almond Butter',N'this is a Description',6.49), + (743,2,N'Interactive Robot Toy',N'this is a Description',34.99), + (744,18,N'Gaming Headset',N'this is a Description',69.99), + (745,50,N'Robot Vacuum Cleaner',N'this is a Description',299.99), + (746,43,N'Suction Cup Hooks',N'this is a Description',9.99), + (747,31,N'Baking Soda',N'this is a Description',0.99), + (748,37,N'Bamboo Charcoal Air Purifier Bags',N'this is a Description',12.99), + (749,46,N'Kids Tablet',N'this is a Description',129.99), + (750,45,N'Homemade Salsa',N'this is a Description',3.79); +INSERT INTO [MenuItems] VALUES (751,10,N'Stainless Steel Water Bottle',N'this is a Description',25.99), + (752,48,N'Essential White Button-Up',N'this is a Description',44.99), + (753,14,N'Pumpkin Pancake Mix',N'this is a Description',4.19), + (754,41,N'Wooden Toy Train Set',N'this is a Description',29.99), + (755,7,N'Chocolate Fudge Brownie Mix',N'this is a Description',2.99), + (756,26,N'Adjustable Dog Harness',N'this is a Description',24.99), + (757,40,N'Rice Pilaf Mix',N'this is a Description',2.59), + (758,24,N'Wall-Mounted Spice Rack',N'this is a Description',39.99), + (759,21,N'Organic Vanilla Bean Ice Cream',N'this is a Description',5.99), + (760,2,N'Pineapple Coconut Bars',N'this is a Description',3.79), + (761,47,N'Carrot Sticks',N'this is a Description',2.49), + (762,22,N'Vegetarian Stir Fry Sauce',N'this is a Description',2.49), + (763,30,N'Classic White T-Shirt',N'this is a Description',19.99), + (764,3,N'Kale Caesar Salad Kit',N'this is a Description',5.99), + (765,28,N'Reversible Comforter Set',N'this is a Description',89.99), + (766,38,N'Blackberry Jam',N'this is a Description',4.29), + (767,1,N'Chocolate Syrup',N'this is a Description',2.99), + (768,16,N'Sweet Potatoes',N'this is a Description',0.89), + (769,19,N'Wireless Music Receiver',N'this is a Description',19.99), + (770,13,N'Instant Camera',N'this is a Description',89.99), + (771,8,N'Brown Rice',N'this is a Description',1.79), + (772,18,N'Garam Masala Spice Blend',N'this is a Description',2.79), + (773,27,N'Suede Ankle Booties',N'this is a Description',79.99), + (774,33,N'Kettle Chip Variety Pack',N'this is a Description',3.99), + (775,23,N'Tomato Basil Pasta Sauce',N'this is a Description',3.99), + (776,28,N'Casual Sneakers',N'this is a Description',39.99), + (777,37,N'Artisan Bread Loaf',N'this is a Description',3.99), + (778,1,N'Himalayan Pink Salt',N'this is a Description',1.99), + (779,6,N'Coconut Oil',N'this is a Description',6.49), + (780,8,N'Wireless Wi-Fi Extender',N'this is a Description',49.99), + (781,34,N'Arcade Game Machine',N'this is a Description',299.99), + (782,32,N'Foot Massager Machine',N'this is a Description',59.99), + (783,23,N'Sriracha Sauce',N'this is a Description',3.19), + (784,7,N'Pet Safety Belt for Car',N'this is a Description',14.99), + (785,4,N'Home Delivery Food Journal',N'this is a Description',14.99), + (786,12,N'Teriyaki Salmon Fillets',N'this is a Description',9.99), + (787,46,N'Cinnamon Roll Protein Bar',N'this is a Description',2.99), + (788,48,N'Vacuum Sealer Machine',N'this is a Description',89.99), + (789,41,N'Men''s Waterproof Hiking Boots',N'this is a Description',89.99), + (790,5,N'Glass Tea Pot',N'this is a Description',34.99), + (791,16,N'Peanut Butter Chocolate Chip Bars',N'this is a Description',4.59), + (792,22,N'Aged White Cheddar Popcorn',N'this is a Description',2.99), + (793,20,N'Kids'' Science Experiment Kit',N'this is a Description',29.99), + (794,26,N'Wireless Range Extender',N'this is a Description',49.99), + (795,44,N'Buffalo Chicken Wraps',N'this is a Description',5.99), + (796,50,N'Protein Powder',N'this is a Description',44.99), + (797,3,N'Carrot and Celery Sticks',N'this is a Description',2.99), + (798,24,N'Maple Glazed Carrots',N'this is a Description',3.29), + (799,38,N'Honey Mustard Dip',N'this is a Description',3.29), + (800,25,N'Fresh Lemons',N'this is a Description',0.75), + (801,17,N'Garden Tool Set',N'this is a Description',34.99), + (802,40,N'Coconut Milk',N'this is a Description',2.49), + (803,47,N'Vegan Chickpea Salad',N'this is a Description',3.99), + (804,14,N'Organic Coconut Flour',N'this is a Description',5.49), + (805,15,N'Printed Maxi Skirt',N'this is a Description',39.99), + (806,29,N'Portable Refrigerator Freezer',N'this is a Description',299.99), + (807,24,N'Motorcycle Phone Mount',N'this is a Description',14.99), + (808,25,N'Marinara Sauce',N'this is a Description',3.49), + (809,26,N'Fruit & Nut Trail Mix',N'this is a Description',4.99), + (810,17,N'Smart Thermostat',N'this is a Description',149.99), + (811,34,N'Heart-Shaped Baking Molds',N'this is a Description',10.99), + (812,40,N'Air Mattress',N'this is a Description',49.99), + (813,12,N'Plant-Based Meal Prep Containers',N'this is a Description',18.99), + (814,37,N'Smart Light Switch',N'this is a Description',29.99), + (815,21,N'Video Camera',N'this is a Description',199), + (816,48,N'Sour Cream',N'this is a Description',3.49), + (817,8,N'Nutty Quinoa Salad',N'this is a Description',4.99), + (818,22,N'Tortilla Chips',N'this is a Description',2.99), + (819,11,N'Soft Plush Throw Blanket',N'this is a Description',29.99), + (820,14,N'Fresh Basil',N'this is a Description',1.99), + (821,45,N'Leather Crossbody Bag',N'this is a Description',89.99), + (822,5,N'Savory Oatmeal Cups',N'this is a Description',1.99), + (823,27,N'Organic Baby Carrots',N'this is a Description',2.99), + (824,15,N'Organic Black Bean Burger',N'this is a Description',4.49), + (825,39,N'Mini Indoor Herb Garden Kit',N'this is a Description',24.99), + (826,7,N'Sweet Potato Fries',N'this is a Description',3.99), + (827,41,N'Sunflower Seeds',N'this is a Description',2.99), + (828,20,N'Outdoor Picnic Blanket',N'this is a Description',34.99), + (829,33,N'Cauliflower Crust Pizza',N'this is a Description',7.99), + (830,9,N'Vegan Cheese',N'this is a Description',4.99), + (831,31,N'Oven-Baked Parmesan Zucchini',N'this is a Description',4.99), + (832,6,N'Peach & Mango Salsa',N'this is a Description',4.49), + (833,3,N'Sesame Ginger Dressing',N'this is a Description',4.09), + (834,38,N'Decorative Wall Tapestry',N'this is a Description',34.99), + (835,49,N'Customizable Wall Calendar',N'this is a Description',24.99), + (836,47,N'Vanilla Ice Cream',N'this is a Description',4.99), + (837,43,N'Stylish Wireless Earbuds',N'this is a Description',59.99), + (838,48,N'Phone Screen Protector',N'this is a Description',12.99), + (839,18,N'Digital Food Scale',N'this is a Description',22.99), + (840,32,N'Veggie Lovers Pizza',N'this is a Description',8.99), + (841,49,N'Multicolored LED Strip Lights',N'this is a Description',29.99), + (842,17,N'Italian Pasta',N'this is a Description',2.29), + (843,30,N'Smart Thermostat',N'this is a Description',149.99), + (844,13,N'Graphic Sweatshirt',N'this is a Description',34.99), + (845,38,N'Plant Growing Kit',N'this is a Description',22.99), + (846,15,N'Portable SSD',N'this is a Description',129.99), + (847,21,N'DIY Candle Making Kit',N'this is a Description',22.99), + (848,22,N'Peanut Butter Chocolate Chip Bars',N'this is a Description',4.59), + (849,16,N'Car Windshield Sun Shade',N'this is a Description',19.99), + (850,19,N'Strawberry Fruit Spread',N'this is a Description',3.59), + (851,36,N'Sooji (Semolina)',N'this is a Description',1.99), + (852,50,N'Whole Roasted Chicken',N'this is a Description',9.99), + (853,46,N'Casual Sneakers',N'this is a Description',39.99), + (854,7,N'Pet First Aid Kit',N'this is a Description',29.99), + (855,33,N'Glass Water Bottle',N'this is a Description',25.99), + (856,42,N'Ginger Tea',N'this is a Description',4.99), + (857,11,N'Organic Italian Seasoning',N'this is a Description',2.99), + (858,31,N'Wild Rice & Quinoa Mix',N'this is a Description',2.99), + (859,28,N'Gardening Gloves with Claws',N'this is a Description',24.99), + (860,45,N'Personal Blender with Cups',N'this is a Description',34.99), + (861,6,N'Sweetened Condensed Milk',N'this is a Description',1.89), + (862,24,N'High-Top Leather Boots',N'this is a Description',99.99), + (863,47,N'Biodegradable Phone Case',N'this is a Description',23.99), + (864,25,N'Screen Cleaning Kit',N'this is a Description',15.99), + (865,41,N'Mini Fondue Set',N'this is a Description',34.99), + (866,40,N'Hand Mixer',N'this is a Description',29.99), + (867,10,N'Portable Phone Charger',N'this is a Description',29.99), + (868,29,N'Smartphone Tripod with Bluetooth Remote',N'this is a Description',29.99), + (869,11,N'Mini Cordless Vacuum Cleaner',N'this is a Description',45.99), + (870,25,N'Whole Wheat Bread',N'this is a Description',2.49), + (871,39,N'Warm Wool Sweater',N'this is a Description',59.99), + (872,1,N'Home Karaoke System',N'this is a Description',129.99), + (873,5,N'Surimi Crab Sticks',N'this is a Description',4.19), + (874,32,N'Organic Apples',N'this is a Description',1.89), + (875,18,N'Roasted Garlic Mashed Potatoes',N'this is a Description',3.99), + (876,38,N'Fleece Hoodie',N'this is a Description',39.99), + (877,26,N'Sooji (Semolina)',N'this is a Description',1.99), + (878,35,N'Workstation Laptop Stand',N'this is a Description',49.99), + (879,10,N'Underwater Camera',N'this is a Description',199.99), + (880,42,N'Maple Syrup',N'this is a Description',6.99), + (881,49,N'Garlic Butter Shrimp',N'this is a Description',8.99), + (882,48,N'Travel Jewelry Case',N'this is a Description',24.99), + (883,46,N'Coconut Rice',N'this is a Description',2.29), + (884,40,N'Knitted Infinity Scarf',N'this is a Description',29.99), + (885,21,N'Magic Color-Changing Mug',N'this is a Description',14.99), + (886,29,N'Herb Garden Planter Box',N'this is a Description',49.99), + (887,34,N'Spicy Roasted Nuts',N'this is a Description',4.99), + (888,7,N'Compost Bin',N'this is a Description',29.99), + (889,9,N'Basil Lemonade',N'this is a Description',2.99), + (890,50,N'Popcorn Chicken',N'this is a Description',6.49), + (891,4,N'Portable Campfire',N'this is a Description',39.99), + (892,2,N'Fitness Jump Rope',N'this is a Description',15.99), + (893,44,N'Tomato Paste',N'this is a Description',1.29), + (894,15,N'Water Bottle',N'this is a Description',18.99), + (895,17,N'Eco-Friendly Disposable Plates',N'this is a Description',22.99), + (896,8,N'Essential White Button-Up',N'this is a Description',44.99), + (897,36,N'Personal Blender with Travel Lid',N'this is a Description',34.99), + (898,20,N'Ceramic Non-Stick Frying Pan',N'this is a Description',39.99), + (899,37,N'Buffalo Style Cauliflower Bites',N'this is a Description',5.49), + (900,18,N'Dark Chocolate Covered Raisins',N'this is a Description',3.99), + (901,22,N'Denim Jacket',N'this is a Description',69.99), + (902,28,N'Gaming Mousepad',N'this is a Description',19.99), + (903,39,N'Coconut Curry Lentils',N'this is a Description',5.79), + (904,30,N'Spiced Pumpkin Soup',N'this is a Description',3.99), + (905,40,N'Classic Caesar Salad Kit',N'this is a Description',4.99), + (906,7,N'Electric Toothbrush Holder',N'this is a Description',14.99), + (907,43,N'Dog Training Collar',N'this is a Description',39.99), + (908,27,N'Honey Butter Popcorn',N'this is a Description',2.99), + (909,11,N'Digital Bullet Journal',N'this is a Description',24.99), + (910,26,N'Reversible Swimming Pool Lounger',N'this is a Description',34.99), + (911,29,N'Screen Cleaning Kit',N'this is a Description',15.99), + (912,17,N'French Bread',N'this is a Description',2.49), + (913,36,N'Sesame Noodles',N'this is a Description',5.99), + (914,21,N'Elegant Maxi Skirt',N'this is a Description',44.99), + (915,5,N'Telescope',N'this is a Description',159.99), + (916,16,N'Foam Muscle Roller',N'this is a Description',24.99), + (917,31,N'Camping Chair',N'this is a Description',29.99), + (918,46,N'Graphic Print Leggings',N'this is a Description',29.99), + (919,45,N'Organic Granola Cereal',N'this is a Description',5.99), + (920,8,N'Artisan Cornbread Mix',N'this is a Description',2.49), + (921,42,N'Cotton Tote Bag Set',N'this is a Description',29.99), + (922,19,N'Almond Flour Pancake Mix',N'this is a Description',5.99), + (923,4,N'Comfortable Bed Pillow',N'this is a Description',24.99), + (924,37,N'Flavored Rice Cakes',N'this is a Description',2.49), + (925,47,N'Car Escape Tool',N'this is a Description',12.99), + (926,50,N'Buffalo Style Cauliflower Bites',N'this is a Description',5.49), + (927,33,N'Multi-Tool',N'this is a Description',39.99), + (928,3,N'Herbal Tea Sampler Box',N'this is a Description',29.99), + (929,25,N'Juice Extractor',N'this is a Description',99.99), + (930,20,N'Chicken Fajita Kit',N'this is a Description',8.99), + (931,10,N'Garlic Breadsticks',N'this is a Description',3.49), + (932,8,N'Teriyaki Stir-Fry Sauce',N'this is a Description',3.49), + (933,27,N'Board Game Storage',N'this is a Description',19.99), + (934,12,N'Pepper Jack Cheese Slices',N'this is a Description',3.49), + (935,35,N'Multi-Purpose Marine Rope',N'this is a Description',19.99), + (936,31,N'Cauliflower Pizza Crust',N'this is a Description',5.99), + (937,6,N'Portable Camping Stove',N'this is a Description',49.99), + (938,38,N'Self-Inflating Camping Mattress',N'this is a Description',49.99), + (939,36,N'High-Low Hem Tee',N'this is a Description',22.99), + (940,46,N'Crispy Kale Chips',N'this is a Description',2.99), + (941,14,N'Pork Tenderloin',N'this is a Description',10.99), + (942,29,N'Reusable Silicone Food Storage Bags',N'this is a Description',19.99), + (943,44,N'Travel Pillow',N'this is a Description',22.99), + (944,15,N'Fresh Strawberries',N'this is a Description',3.99), + (945,1,N'Silicone Baking Cups',N'this is a Description',10.99), + (946,25,N'Sports Windbreaker',N'this is a Description',44.99), + (947,42,N'Garlic Butter Sauce',N'this is a Description',3.59), + (948,28,N'Cold Brew Coffee Concentrate',N'this is a Description',7.99), + (949,41,N'Mesh Sports Leggings',N'this is a Description',39.99), + (950,2,N'Peach Halves (canned)',N'this is a Description',2.49), + (951,13,N'Chocolate Mint Thins',N'this is a Description',2.99), + (952,43,N'Mango Chilli Sauce',N'this is a Description',3.99), + (953,34,N'Cranberry Almond Granola',N'this is a Description',4.29), + (954,49,N'Lemon Lime Sparkling Water',N'this is a Description',1.99), + (955,9,N'Black Bean Salsa',N'this is a Description',3.49), + (956,5,N'Vegetable Spiralizer',N'this is a Description',19.99), + (957,30,N'Mini Food Processor',N'this is a Description',39.99), + (958,11,N'Cucumber',N'this is a Description',0.99), + (959,19,N'LED Flashlight with Rechargeable Batteries',N'this is a Description',19.99), + (960,40,N'Whisk Set',N'this is a Description',12.99), + (961,47,N'Traditional Hummus',N'this is a Description',3.29), + (962,7,N'Oven-Baked Parmesan Zucchini',N'this is a Description',4.99), + (963,39,N'Pet Bed with Removable Cover',N'this is a Description',49.99), + (964,3,N'Kids'' Crafting Station',N'this is a Description',49.99), + (965,25,N'Almond Butter Cups',N'this is a Description',3.29), + (966,15,N'Spinach Artichoke Dip',N'this is a Description',4.99), + (967,10,N'Compact Portable Grill',N'this is a Description',79.99), + (968,45,N'Smashed Avocado with Lime',N'this is a Description',2.49), + (969,35,N'Brownie Bites',N'this is a Description',4.99), + (970,26,N'Mini Cordless Vacuum Cleaner',N'this is a Description',45.99), + (971,31,N'Outdoor Portable Fire Pit',N'this is a Description',149.99), + (972,38,N'Organic Green Apples',N'this is a Description',1.49), + (973,4,N'White Rice',N'this is a Description',1.49), + (974,18,N'Graphic Tee',N'this is a Description',19.99), + (975,30,N'Spicy Hummus',N'this is a Description',3.49), + (976,23,N'Multi-Port USB Hub',N'this is a Description',19.99), + (977,29,N'Canned Coconut Milk',N'this is a Description',1.89), + (978,28,N'Adjustable Stand for Tablets and Smartphones',N'this is a Description',19.99), + (979,40,N'Peach Mango Smoothie',N'this is a Description',3.49), + (980,20,N'Pumpkin Spice Creamer',N'this is a Description',3.79), + (981,9,N'Smart Fitness Scale',N'this is a Description',49.99), + (982,16,N'Almond Joy Protein Bars',N'this is a Description',1.99), + (983,11,N'Wireless Charger Stand',N'this is a Description',24.99), + (984,42,N'Faux Fur Throw Blanket',N'this is a Description',39.99), + (985,48,N'Maple Breakfast Sausage',N'this is a Description',5.99), + (986,46,N'Pet Grooming Scissors',N'this is a Description',16.99), + (987,24,N'Peach Salsa',N'this is a Description',3.29), + (988,19,N'Smartphone Tripod with Remote',N'this is a Description',29.99), + (989,44,N'Cinnamon Roll Dough',N'this is a Description',4.49), + (990,50,N'Maple Almond Yogurt',N'this is a Description',1.89), + (991,12,N'Stainless Steel BBQ Grill Set',N'this is a Description',49.99), + (992,47,N'Basil Pesto Pasta',N'this is a Description',6.49), + (993,41,N'Memory Foam Pillow',N'this is a Description',39.99), + (994,5,N'Electric Heat Pad',N'this is a Description',24.99), + (995,43,N'Italian Sausage and Peppers',N'this is a Description',8.99), + (996,36,N'Portable Air Purifier',N'this is a Description',69.99), + (997,37,N'Bamboo Toothbrush Holder',N'this is a Description',14.99), + (998,34,N'Organic Quinoa Salad',N'this is a Description',5.99), + (999,2,N'Canned Coconut Milk',N'this is a Description',1.89), + (1000,1,N'Chocolate Mint Cookies',N'this is a Description',2.29); diff --git a/schema/014_TablesSeed.sql b/schema/014_TablesSeed.sql new file mode 100644 index 0000000..c6f1c29 --- /dev/null +++ b/schema/014_TablesSeed.sql @@ -0,0 +1,102 @@ + +use RestaurantReservation ; +INSERT INTO [Tables] VALUES (1,32,5), + (2,37,10), + (3,41,2), + (4,31,2), + (5,24,2), + (6,10,2), + (7,39,10), + (8,7,10), + (9,2,2), + (10,40,5), + (11,20,2), + (12,10,10), + (13,4,10), + (14,40,2), + (15,38,6), + (16,43,2), + (17,45,2), + (18,42,2), + (19,40,2), + (20,47,6), + (21,8,10), + (22,31,10), + (23,40,10), + (24,14,10), + (25,9,10), + (26,33,2), + (27,15,6), + (28,47,2), + (29,4,10), + (30,32,6), + (31,6,10), + (32,31,5), + (33,2,2), + (34,30,5), + (35,38,2), + (36,47,5), + (37,36,6), + (38,33,10), + (39,21,6), + (40,19,2), + (41,6,6), + (42,32,2), + (43,33,2), + (44,3,5), + (45,12,6), + (46,10,2), + (47,20,5), + (48,5,2), + (49,8,10), + (50,25,6), + (51,38,6), + (52,21,6), + (53,47,2), + (54,17,5), + (55,37,5), + (56,12,5), + (57,11,2), + (58,19,2), + (59,48,5), + (60,38,6), + (61,22,5), + (62,42,6), + (63,19,5), + (64,10,2), + (65,4,10), + (66,23,2), + (67,26,5), + (68,33,5), + (69,3,10), + (70,50,6), + (71,39,5), + (72,19,2), + (73,47,5), + (74,10,6), + (75,16,2), + (76,32,5), + (77,23,6), + (78,12,5), + (79,24,5), + (80,27,10), + (81,22,6), + (82,47,2), + (83,35,5), + (84,2,10), + (85,24,5), + (86,31,6), + (87,18,2), + (88,8,10), + (89,1,5), + (90,9,2), + (91,44,10), + (92,28,6), + (93,39,6), + (94,15,2), + (95,45,2), + (96,21,2), + (97,40,10), + (98,4,2), + (99,1,2), + (100,14,5); diff --git a/schema/015_ReservationsSeed.sql b/schema/015_ReservationsSeed.sql new file mode 100644 index 0000000..e74f67c --- /dev/null +++ b/schema/015_ReservationsSeed.sql @@ -0,0 +1,502 @@ + +use RestaurantReservation ; +INSERT INTO [Reservations] VALUES (1,110,13,70,'2025-09-06 00:00:00',4), + (2,332,35,63,'2025-08-22 00:00:00',8), + (3,340,15,40,'2025-04-17 00:00:00',8), + (4,185,28,35,'2024-10-23 00:00:00',8), + (5,204,44,26,'2024-11-23 00:00:00',10), + (6,392,10,19,'2024-10-06 00:00:00',5), + (7,299,43,27,'2025-04-01 00:00:00',8), + (8,356,27,99,'2025-01-12 00:00:00',6), + (9,285,22,83,'2025-07-03 00:00:00',7), + (10,25,9,51,'2025-07-18 00:00:00',3), + (11,171,4,30,'2025-09-03 00:00:00',2), + (12,275,45,29,'2025-06-08 00:00:00',4), + (13,184,23,46,'2024-10-29 00:00:00',6), + (14,53,34,86,'2024-10-30 00:00:00',8), + (15,76,47,67,'2025-03-02 00:00:00',3), + (16,379,30,67,'2025-02-25 00:00:00',2), + (17,381,43,75,'2024-12-14 00:00:00',5), + (18,391,22,76,'2025-09-02 00:00:00',9), + (19,106,12,38,'2025-07-11 00:00:00',9), + (20,298,5,91,'2025-06-08 00:00:00',4), + (21,207,33,59,'2025-02-13 00:00:00',6), + (22,271,37,57,'2024-10-29 00:00:00',7), + (23,230,40,60,'2025-09-11 00:00:00',4), + (24,46,50,94,'2024-12-12 00:00:00',5), + (25,313,7,5,'2025-01-28 00:00:00',7), + (26,49,9,22,'2024-10-27 00:00:00',8), + (27,335,47,96,'2025-06-28 00:00:00',9), + (28,167,36,100,'2025-07-05 00:00:00',2), + (29,44,35,20,'2025-03-08 00:00:00',2), + (30,394,19,19,'2025-08-24 00:00:00',3), + (31,374,18,71,'2025-01-21 00:00:00',5), + (32,309,24,26,'2025-01-13 00:00:00',6), + (33,13,38,53,'2025-05-17 00:00:00',1), + (34,21,46,32,'2025-05-19 00:00:00',2), + (35,344,45,66,'2025-06-20 00:00:00',4), + (36,36,9,65,'2024-12-06 00:00:00',1), + (37,174,27,20,'2025-07-25 00:00:00',1), + (38,284,3,34,'2025-04-29 00:00:00',6), + (39,240,2,74,'2025-08-13 00:00:00',4), + (40,12,30,51,'2025-01-18 00:00:00',1), + (41,166,16,67,'2024-11-18 00:00:00',9), + (42,63,13,84,'2025-05-08 00:00:00',8), + (43,205,35,93,'2025-07-19 00:00:00',10), + (44,109,5,47,'2025-07-15 00:00:00',1), + (45,154,14,90,'2025-06-16 00:00:00',2), + (46,382,45,2,'2025-01-13 00:00:00',4), + (47,306,36,34,'2025-01-03 00:00:00',9), + (48,360,8,24,'2024-12-16 00:00:00',8), + (49,142,25,23,'2025-04-18 00:00:00',3), + (50,81,15,98,'2025-06-01 00:00:00',2), + (51,94,7,4,'2025-05-27 00:00:00',1), + (52,340,40,28,'2025-05-07 00:00:00',10), + (53,147,10,77,'2024-11-10 00:00:00',2), + (54,124,39,69,'2024-11-09 00:00:00',9), + (55,251,41,89,'2024-10-13 00:00:00',1), + (56,236,6,37,'2025-05-19 00:00:00',1), + (57,206,13,55,'2024-12-09 00:00:00',8), + (58,243,1,3,'2025-01-01 00:00:00',6), + (59,311,3,50,'2025-01-03 00:00:00',3), + (60,170,2,99,'2025-07-29 00:00:00',3), + (61,330,11,51,'2025-02-03 00:00:00',1), + (62,77,2,19,'2025-07-22 00:00:00',7), + (63,184,26,6,'2025-02-17 00:00:00',1), + (64,351,10,100,'2025-02-10 00:00:00',6), + (65,274,47,94,'2024-11-26 00:00:00',5), + (66,29,22,39,'2025-08-27 00:00:00',8), + (67,135,48,17,'2025-04-12 00:00:00',3), + (68,250,24,70,'2025-06-23 00:00:00',2), + (69,304,38,49,'2025-04-26 00:00:00',7), + (70,80,42,29,'2025-03-11 00:00:00',7), + (71,158,29,69,'2025-04-29 00:00:00',3), + (72,287,33,38,'2025-09-01 00:00:00',2), + (73,49,4,98,'2025-09-22 00:00:00',2), + (74,34,45,53,'2025-03-21 00:00:00',2), + (75,44,17,61,'2025-09-06 00:00:00',3), + (76,365,18,92,'2025-08-04 00:00:00',2), + (77,216,15,58,'2025-07-26 00:00:00',4), + (78,20,33,32,'2025-03-21 00:00:00',4), + (79,12,30,44,'2024-11-25 00:00:00',2), + (80,10,47,85,'2025-01-27 00:00:00',1), + (81,9,37,2,'2024-12-24 00:00:00',9), + (82,72,26,13,'2025-05-25 00:00:00',9), + (83,99,28,18,'2025-03-16 00:00:00',6), + (84,113,7,15,'2025-07-02 00:00:00',10), + (85,344,32,64,'2024-10-14 00:00:00',6), + (86,142,9,79,'2025-05-29 00:00:00',7), + (87,23,34,3,'2025-06-26 00:00:00',10), + (88,156,48,25,'2025-02-04 00:00:00',10), + (89,154,19,82,'2025-09-13 00:00:00',9), + (90,385,10,7,'2025-01-09 00:00:00',6), + (91,370,8,10,'2025-07-24 00:00:00',8), + (92,162,4,68,'2025-01-28 00:00:00',8), + (93,210,29,23,'2025-06-22 00:00:00',4), + (94,121,28,87,'2025-01-06 00:00:00',4), + (95,3,5,56,'2024-12-29 00:00:00',5), + (96,81,15,51,'2024-10-30 00:00:00',7), + (97,118,21,57,'2025-09-03 00:00:00',7), + (98,161,36,93,'2025-07-05 00:00:00',9), + (99,41,37,14,'2025-01-16 00:00:00',3), + (100,362,33,16,'2025-04-03 00:00:00',5), + (101,117,2,34,'2025-07-17 00:00:00',8), + (102,46,48,58,'2025-08-13 00:00:00',2), + (103,224,41,91,'2024-11-26 00:00:00',3), + (104,63,3,5,'2025-05-14 00:00:00',5), + (105,391,22,85,'2025-03-25 00:00:00',8), + (106,154,8,58,'2024-11-28 00:00:00',4), + (107,279,34,96,'2024-12-09 00:00:00',7), + (108,227,49,30,'2024-11-22 00:00:00',1), + (109,80,2,42,'2025-04-29 00:00:00',1), + (110,255,4,100,'2025-09-06 00:00:00',6), + (111,12,1,94,'2025-03-02 00:00:00',9), + (112,348,21,79,'2025-02-26 00:00:00',5), + (113,251,20,83,'2025-01-13 00:00:00',10), + (114,185,43,15,'2024-09-29 00:00:00',5), + (115,78,47,84,'2025-08-16 00:00:00',1), + (116,13,27,45,'2025-07-25 00:00:00',7), + (117,113,26,29,'2025-03-20 00:00:00',6), + (118,343,31,6,'2025-09-18 00:00:00',2), + (119,55,11,41,'2025-04-28 00:00:00',9), + (120,58,24,78,'2024-12-01 00:00:00',9), + (121,15,18,41,'2025-01-11 00:00:00',5), + (122,111,25,94,'2024-10-25 00:00:00',7), + (123,345,42,42,'2025-07-10 00:00:00',6), + (124,168,3,39,'2025-06-27 00:00:00',10), + (125,397,33,44,'2025-01-16 00:00:00',3), + (126,389,34,11,'2024-12-14 00:00:00',1), + (127,336,6,1,'2025-04-24 00:00:00',3), + (128,69,43,35,'2025-03-04 00:00:00',5), + (129,119,24,96,'2025-07-20 00:00:00',9), + (130,60,5,37,'2025-09-01 00:00:00',7), + (131,33,36,38,'2025-06-27 00:00:00',10), + (132,61,19,83,'2025-06-21 00:00:00',3), + (133,386,11,2,'2024-10-15 00:00:00',2), + (134,45,21,49,'2025-05-06 00:00:00',6), + (135,286,29,31,'2024-10-31 00:00:00',6), + (136,243,50,4,'2024-10-05 00:00:00',9), + (137,28,43,54,'2025-07-13 00:00:00',6), + (138,296,11,16,'2024-11-01 00:00:00',5), + (139,48,34,65,'2024-12-06 00:00:00',4), + (140,200,17,71,'2025-07-16 00:00:00',7), + (141,53,6,80,'2024-12-03 00:00:00',1), + (142,218,39,94,'2025-06-22 00:00:00',3), + (143,172,14,81,'2025-06-15 00:00:00',4), + (144,286,18,90,'2025-05-27 00:00:00',8), + (145,240,13,12,'2024-10-16 00:00:00',10), + (146,55,21,37,'2025-02-22 00:00:00',7), + (147,349,35,50,'2025-01-13 00:00:00',6), + (148,112,20,13,'2025-03-27 00:00:00',2), + (149,100,19,78,'2025-06-14 00:00:00',2), + (150,104,49,21,'2025-04-24 00:00:00',3), + (151,135,50,29,'2024-12-09 00:00:00',4), + (152,168,9,45,'2025-08-26 00:00:00',8), + (153,66,48,87,'2024-10-02 00:00:00',10), + (154,309,39,2,'2025-04-20 00:00:00',7), + (155,386,26,22,'2025-02-01 00:00:00',4), + (156,92,16,92,'2025-01-14 00:00:00',10), + (157,144,31,44,'2025-05-22 00:00:00',9), + (158,380,32,94,'2024-12-20 00:00:00',1), + (159,6,24,31,'2024-12-27 00:00:00',3), + (160,98,29,61,'2025-06-12 00:00:00',6), + (161,195,6,15,'2025-09-22 00:00:00',7), + (162,238,1,25,'2025-07-14 00:00:00',1), + (163,327,34,73,'2024-10-17 00:00:00',10), + (164,112,5,93,'2025-08-31 00:00:00',10), + (165,389,37,64,'2024-11-28 00:00:00',5), + (166,35,18,53,'2025-02-10 00:00:00',8), + (167,149,23,75,'2025-09-04 00:00:00',7), + (168,171,13,63,'2025-07-23 00:00:00',7), + (169,241,14,65,'2024-11-06 00:00:00',10), + (170,94,17,23,'2025-02-23 00:00:00',5), + (171,1,29,84,'2025-02-15 00:00:00',5), + (172,323,40,7,'2024-11-04 00:00:00',3), + (173,392,7,96,'2025-09-01 00:00:00',4), + (174,181,9,44,'2025-09-23 00:00:00',10), + (175,314,39,3,'2024-10-25 00:00:00',10), + (176,389,24,92,'2025-05-26 00:00:00',9), + (177,397,30,74,'2025-08-31 00:00:00',3), + (178,217,19,81,'2024-11-22 00:00:00',10), + (179,385,22,25,'2025-09-25 00:00:00',2), + (180,34,10,70,'2025-07-24 00:00:00',9), + (181,188,9,26,'2025-05-16 00:00:00',10), + (182,55,2,6,'2025-02-20 00:00:00',4), + (183,304,41,53,'2025-06-27 00:00:00',7), + (184,364,7,8,'2025-08-26 00:00:00',5), + (185,3,27,31,'2024-10-31 00:00:00',8), + (186,264,3,96,'2025-08-04 00:00:00',2), + (187,398,18,56,'2025-03-15 00:00:00',10), + (188,163,34,84,'2025-05-28 00:00:00',1), + (189,335,23,45,'2025-03-20 00:00:00',2), + (190,159,24,32,'2025-09-11 00:00:00',1), + (191,369,44,39,'2024-11-02 00:00:00',5), + (192,93,13,51,'2024-11-28 00:00:00',7), + (193,108,46,83,'2025-04-19 00:00:00',3), + (194,299,16,19,'2024-11-14 00:00:00',3), + (195,28,43,15,'2024-11-30 00:00:00',9), + (196,180,4,18,'2025-07-15 00:00:00',9), + (197,155,9,56,'2025-08-19 00:00:00',6), + (198,330,1,45,'2024-12-27 00:00:00',7), + (199,33,10,72,'2024-11-28 00:00:00',7), + (200,308,18,44,'2024-12-25 00:00:00',10), + (201,374,35,95,'2025-01-19 00:00:00',3), + (202,136,15,75,'2024-12-10 00:00:00',7), + (203,393,20,60,'2025-08-10 00:00:00',7), + (204,231,5,35,'2024-10-03 00:00:00',3), + (205,322,44,15,'2025-08-13 00:00:00',6), + (206,57,50,41,'2025-06-03 00:00:00',9), + (207,250,3,58,'2025-04-28 00:00:00',7), + (208,72,17,99,'2025-04-03 00:00:00',7), + (209,354,36,1,'2025-05-11 00:00:00',1), + (210,272,16,85,'2025-07-12 00:00:00',7), + (211,36,41,33,'2025-04-19 00:00:00',6), + (212,78,31,76,'2025-06-10 00:00:00',10), + (213,306,21,10,'2025-05-16 00:00:00',10), + (214,218,7,40,'2024-10-07 00:00:00',10), + (215,301,32,85,'2025-04-08 00:00:00',7), + (216,111,1,84,'2024-12-24 00:00:00',3), + (217,320,5,95,'2025-07-10 00:00:00',7), + (218,325,14,69,'2024-11-06 00:00:00',7), + (219,307,28,35,'2025-09-19 00:00:00',3), + (220,371,27,71,'2024-12-29 00:00:00',1), + (221,290,34,43,'2025-01-03 00:00:00',4), + (222,310,37,73,'2025-07-10 00:00:00',7), + (223,356,24,66,'2025-04-16 00:00:00',6), + (224,285,19,52,'2025-05-13 00:00:00',8), + (225,398,35,42,'2024-10-21 00:00:00',5), + (226,241,50,42,'2025-06-24 00:00:00',6), + (227,244,10,25,'2025-06-01 00:00:00',3), + (228,371,12,56,'2025-06-08 00:00:00',6), + (229,279,43,93,'2025-04-23 00:00:00',10), + (230,287,5,22,'2025-06-14 00:00:00',3), + (231,311,8,12,'2025-06-01 00:00:00',8), + (232,6,14,59,'2025-07-09 00:00:00',7), + (233,392,16,85,'2025-05-10 00:00:00',1), + (234,28,44,11,'2025-02-24 00:00:00',5), + (235,298,20,90,'2025-03-08 00:00:00',9), + (236,165,42,38,'2025-03-01 00:00:00',3), + (237,293,7,74,'2025-02-09 00:00:00',4), + (238,93,11,53,'2025-05-14 00:00:00',2), + (239,237,33,81,'2024-10-12 00:00:00',6), + (240,71,3,57,'2025-08-07 00:00:00',3), + (241,369,42,86,'2024-10-14 00:00:00',6), + (242,256,2,35,'2025-03-23 00:00:00',8), + (243,240,45,80,'2024-09-28 00:00:00',5), + (244,328,39,32,'2025-09-13 00:00:00',10), + (245,248,48,78,'2024-12-28 00:00:00',8), + (246,302,30,19,'2025-08-27 00:00:00',10), + (247,269,6,71,'2025-06-12 00:00:00',1), + (248,177,31,74,'2025-04-20 00:00:00',7), + (249,390,21,57,'2025-01-23 00:00:00',8), + (250,276,41,22,'2025-07-13 00:00:00',6); +INSERT INTO [Reservations] VALUES (251,189,36,81,'2024-11-09 00:00:00',9), + (252,210,50,69,'2025-04-10 00:00:00',5), + (253,91,27,79,'2025-06-06 00:00:00',9), + (254,71,8,53,'2025-04-10 00:00:00',10), + (255,105,9,40,'2024-09-28 00:00:00',2), + (256,9,31,59,'2025-09-26 00:00:00',1), + (257,372,44,63,'2025-06-03 00:00:00',6), + (258,5,35,85,'2025-05-03 00:00:00',10), + (259,111,11,100,'2025-05-15 00:00:00',10), + (260,47,48,82,'2024-12-12 00:00:00',4), + (261,232,33,40,'2024-10-04 00:00:00',8), + (262,214,21,42,'2024-12-21 00:00:00',8), + (263,328,9,9,'2024-12-12 00:00:00',1), + (264,204,1,56,'2025-09-07 00:00:00',3), + (265,95,12,11,'2025-06-26 00:00:00',8), + (266,105,6,38,'2024-11-21 00:00:00',9), + (267,207,2,37,'2025-09-23 00:00:00',1), + (268,76,42,21,'2025-02-01 00:00:00',6), + (269,294,24,14,'2024-12-28 00:00:00',4), + (270,113,13,90,'2025-03-27 00:00:00',10), + (271,295,45,98,'2025-07-19 00:00:00',1), + (272,183,12,92,'2025-03-28 00:00:00',3), + (273,179,18,21,'2025-09-12 00:00:00',7), + (274,329,43,11,'2024-11-16 00:00:00',1), + (275,334,5,86,'2025-03-18 00:00:00',6), + (276,7,31,77,'2025-04-18 00:00:00',1), + (277,186,19,78,'2024-12-07 00:00:00',5), + (278,197,24,14,'2025-02-02 00:00:00',1), + (279,245,9,46,'2025-02-22 00:00:00',8), + (280,187,34,6,'2025-04-18 00:00:00',10), + (281,161,23,42,'2025-02-02 00:00:00',5), + (282,162,46,20,'2024-11-16 00:00:00',8), + (283,81,29,32,'2024-11-25 00:00:00',1), + (284,307,38,59,'2025-02-22 00:00:00',7), + (285,124,20,71,'2025-08-03 00:00:00',1), + (286,207,12,86,'2025-09-09 00:00:00',3), + (287,287,8,37,'2024-11-29 00:00:00',7), + (288,166,7,52,'2025-09-01 00:00:00',2), + (289,382,9,17,'2025-01-07 00:00:00',6), + (290,58,21,7,'2024-10-27 00:00:00',8), + (291,10,40,9,'2025-04-04 00:00:00',10), + (292,329,6,43,'2024-10-19 00:00:00',9), + (293,219,22,24,'2025-09-11 00:00:00',2), + (294,259,28,31,'2025-04-26 00:00:00',7), + (295,27,3,94,'2025-04-05 00:00:00',9), + (296,277,13,100,'2024-11-10 00:00:00',8), + (297,281,1,76,'2025-01-11 00:00:00',2), + (298,203,20,47,'2024-10-01 00:00:00',4), + (299,304,5,44,'2024-10-03 00:00:00',10), + (300,159,41,70,'2025-06-08 00:00:00',7), + (301,387,22,23,'2025-07-06 00:00:00',6), + (302,181,33,77,'2025-05-27 00:00:00',8), + (303,347,16,60,'2025-06-27 00:00:00',5), + (304,253,29,85,'2025-05-27 00:00:00',9), + (305,281,13,5,'2025-06-25 00:00:00',4), + (306,127,18,55,'2024-11-24 00:00:00',4), + (307,316,1,62,'2025-02-10 00:00:00',10), + (308,360,2,65,'2024-12-07 00:00:00',8), + (309,295,49,64,'2025-09-20 00:00:00',2), + (310,252,31,95,'2024-10-17 00:00:00',4), + (311,235,30,14,'2025-04-09 00:00:00',3), + (312,183,44,80,'2025-03-19 00:00:00',7), + (313,250,5,38,'2025-06-05 00:00:00',8), + (314,349,41,61,'2025-07-23 00:00:00',1), + (315,238,27,9,'2025-07-12 00:00:00',2), + (316,302,20,87,'2025-05-23 00:00:00',7), + (317,105,6,2,'2024-12-13 00:00:00',4), + (318,53,18,69,'2025-05-18 00:00:00',10), + (319,146,37,91,'2025-02-14 00:00:00',5), + (320,382,30,76,'2025-04-18 00:00:00',2), + (321,8,3,96,'2025-07-02 00:00:00',3), + (322,330,42,29,'2024-12-31 00:00:00',6), + (323,336,15,80,'2025-05-12 00:00:00',4), + (324,79,12,38,'2024-12-10 00:00:00',6), + (325,172,22,17,'2025-06-12 00:00:00',5), + (326,120,25,46,'2025-06-26 00:00:00',7), + (327,292,24,35,'2024-12-09 00:00:00',6), + (328,375,14,8,'2025-02-16 00:00:00',6), + (329,112,17,63,'2025-07-17 00:00:00',9), + (330,284,46,71,'2025-07-29 00:00:00',8), + (331,67,38,53,'2024-10-21 00:00:00',5), + (332,85,10,22,'2025-06-18 00:00:00',10), + (333,173,9,30,'2025-05-05 00:00:00',3), + (334,152,8,55,'2024-12-11 00:00:00',4), + (335,9,33,72,'2025-07-17 00:00:00',5), + (336,275,32,17,'2025-06-27 00:00:00',3), + (337,82,26,2,'2025-05-14 00:00:00',7), + (338,236,7,82,'2025-08-21 00:00:00',6), + (339,35,34,85,'2025-07-17 00:00:00',2), + (340,377,40,28,'2025-04-02 00:00:00',2), + (341,203,19,97,'2025-02-26 00:00:00',9), + (342,137,20,60,'2025-01-08 00:00:00',1), + (343,227,5,33,'2024-10-15 00:00:00',1), + (344,229,3,10,'2025-09-16 00:00:00',3), + (345,149,28,38,'2025-09-25 00:00:00',6), + (346,4,29,37,'2024-12-25 00:00:00',9), + (347,371,13,100,'2024-11-03 00:00:00',2), + (348,221,16,90,'2025-07-15 00:00:00',5), + (349,362,44,47,'2025-03-28 00:00:00',10), + (350,349,24,28,'2025-08-31 00:00:00',9), + (351,334,8,88,'2025-04-16 00:00:00',3), + (352,52,28,63,'2024-12-21 00:00:00',10), + (353,77,31,43,'2024-11-02 00:00:00',7), + (354,278,38,84,'2025-06-24 00:00:00',9), + (355,279,9,10,'2025-02-03 00:00:00',8), + (356,399,36,48,'2025-04-27 00:00:00',3), + (357,68,17,46,'2025-05-06 00:00:00',7), + (358,74,10,23,'2025-03-14 00:00:00',8), + (359,240,21,45,'2025-09-18 00:00:00',8), + (360,191,4,19,'2025-05-16 00:00:00',4), + (361,218,16,88,'2024-12-29 00:00:00',3), + (362,352,12,69,'2025-06-09 00:00:00',2), + (363,211,15,61,'2025-08-08 00:00:00',3), + (364,200,5,52,'2024-09-30 00:00:00',9), + (365,193,9,92,'2025-07-01 00:00:00',7), + (366,399,10,44,'2025-02-25 00:00:00',3), + (367,275,47,76,'2025-09-24 00:00:00',1), + (368,90,17,82,'2025-03-27 00:00:00',7), + (369,320,11,45,'2025-06-03 00:00:00',1), + (370,243,18,55,'2024-12-11 00:00:00',6), + (371,79,1,87,'2025-06-20 00:00:00',4), + (372,83,29,15,'2025-01-06 00:00:00',9), + (373,240,28,32,'2025-04-24 00:00:00',10), + (374,145,19,16,'2025-01-26 00:00:00',5), + (375,196,46,49,'2025-03-16 00:00:00',1), + (376,263,46,98,'2024-11-04 00:00:00',9), + (377,53,25,73,'2024-11-06 00:00:00',10), + (378,6,16,81,'2025-05-24 00:00:00',10), + (379,275,36,67,'2025-08-21 00:00:00',2), + (380,247,29,100,'2025-01-28 00:00:00',1), + (381,294,4,8,'2025-01-30 00:00:00',10), + (382,202,41,39,'2024-11-12 00:00:00',4), + (383,106,49,92,'2025-08-22 00:00:00',2), + (384,208,48,5,'2025-07-10 00:00:00',10), + (385,324,22,30,'2024-10-16 00:00:00',5), + (386,100,34,40,'2025-03-16 00:00:00',2), + (387,211,45,72,'2024-10-03 00:00:00',9), + (388,334,24,55,'2025-02-06 00:00:00',10), + (389,219,3,89,'2025-03-15 00:00:00',1), + (390,66,43,34,'2024-11-21 00:00:00',7), + (391,128,18,81,'2025-05-14 00:00:00',5), + (392,64,15,61,'2024-10-30 00:00:00',3), + (393,267,26,10,'2025-07-10 00:00:00',2), + (394,276,14,31,'2025-01-17 00:00:00',9), + (395,196,2,64,'2025-05-24 00:00:00',9), + (396,147,34,41,'2024-10-13 00:00:00',5), + (397,205,49,7,'2024-10-13 00:00:00',1), + (398,257,1,36,'2025-09-11 00:00:00',8), + (399,261,24,44,'2025-02-27 00:00:00',3), + (400,283,20,97,'2025-01-02 00:00:00',8), + (401,181,38,1,'2025-01-30 00:00:00',1), + (402,7,42,20,'2025-07-04 00:00:00',5), + (403,377,28,6,'2025-05-04 00:00:00',2), + (404,352,19,54,'2025-03-31 00:00:00',5), + (405,396,22,5,'2025-02-13 00:00:00',9), + (406,145,39,19,'2025-07-13 00:00:00',8), + (407,360,14,4,'2024-12-07 00:00:00',10), + (408,289,21,63,'2025-08-23 00:00:00',4), + (409,93,27,87,'2025-01-29 00:00:00',5), + (410,347,7,93,'2025-01-27 00:00:00',7), + (411,387,12,95,'2025-07-15 00:00:00',7), + (412,20,2,3,'2025-07-10 00:00:00',5), + (413,319,9,89,'2025-01-18 00:00:00',8), + (414,61,16,39,'2025-09-03 00:00:00',10), + (415,26,11,47,'2025-04-17 00:00:00',3), + (416,367,6,78,'2025-08-13 00:00:00',9), + (417,105,30,88,'2025-02-07 00:00:00',2), + (418,341,4,74,'2025-05-26 00:00:00',8), + (419,400,31,85,'2025-06-05 00:00:00',2), + (420,316,44,62,'2025-07-25 00:00:00',10), + (421,117,12,62,'2025-01-31 00:00:00',2), + (422,267,40,49,'2025-06-30 00:00:00',3), + (423,78,35,68,'2025-05-30 00:00:00',4), + (424,248,30,7,'2025-08-26 00:00:00',7), + (425,5,33,43,'2025-07-11 00:00:00',5), + (426,174,5,33,'2025-08-29 00:00:00',5), + (427,241,39,34,'2025-08-28 00:00:00',7), + (428,253,25,82,'2024-11-19 00:00:00',10), + (429,38,34,59,'2025-09-10 00:00:00',9), + (430,15,27,6,'2024-11-21 00:00:00',4), + (431,250,6,8,'2024-10-11 00:00:00',9), + (432,302,19,24,'2024-10-02 00:00:00',7), + (433,260,47,99,'2025-07-04 00:00:00',3), + (434,178,23,30,'2025-08-09 00:00:00',7), + (435,269,37,86,'2025-07-03 00:00:00',9), + (436,46,21,33,'2025-05-02 00:00:00',4), + (437,386,9,99,'2025-03-16 00:00:00',10), + (438,193,2,56,'2024-12-15 00:00:00',9), + (439,374,26,80,'2025-09-14 00:00:00',3), + (440,384,15,12,'2025-02-15 00:00:00',8), + (441,277,23,74,'2025-02-08 00:00:00',5), + (442,284,4,32,'2025-01-28 00:00:00',3), + (443,203,38,15,'2025-03-03 00:00:00',3), + (444,396,33,57,'2025-04-21 00:00:00',1), + (445,25,18,30,'2025-07-09 00:00:00',9), + (446,290,8,66,'2025-05-04 00:00:00',3), + (447,8,39,97,'2024-10-06 00:00:00',4), + (448,352,47,98,'2025-02-13 00:00:00',3), + (449,36,11,19,'2025-08-08 00:00:00',6), + (450,281,5,95,'2024-10-15 00:00:00',8), + (451,146,38,74,'2025-03-17 00:00:00',7), + (452,396,13,48,'2025-05-27 00:00:00',7), + (453,117,29,45,'2024-12-27 00:00:00',7), + (454,351,11,90,'2024-12-24 00:00:00',2), + (455,332,30,86,'2024-10-28 00:00:00',2), + (456,155,10,21,'2025-05-13 00:00:00',9), + (457,6,14,42,'2025-08-12 00:00:00',1), + (458,231,4,43,'2024-10-31 00:00:00',1), + (459,252,47,73,'2025-08-20 00:00:00',6), + (460,296,31,52,'2025-03-09 00:00:00',10), + (461,137,28,22,'2025-07-20 00:00:00',8), + (462,201,15,10,'2025-08-28 00:00:00',6), + (463,324,49,82,'2025-07-21 00:00:00',9), + (464,20,8,14,'2024-10-27 00:00:00',6), + (465,44,20,77,'2025-07-27 00:00:00',3), + (466,338,9,52,'2025-06-24 00:00:00',1), + (467,382,36,24,'2025-06-23 00:00:00',5), + (468,43,34,5,'2025-05-30 00:00:00',8), + (469,339,26,71,'2024-11-02 00:00:00',6), + (470,231,22,66,'2025-05-12 00:00:00',8), + (471,121,24,40,'2025-09-23 00:00:00',3), + (472,17,4,67,'2024-11-04 00:00:00',3), + (473,98,29,16,'2024-10-16 00:00:00',9), + (474,371,10,57,'2024-12-23 00:00:00',1), + (475,162,33,12,'2025-06-19 00:00:00',2), + (476,109,47,22,'2024-12-14 00:00:00',10), + (477,26,18,98,'2024-10-08 00:00:00',9), + (478,6,8,42,'2025-05-14 00:00:00',3), + (479,58,5,86,'2025-04-18 00:00:00',1), + (480,249,23,75,'2025-08-31 00:00:00',3), + (481,92,49,14,'2025-01-22 00:00:00',4), + (482,368,14,20,'2024-11-17 00:00:00',6), + (483,186,42,37,'2025-08-09 00:00:00',3), + (484,73,50,43,'2024-12-30 00:00:00',6), + (485,203,38,25,'2025-02-13 00:00:00',2), + (486,175,37,89,'2024-12-11 00:00:00',9), + (487,119,3,13,'2025-07-25 00:00:00',5), + (488,132,11,78,'2025-07-19 00:00:00',7), + (489,329,48,50,'2024-11-05 00:00:00',2), + (490,385,45,8,'2025-02-02 00:00:00',5), + (491,285,27,95,'2024-11-06 00:00:00',2), + (492,206,31,60,'2025-07-21 00:00:00',6), + (493,269,32,97,'2025-05-08 00:00:00',7), + (494,89,1,72,'2025-08-16 00:00:00',9), + (495,72,25,28,'2025-07-01 00:00:00',2), + (496,262,35,23,'2025-02-22 00:00:00',7), + (497,224,12,34,'2025-03-18 00:00:00',4), + (498,66,44,17,'2025-07-17 00:00:00',7), + (499,1,13,74,'2025-02-20 00:00:00',3), + (500,24,15,87,'2025-09-23 00:00:00',5); diff --git a/schema/016_OrdersSeed.sql b/schema/016_OrdersSeed.sql new file mode 100644 index 0000000..a2a395b --- /dev/null +++ b/schema/016_OrdersSeed.sql @@ -0,0 +1,503 @@ + +use RestaurantReservation ; + +INSERT INTO [Orders] VALUES (1,239,51,'2024-12-15 00:00:00',175.69), + (2,4,70,'2025-05-29 00:00:00',162.92), + (3,486,14,'2025-06-16 00:00:00',161.14), + (4,247,37,'2024-10-06 00:00:00',64.07), + (5,282,28,'2024-11-30 00:00:00',230.67), + (6,118,29,'2025-07-12 00:00:00',213.57), + (7,362,89,'2025-09-26 00:00:00',52.08), + (8,313,9,'2025-08-04 00:00:00',259.54), + (9,29,40,'2025-06-01 00:00:00',260.26), + (10,464,79,'2025-06-25 00:00:00',36.69), + (11,257,96,'2025-07-18 00:00:00',199.08), + (12,167,52,'2024-09-29 00:00:00',122.19), + (13,177,33,'2025-09-23 00:00:00',54.55), + (14,166,99,'2025-03-22 00:00:00',135.34), + (15,267,74,'2025-07-30 00:00:00',141.74), + (16,150,56,'2024-12-06 00:00:00',270.0), + (17,121,34,'2025-08-07 00:00:00',44.43), + (18,155,13,'2025-03-21 00:00:00',243.37), + (19,440,76,'2025-07-24 00:00:00',158.46), + (20,13,58,'2025-05-30 00:00:00',61.35), + (21,242,10,'2024-10-01 00:00:00',182.03), + (22,412,45,'2025-03-10 00:00:00',145.39), + (23,189,44,'2025-01-25 00:00:00',68.51), + (24,411,64,'2025-05-04 00:00:00',121.99), + (25,54,67,'2024-10-22 00:00:00',247.4), + (26,329,5,'2025-04-04 00:00:00',239.12), + (27,255,66,'2025-05-20 00:00:00',168.02), + (28,141,88,'2025-08-20 00:00:00',127.42), + (29,291,54,'2025-07-28 00:00:00',191.12), + (30,221,100,'2024-10-23 00:00:00',113.69), + (31,358,7,'2025-03-29 00:00:00',58.0), + (32,402,38,'2025-09-17 00:00:00',57.14), + (33,463,94,'2025-03-22 00:00:00',176.05), + (34,336,66,'2024-11-26 00:00:00',234.0), + (35,473,64,'2024-10-06 00:00:00',244.42), + (36,3,26,'2024-11-03 00:00:00',165.94), + (37,466,25,'2025-05-27 00:00:00',58.95), + (38,364,33,'2025-05-16 00:00:00',236.06), + (39,255,12,'2024-12-20 00:00:00',215.43), + (40,9,81,'2025-01-27 00:00:00',243.79), + (41,72,68,'2024-12-31 00:00:00',50.53), + (42,88,6,'2025-04-01 00:00:00',63.12), + (43,146,42,'2024-12-04 00:00:00',235.18), + (44,329,7,'2025-09-25 00:00:00',105.11), + (45,179,8,'2024-10-24 00:00:00',228.08), + (46,99,50,'2024-11-09 00:00:00',43.52), + (47,157,70,'2025-05-05 00:00:00',269.15), + (48,192,9,'2025-09-14 00:00:00',80.27), + (49,4,15,'2025-07-20 00:00:00',115.74), + (50,60,75,'2024-11-15 00:00:00',224.89), + (51,75,1,'2025-09-12 00:00:00',192.6), + (52,122,61,'2025-03-27 00:00:00',253.28), + (53,500,35,'2025-08-16 00:00:00',257.71), + (54,39,65,'2025-02-25 00:00:00',216.08), + (55,337,10,'2024-09-30 00:00:00',181.02), + (56,126,4,'2025-02-05 00:00:00',265.87), + (57,267,80,'2025-05-17 00:00:00',54.56), + (58,64,96,'2025-03-28 00:00:00',75.28), + (59,378,28,'2025-07-11 00:00:00',149.69), + (60,114,2,'2025-05-04 00:00:00',247.77), + (61,297,82,'2025-08-05 00:00:00',131.14), + (62,127,16,'2025-09-08 00:00:00',28.89), + (63,171,67,'2025-07-17 00:00:00',251.77), + (64,53,95,'2025-04-28 00:00:00',82.49), + (65,438,74,'2025-06-28 00:00:00',132.22), + (66,473,2,'2025-05-08 00:00:00',261.64), + (67,138,10,'2024-11-28 00:00:00',103.77), + (68,460,61,'2025-06-02 00:00:00',174.94), + (69,391,4,'2025-05-25 00:00:00',104.77), + (70,186,50,'2024-11-29 00:00:00',78.99), + (71,359,85,'2025-04-11 00:00:00',174.83), + (72,270,46,'2025-06-04 00:00:00',267.76), + (73,187,62,'2025-09-07 00:00:00',132.83), + (74,114,14,'2025-01-02 00:00:00',125.54), + (75,8,58,'2025-05-14 00:00:00',108.25), + (76,386,32,'2025-01-01 00:00:00',85.31), + (77,471,5,'2025-03-15 00:00:00',31.08), + (78,237,59,'2025-06-18 00:00:00',139.94), + (79,492,90,'2025-04-11 00:00:00',213.24), + (80,421,72,'2024-09-30 00:00:00',173.87), + (81,195,37,'2025-08-19 00:00:00',215.86), + (82,286,68,'2025-05-11 00:00:00',93.81), + (83,380,21,'2025-06-13 00:00:00',71.66), + (84,459,69,'2025-08-08 00:00:00',183.76), + (85,457,77,'2025-06-23 00:00:00',230.6), + (86,268,87,'2025-08-05 00:00:00',145.13), + (87,379,36,'2025-06-28 00:00:00',141.9), + (88,212,89,'2024-12-22 00:00:00',241.37), + (89,463,7,'2025-07-09 00:00:00',149.84), + (90,403,56,'2024-10-28 00:00:00',169.63), + (91,101,3,'2024-12-20 00:00:00',96.9), + (92,443,57,'2025-08-13 00:00:00',88.67), + (93,175,43,'2024-12-25 00:00:00',131.47), + (94,101,77,'2025-05-14 00:00:00',91.62), + (95,10,7,'2025-07-01 00:00:00',147.32), + (96,159,21,'2025-09-19 00:00:00',265.81), + (97,274,47,'2024-11-01 00:00:00',206.43), + (98,201,4,'2025-05-22 00:00:00',160.79), + (99,72,15,'2025-01-31 00:00:00',31.24), + (100,218,63,'2025-08-18 00:00:00',163.35), + (101,61,5,'2025-07-07 00:00:00',183.82), + (102,23,60,'2025-06-16 00:00:00',237.39), + (103,302,46,'2025-04-11 00:00:00',240.16), + (104,45,92,'2025-04-28 00:00:00',154.4), + (105,149,10,'2025-02-24 00:00:00',81.37), + (106,436,56,'2025-08-03 00:00:00',232.68), + (107,188,45,'2024-12-20 00:00:00',228.66), + (108,258,98,'2025-07-12 00:00:00',80.22), + (109,290,33,'2025-08-10 00:00:00',118.27), + (110,193,87,'2025-04-09 00:00:00',170.85), + (111,16,58,'2025-04-29 00:00:00',240.11), + (112,18,13,'2025-01-12 00:00:00',100.06), + (113,113,23,'2025-05-23 00:00:00',117.18), + (114,422,88,'2025-04-18 00:00:00',145.35), + (115,39,22,'2025-07-03 00:00:00',78.04), + (116,38,30,'2025-04-09 00:00:00',51.94), + (117,322,35,'2025-07-12 00:00:00',257.12), + (118,458,67,'2024-10-10 00:00:00',61.8), + (119,465,28,'2024-12-21 00:00:00',85.1), + (120,456,1,'2024-12-05 00:00:00',43.43), + (121,331,29,'2025-06-15 00:00:00',137.36), + (122,390,78,'2024-12-08 00:00:00',178.57), + (123,103,93,'2025-09-21 00:00:00',136.07), + (124,192,84,'2025-06-09 00:00:00',204.65), + (125,402,61,'2024-10-10 00:00:00',216.56), + (126,24,17,'2025-08-17 00:00:00',266.99), + (127,437,42,'2025-01-29 00:00:00',26.79), + (128,469,29,'2025-09-14 00:00:00',190.49), + (129,433,60,'2025-06-11 00:00:00',205.81), + (130,65,14,'2025-09-13 00:00:00',203.86), + (131,61,31,'2024-11-01 00:00:00',95.29), + (132,88,12,'2025-07-06 00:00:00',79.52), + (133,343,37,'2025-06-15 00:00:00',267.32), + (134,252,79,'2025-09-06 00:00:00',44.2), + (135,395,96,'2024-12-09 00:00:00',167.82), + (136,309,18,'2025-05-16 00:00:00',42.59), + (137,499,67,'2025-04-03 00:00:00',257.2), + (138,106,98,'2025-05-26 00:00:00',169.93), + (139,355,86,'2025-03-21 00:00:00',85.93), + (140,42,13,'2025-07-11 00:00:00',137.74), + (141,394,94,'2025-08-29 00:00:00',264.95), + (142,27,7,'2025-08-08 00:00:00',152.56), + (143,389,46,'2025-02-04 00:00:00',211.64), + (144,172,19,'2025-07-05 00:00:00',30.88), + (145,150,34,'2025-07-04 00:00:00',150.73), + (146,212,45,'2025-06-19 00:00:00',236.78), + (147,399,9,'2025-06-15 00:00:00',218.93), + (148,188,58,'2024-10-31 00:00:00',104.37), + (149,430,54,'2025-02-17 00:00:00',231.59), + (150,135,65,'2025-01-10 00:00:00',142.71), + (151,346,25,'2025-02-25 00:00:00',175.82), + (152,130,26,'2025-03-11 00:00:00',173.99), + (153,450,1,'2025-09-19 00:00:00',57.25), + (154,359,76,'2025-01-17 00:00:00',161.99), + (155,233,69,'2025-09-20 00:00:00',209.57), + (156,230,75,'2024-11-01 00:00:00',127.35), + (157,64,78,'2025-08-11 00:00:00',246.07), + (158,181,43,'2024-12-19 00:00:00',195.22), + (159,36,12,'2025-03-02 00:00:00',31.23), + (160,116,51,'2025-09-26 00:00:00',257.4), + (161,290,15,'2025-04-11 00:00:00',80.59), + (162,297,86,'2024-10-14 00:00:00',108.74), + (163,2,65,'2025-08-20 00:00:00',111.02), + (164,484,20,'2025-07-29 00:00:00',246.72), + (165,479,53,'2025-02-12 00:00:00',192.88), + (166,254,18,'2025-05-21 00:00:00',119.56), + (167,360,93,'2025-07-13 00:00:00',81.09), + (168,53,35,'2025-09-24 00:00:00',169.67), + (169,489,4,'2025-02-08 00:00:00',59.67), + (170,121,28,'2024-10-31 00:00:00',74.69), + (171,194,22,'2025-07-12 00:00:00',73.04), + (172,192,10,'2024-12-20 00:00:00',115.03), + (173,358,37,'2025-03-22 00:00:00',197.96), + (174,253,60,'2025-04-16 00:00:00',248.13), + (175,196,50,'2025-09-08 00:00:00',235.19), + (176,63,67,'2025-09-20 00:00:00',74.25), + (177,412,92,'2025-06-02 00:00:00',100.56), + (178,144,30,'2025-05-01 00:00:00',170.26), + (179,257,80,'2025-06-14 00:00:00',153.88), + (180,271,85,'2024-12-03 00:00:00',147.75), + (181,438,56,'2025-03-10 00:00:00',115.92), + (182,317,94,'2025-03-22 00:00:00',47.91), + (183,316,79,'2025-02-24 00:00:00',144.15), + (184,185,72,'2024-12-03 00:00:00',221.42), + (185,485,26,'2024-10-25 00:00:00',221.74), + (186,423,61,'2025-02-27 00:00:00',222.43), + (187,132,100,'2024-12-29 00:00:00',213.25), + (188,298,68,'2025-07-23 00:00:00',160.27), + (189,62,34,'2025-04-16 00:00:00',36.31), + (190,22,33,'2025-07-14 00:00:00',138.53), + (191,499,16,'2025-03-21 00:00:00',236.93), + (192,269,60,'2025-09-23 00:00:00',227.49), + (193,316,62,'2025-03-16 00:00:00',144.81), + (194,250,80,'2024-12-12 00:00:00',208.67), + (195,278,24,'2024-12-07 00:00:00',238.54), + (196,57,42,'2024-11-15 00:00:00',137.9), + (197,105,30,'2025-05-20 00:00:00',71.05), + (198,465,13,'2024-12-03 00:00:00',126.16), + (199,279,55,'2025-07-22 00:00:00',240.65), + (200,327,98,'2025-02-26 00:00:00',76.98), + (201,118,78,'2025-02-18 00:00:00',73.58), + (202,356,38,'2025-03-18 00:00:00',27.66), + (203,313,32,'2025-02-06 00:00:00',180.27), + (204,176,37,'2024-11-05 00:00:00',84.16), + (205,44,4,'2025-07-13 00:00:00',239.23), + (206,258,90,'2025-03-16 00:00:00',109.82), + (207,274,31,'2025-01-19 00:00:00',94.03), + (208,27,48,'2024-12-07 00:00:00',49.63), + (209,339,88,'2025-09-14 00:00:00',47.64), + (210,15,20,'2024-11-06 00:00:00',120.76), + (211,220,77,'2024-10-27 00:00:00',43.91), + (212,129,66,'2024-12-31 00:00:00',172.56), + (213,404,17,'2024-11-02 00:00:00',69.11), + (214,268,3,'2025-04-17 00:00:00',35.62), + (215,396,95,'2025-03-24 00:00:00',151.47), + (216,353,91,'2025-08-02 00:00:00',190.7), + (217,28,47,'2024-10-27 00:00:00',119.63), + (218,106,27,'2024-11-10 00:00:00',75.86), + (219,138,100,'2025-08-09 00:00:00',157.37), + (220,350,84,'2024-12-24 00:00:00',164.25), + (221,495,37,'2024-10-18 00:00:00',69.67), + (222,304,79,'2025-05-07 00:00:00',166.64), + (223,232,21,'2024-12-09 00:00:00',255.64), + (224,332,77,'2024-10-24 00:00:00',141.63), + (225,79,71,'2025-02-14 00:00:00',184.49), + (226,276,51,'2025-09-02 00:00:00',105.67), + (227,62,50,'2025-03-03 00:00:00',26.17), + (228,281,88,'2025-04-17 00:00:00',48.29), + (229,92,6,'2024-12-05 00:00:00',97.21), + (230,367,94,'2025-02-25 00:00:00',198.23), + (231,213,9,'2025-04-30 00:00:00',78.05), + (232,255,42,'2025-03-31 00:00:00',172.01), + (233,337,5,'2024-10-26 00:00:00',189.39), + (234,469,69,'2025-03-03 00:00:00',85.83), + (235,139,95,'2024-12-13 00:00:00',227.17), + (236,173,91,'2025-01-08 00:00:00',26.03), + (237,16,36,'2024-10-19 00:00:00',225.51), + (238,2,93,'2024-12-14 00:00:00',127.87), + (239,359,57,'2025-01-16 00:00:00',30.68), + (240,96,23,'2024-10-08 00:00:00',176.65), + (241,331,47,'2025-08-24 00:00:00',130.03), + (242,478,1,'2025-03-24 00:00:00',180.86), + (243,110,49,'2025-08-04 00:00:00',110.7), + (244,296,78,'2025-08-31 00:00:00',120.46), + (245,127,85,'2025-08-26 00:00:00',80.51), + (246,256,81,'2024-12-02 00:00:00',124.69), + (247,58,61,'2024-10-01 00:00:00',210.4), + (248,40,60,'2025-02-06 00:00:00',173.88), + (249,446,74,'2024-11-27 00:00:00',95.03), + (250,55,83,'2025-03-03 00:00:00',150.54); +INSERT INTO [Orders] VALUES (251,90,55,'2025-08-31 00:00:00',246.98), + (252,268,72,'2025-01-11 00:00:00',55.04), + (253,59,37,'2024-10-16 00:00:00',154.76), + (254,491,40,'2024-10-17 00:00:00',54.89), + (255,279,28,'2024-12-08 00:00:00',172.44), + (256,194,39,'2024-09-28 00:00:00',228.88), + (257,270,2,'2024-10-22 00:00:00',216.23), + (258,124,62,'2025-09-18 00:00:00',212.07), + (259,107,77,'2025-02-21 00:00:00',141.54), + (260,320,66,'2024-11-07 00:00:00',260.9), + (261,293,84,'2025-09-21 00:00:00',242.76), + (262,306,96,'2025-01-06 00:00:00',224.96), + (263,123,56,'2025-04-13 00:00:00',172.58), + (264,358,65,'2025-01-31 00:00:00',140.57), + (265,382,93,'2025-05-17 00:00:00',216.24), + (266,475,86,'2025-08-20 00:00:00',133.29), + (267,259,34,'2025-01-21 00:00:00',67.18), + (268,27,32,'2024-11-06 00:00:00',32.78), + (269,239,13,'2025-02-05 00:00:00',234.7), + (270,450,94,'2025-04-17 00:00:00',194.83), + (271,1,5,'2025-02-19 00:00:00',129.03), + (272,429,68,'2024-10-12 00:00:00',100.94), + (273,427,95,'2025-03-13 00:00:00',70.82), + (274,282,52,'2024-11-08 00:00:00',61.83), + (275,276,4,'2025-02-26 00:00:00',112.27), + (276,310,88,'2025-06-20 00:00:00',128.09), + (277,218,61,'2025-05-10 00:00:00',150.09), + (278,423,82,'2024-12-14 00:00:00',65.13), + (279,334,38,'2024-12-14 00:00:00',39.87), + (280,410,70,'2024-11-27 00:00:00',37.88), + (281,182,44,'2025-02-08 00:00:00',196.02), + (282,254,10,'2025-07-03 00:00:00',73.7), + (283,361,41,'2025-09-24 00:00:00',79.82), + (284,109,94,'2025-02-14 00:00:00',239.62), + (285,482,29,'2024-12-06 00:00:00',198.53), + (286,85,36,'2025-06-04 00:00:00',80.13), + (287,201,12,'2025-03-03 00:00:00',116.59), + (288,308,46,'2025-06-06 00:00:00',198.81), + (289,135,75,'2025-06-06 00:00:00',82.05), + (290,116,49,'2024-09-28 00:00:00',110.57), + (291,168,99,'2025-06-05 00:00:00',100.76), + (292,253,90,'2025-08-21 00:00:00',59.6), + (293,75,61,'2025-02-13 00:00:00',133.43), + (294,370,35,'2024-11-05 00:00:00',93.29), + (295,29,5,'2025-05-24 00:00:00',221.71), + (296,323,42,'2025-05-08 00:00:00',156.91), + (297,357,22,'2024-12-26 00:00:00',207.94), + (298,101,47,'2024-11-28 00:00:00',157.25), + (299,28,48,'2025-02-04 00:00:00',266.67), + (300,164,20,'2024-10-04 00:00:00',184.14), + (301,466,91,'2025-09-16 00:00:00',100.19), + (302,376,100,'2025-03-29 00:00:00',238.75), + (303,157,25,'2025-08-02 00:00:00',182.08), + (304,346,21,'2024-10-15 00:00:00',224.88), + (305,207,57,'2025-06-13 00:00:00',224.13), + (306,436,14,'2024-12-28 00:00:00',115.56), + (307,284,64,'2024-11-07 00:00:00',67.87), + (308,47,37,'2024-10-25 00:00:00',191.39), + (309,183,31,'2024-11-12 00:00:00',65.75), + (310,297,50,'2025-07-09 00:00:00',36.63), + (311,222,47,'2024-11-15 00:00:00',147.35), + (312,25,38,'2025-03-19 00:00:00',66.3), + (313,329,100,'2025-04-24 00:00:00',127.12), + (314,483,46,'2024-11-21 00:00:00',32.51), + (315,283,17,'2025-05-25 00:00:00',219.95), + (316,393,43,'2025-06-15 00:00:00',108.67), + (317,331,30,'2025-07-17 00:00:00',145.98), + (318,203,96,'2024-12-18 00:00:00',180.23), + (319,400,14,'2024-11-10 00:00:00',200.6), + (320,284,22,'2025-07-22 00:00:00',125.95), + (321,240,36,'2025-01-08 00:00:00',220.08), + (322,252,67,'2024-12-06 00:00:00',183.99), + (323,404,89,'2025-05-23 00:00:00',133.52), + (324,259,3,'2024-10-14 00:00:00',185.76), + (325,326,16,'2024-09-28 00:00:00',215.01), + (326,204,88,'2025-06-13 00:00:00',173.85), + (327,290,66,'2025-02-25 00:00:00',32.76), + (328,432,57,'2025-09-19 00:00:00',173.17), + (329,228,24,'2025-02-09 00:00:00',39.1), + (330,338,84,'2024-12-08 00:00:00',200.51), + (331,65,45,'2024-11-14 00:00:00',27.63), + (332,414,85,'2024-11-01 00:00:00',245.74), + (333,80,65,'2025-06-06 00:00:00',100.89), + (334,372,73,'2025-04-05 00:00:00',26.5), + (335,160,81,'2025-02-27 00:00:00',91.51), + (336,409,53,'2024-11-04 00:00:00',165.49), + (337,318,48,'2025-04-18 00:00:00',190.85), + (338,497,83,'2024-11-26 00:00:00',52.94), + (339,14,49,'2025-02-17 00:00:00',223.91), + (340,34,63,'2025-07-18 00:00:00',88.91), + (341,343,77,'2025-07-25 00:00:00',112.49), + (342,90,33,'2024-10-01 00:00:00',101.72), + (343,421,10,'2025-09-02 00:00:00',224.83), + (344,2,97,'2025-07-09 00:00:00',207.13), + (345,354,96,'2025-07-04 00:00:00',237.89), + (346,377,5,'2025-06-23 00:00:00',112.93), + (347,225,54,'2025-09-24 00:00:00',47.57), + (348,497,12,'2025-01-07 00:00:00',33.03), + (349,113,20,'2025-02-13 00:00:00',167.31), + (350,418,34,'2025-01-02 00:00:00',259.71), + (351,294,29,'2025-01-13 00:00:00',163.17), + (352,81,95,'2025-04-02 00:00:00',80.34), + (353,367,86,'2025-06-03 00:00:00',147.06), + (354,274,18,'2025-04-26 00:00:00',116.9), + (355,460,71,'2025-07-13 00:00:00',113.75), + (356,355,83,'2025-05-13 00:00:00',243.49), + (357,395,91,'2025-08-17 00:00:00',87.16), + (358,462,73,'2025-03-02 00:00:00',101.66), + (359,173,99,'2024-11-08 00:00:00',215.12), + (360,490,58,'2025-07-21 00:00:00',30.34), + (361,271,70,'2025-09-15 00:00:00',254.22), + (362,284,48,'2025-07-30 00:00:00',196.07), + (363,471,55,'2025-08-05 00:00:00',183.2), + (364,232,17,'2025-08-13 00:00:00',211.67), + (365,379,38,'2025-03-03 00:00:00',77.34), + (366,42,57,'2025-09-10 00:00:00',269.84), + (367,295,16,'2025-06-05 00:00:00',185.2), + (368,431,65,'2024-11-19 00:00:00',167.8), + (369,186,3,'2025-05-15 00:00:00',131.15), + (370,335,37,'2025-06-16 00:00:00',73.46), + (371,98,89,'2024-12-16 00:00:00',169.77), + (372,437,100,'2025-02-20 00:00:00',121.78), + (373,16,41,'2025-04-12 00:00:00',108.27), + (374,346,80,'2025-04-13 00:00:00',124.41), + (375,171,82,'2025-04-30 00:00:00',210.65), + (376,119,19,'2025-01-09 00:00:00',150.18), + (377,183,67,'2025-03-09 00:00:00',185.25), + (378,479,20,'2024-11-05 00:00:00',173.93), + (379,293,70,'2025-08-20 00:00:00',37.29), + (380,478,92,'2025-05-11 00:00:00',136.48), + (381,141,100,'2024-12-01 00:00:00',234.3), + (382,281,6,'2025-03-26 00:00:00',264.38), + (383,36,10,'2025-06-09 00:00:00',48.48), + (384,400,62,'2025-04-15 00:00:00',208.66), + (385,105,76,'2025-09-17 00:00:00',49.8), + (386,497,99,'2025-04-04 00:00:00',217.75), + (387,8,13,'2025-03-02 00:00:00',96.11), + (388,280,61,'2024-10-17 00:00:00',96.64), + (389,73,59,'2025-08-12 00:00:00',82.29), + (390,53,17,'2025-09-20 00:00:00',191.81), + (391,92,72,'2025-07-10 00:00:00',110.47), + (392,366,56,'2025-06-24 00:00:00',107.47), + (393,377,44,'2025-05-02 00:00:00',127.21), + (394,4,29,'2025-02-02 00:00:00',219.8), + (395,255,54,'2025-01-12 00:00:00',186.6), + (396,457,28,'2025-07-05 00:00:00',187.97), + (397,126,27,'2025-02-24 00:00:00',99.15), + (398,342,69,'2025-02-04 00:00:00',71.98), + (399,298,4,'2025-05-15 00:00:00',50.85), + (400,108,45,'2025-08-12 00:00:00',232.11), + (401,308,32,'2025-08-08 00:00:00',214.57), + (402,163,89,'2025-08-27 00:00:00',131.1), + (403,406,23,'2024-10-21 00:00:00',260.49), + (404,329,68,'2025-01-05 00:00:00',96.43), + (405,375,37,'2025-08-14 00:00:00',204.94), + (406,428,76,'2025-09-23 00:00:00',89.11), + (407,444,41,'2024-11-16 00:00:00',172.64), + (408,83,96,'2024-12-30 00:00:00',136.11), + (409,295,79,'2025-08-05 00:00:00',202.85), + (410,272,100,'2025-04-03 00:00:00',47.45), + (411,250,85,'2025-04-09 00:00:00',126.21), + (412,106,48,'2025-05-30 00:00:00',71.51), + (413,216,2,'2025-07-31 00:00:00',89.49), + (414,13,10,'2025-04-30 00:00:00',151.81), + (415,73,78,'2025-03-04 00:00:00',129.09), + (416,122,4,'2025-04-14 00:00:00',220.3), + (417,288,81,'2025-01-20 00:00:00',162.18), + (418,473,22,'2024-11-06 00:00:00',205.21), + (419,408,55,'2025-01-17 00:00:00',254.52), + (420,10,72,'2025-03-11 00:00:00',184.28), + (421,244,19,'2025-03-31 00:00:00',151.83), + (422,470,65,'2025-03-09 00:00:00',73.46), + (423,246,82,'2025-03-12 00:00:00',226.45), + (424,102,46,'2024-11-15 00:00:00',251.73), + (425,32,39,'2025-03-07 00:00:00',242.53), + (426,403,1,'2024-11-13 00:00:00',208.49), + (427,67,75,'2024-12-06 00:00:00',84.4), + (428,449,31,'2025-01-22 00:00:00',264.5), + (429,357,87,'2025-09-02 00:00:00',261.93), + (430,391,57,'2024-10-20 00:00:00',112.11), + (431,292,61,'2025-05-21 00:00:00',123.71), + (432,22,51,'2025-07-27 00:00:00',39.68), + (433,179,5,'2025-08-29 00:00:00',160.24), + (434,475,83,'2024-11-18 00:00:00',112.99), + (435,310,63,'2024-11-01 00:00:00',136.79), + (436,176,23,'2024-11-05 00:00:00',29.97), + (437,170,65,'2025-05-30 00:00:00',71.46), + (438,84,73,'2025-04-11 00:00:00',38.97), + (439,108,55,'2025-06-27 00:00:00',71.46), + (440,428,37,'2025-07-12 00:00:00',182.6), + (441,43,80,'2025-03-14 00:00:00',155.03), + (442,273,90,'2024-11-07 00:00:00',121.38), + (443,49,22,'2025-07-08 00:00:00',251.56), + (444,146,62,'2025-04-15 00:00:00',219.72), + (445,56,95,'2025-03-09 00:00:00',236.78), + (446,253,71,'2025-07-07 00:00:00',144.16), + (447,132,97,'2024-11-23 00:00:00',248.84), + (448,331,93,'2025-01-30 00:00:00',45.33), + (449,95,42,'2024-10-02 00:00:00',60.28), + (450,230,36,'2025-06-06 00:00:00',161.39), + (451,290,68,'2025-06-04 00:00:00',36.23), + (452,243,70,'2025-09-12 00:00:00',34.49), + (453,337,41,'2025-06-01 00:00:00',106.72), + (454,403,59,'2025-07-09 00:00:00',90.41), + (455,400,19,'2024-10-19 00:00:00',261.52), + (456,201,26,'2025-01-02 00:00:00',49.03), + (457,378,11,'2025-08-18 00:00:00',57.44), + (458,27,100,'2025-05-17 00:00:00',32.08), + (459,238,12,'2025-07-23 00:00:00',221.08), + (460,200,52,'2025-02-20 00:00:00',123.07), + (461,229,76,'2024-10-04 00:00:00',186.28), + (462,480,49,'2025-03-25 00:00:00',221.7), + (463,314,14,'2024-10-15 00:00:00',98.02), + (464,28,64,'2024-10-22 00:00:00',103.05), + (465,305,74,'2025-08-30 00:00:00',258.43), + (466,209,47,'2025-03-11 00:00:00',169.6), + (467,446,79,'2025-04-29 00:00:00',216.23), + (468,138,65,'2025-03-13 00:00:00',140.89), + (469,169,22,'2025-09-01 00:00:00',50.34), + (470,409,77,'2024-12-01 00:00:00',136.67), + (471,359,12,'2025-08-13 00:00:00',174.33), + (472,239,72,'2024-10-01 00:00:00',161.56), + (473,342,41,'2025-01-23 00:00:00',249.22), + (474,370,44,'2025-08-25 00:00:00',232.83), + (475,175,24,'2025-06-17 00:00:00',109.85), + (476,399,23,'2025-04-11 00:00:00',56.39), + (477,496,51,'2024-11-14 00:00:00',182.51), + (478,467,27,'2024-10-12 00:00:00',149.08), + (479,286,71,'2025-08-04 00:00:00',183.44), + (480,46,73,'2024-11-18 00:00:00',51.53), + (481,248,19,'2025-08-01 00:00:00',254.94), + (482,445,1,'2024-10-09 00:00:00',145.9), + (483,142,84,'2025-07-11 00:00:00',61.0), + (484,197,80,'2025-01-14 00:00:00',71.92), + (485,344,21,'2024-10-22 00:00:00',194.4), + (486,203,8,'2025-08-03 00:00:00',99.1), + (487,88,30,'2025-03-15 00:00:00',200.54), + (488,27,61,'2024-11-04 00:00:00',222.83), + (489,392,26,'2025-04-15 00:00:00',225.77), + (490,268,67,'2024-12-27 00:00:00',149.71), + (491,444,75,'2024-11-28 00:00:00',198.99), + (492,274,96,'2024-11-29 00:00:00',114.91), + (493,423,91,'2025-08-21 00:00:00',251.67), + (494,265,82,'2025-03-01 00:00:00',217.2), + (495,396,58,'2024-12-30 00:00:00',53.88), + (496,412,97,'2024-12-24 00:00:00',190.5), + (497,302,90,'2024-12-24 00:00:00',202.43), + (498,56,14,'2025-01-31 00:00:00',176.08), + (499,497,44,'2025-08-20 00:00:00',265.05), + (500,387,28,'2024-11-09 00:00:00',197.69); \ No newline at end of file diff --git a/schema/017_OrderItemsSeed.sql b/schema/017_OrderItemsSeed.sql new file mode 100644 index 0000000..20a1a52 --- /dev/null +++ b/schema/017_OrderItemsSeed.sql @@ -0,0 +1,755 @@ + +use RestaurantReservation ; + + +INSERT INTO [OrderItems] VALUES (251,25,573,1), + (252,356,111,4), + (253,136,717,9), + (254,200,857,4), + (255,445,90,7), + (256,151,875,10), + (257,144,148,1), + (258,358,112,6), + (259,452,32,3), + (260,179,424,4), + (261,370,919,8), + (262,42,971,5), + (263,361,125,4), + (264,250,467,7), + (265,418,740,6), + (266,385,714,3), + (267,97,730,3), + (268,292,760,7), + (269,27,493,9), + (270,120,750,2), + (271,176,200,7), + (272,195,965,6), + (273,26,852,3), + (274,486,206,10), + (275,8,55,4), + (276,389,647,9), + (277,291,97,4), + (278,413,712,3), + (279,383,75,9), + (280,438,887,4), + (281,396,753,9), + (282,188,446,5), + (283,138,765,8), + (284,17,864,5), + (285,4,820,5), + (286,5,886,6), + (287,434,374,4), + (288,497,296,4), + (289,475,122,8), + (290,410,712,2), + (291,401,477,6), + (292,365,77,4), + (293,411,175,1), + (294,301,263,8), + (295,151,110,2), + (296,236,223,2), + (297,125,730,9), + (298,252,231,2), + (299,273,644,9), + (300,3,617,3), + (301,34,876,10), + (302,358,433,2), + (303,240,105,5), + (304,243,93,6), + (305,92,371,5), + (306,18,123,5), + (307,282,365,4), + (308,403,550,1), + (309,108,668,3), + (310,313,411,10), + (311,6,663,5), + (312,228,364,2), + (313,367,451,10), + (314,431,36,4), + (315,20,334,2), + (316,301,624,3), + (317,448,251,4), + (318,285,660,4), + (319,394,791,7), + (320,236,74,7), + (321,245,353,10), + (322,143,84,8), + (323,374,150,8), + (324,424,857,1), + (325,12,936,3), + (326,113,15,1), + (327,299,534,6), + (328,377,492,7), + (329,347,743,2), + (330,102,635,6), + (331,148,344,2), + (332,435,210,4), + (333,218,70,10), + (334,414,614,9), + (335,483,170,1), + (336,238,346,5), + (337,381,237,7), + (338,467,760,4), + (339,202,967,8), + (340,203,362,5), + (341,165,465,8), + (342,97,356,1), + (343,460,30,8), + (344,228,706,8), + (345,482,932,8), + (346,300,561,7), + (347,450,226,10), + (348,209,524,7), + (349,49,965,7), + (350,437,24,9), + (351,223,979,7), + (352,329,920,9), + (353,146,71,6), + (354,242,852,3), + (355,188,590,8), + (356,137,865,1), + (357,11,134,9), + (358,123,79,6), + (359,239,320,1), + (360,477,43,2), + (361,38,20,8), + (362,5,764,7), + (363,171,664,9), + (364,4,152,8), + (365,394,857,5), + (366,200,697,3), + (367,62,810,2), + (368,148,183,10), + (369,2,373,9), + (370,334,218,1), + (371,407,309,1), + (372,328,494,5), + (373,212,739,5), + (374,8,110,1), + (375,95,229,9), + (376,93,201,4), + (377,448,467,3), + (378,20,541,4), + (379,365,111,10), + (380,165,20,7), + (381,259,755,7), + (382,144,188,5), + (383,132,661,3), + (384,191,624,9), + (385,304,969,7), + (386,439,660,10), + (387,188,40,3), + (388,322,211,8), + (389,47,714,5), + (390,154,260,8), + (391,111,451,10), + (392,271,565,4), + (393,131,633,1), + (394,237,486,9), + (395,57,388,6), + (396,379,948,8), + (397,31,21,4), + (398,279,889,7), + (399,387,884,9), + (400,195,874,7), + (401,48,322,4), + (402,236,371,9), + (403,260,894,6), + (404,479,869,8), + (405,420,405,4), + (406,71,299,6), + (407,429,789,2), + (408,120,41,2), + (409,39,346,3), + (410,144,979,1), + (411,304,837,2), + (412,353,369,3), + (413,199,213,6), + (414,300,175,1), + (415,90,376,9), + (416,17,646,1), + (417,198,828,8), + (418,322,695,6), + (419,441,302,5), + (420,108,994,7), + (421,318,295,4), + (422,121,993,8), + (423,172,956,9), + (424,482,637,5), + (425,272,55,7), + (426,174,467,9), + (427,74,748,3), + (428,8,160,6), + (429,182,545,5), + (430,218,80,5), + (431,64,289,2), + (432,436,872,10), + (433,241,585,10), + (434,382,746,2), + (435,176,423,6), + (436,374,547,3), + (437,237,657,2), + (438,415,984,9), + (439,370,282,9), + (440,357,203,7), + (441,211,841,3), + (442,473,520,9), + (443,190,752,7), + (444,188,679,1), + (445,44,204,6), + (446,230,632,1), + (447,264,167,4), + (448,485,121,9), + (449,223,383,7), + (450,135,733,3), + (451,112,215,1), + (452,75,724,8), + (453,320,372,10), + (454,224,617,8), + (455,120,252,2), + (456,19,918,10), + (457,390,777,6), + (458,454,273,4), + (459,161,796,7), + (460,116,78,4), + (461,283,921,6), + (462,375,810,7), + (463,351,467,9), + (464,41,987,10), + (465,364,967,8), + (466,39,51,5), + (467,319,17,7), + (468,270,785,3), + (469,163,942,1), + (470,369,686,3), + (471,342,173,5), + (472,373,402,6), + (473,277,81,10), + (474,143,916,8), + (475,448,794,9), + (476,251,183,1), + (477,315,693,5), + (478,104,802,6), + (479,484,296,1), + (480,219,119,2), + (481,112,371,5), + (482,119,37,5), + (483,353,315,4), + (484,408,162,2), + (485,460,601,10), + (486,41,263,7), + (487,13,853,5), + (488,245,641,5), + (489,19,415,9), + (490,378,100,2), + (491,443,501,1), + (492,89,598,3), + (493,84,495,2), + (494,382,116,1), + (495,126,320,2), + (496,294,16,7), + (497,129,754,8), + (498,396,21,10), + (499,300,138,8), + (500,270,181,1); +INSERT INTO [OrderItems] VALUES (501,312,49,3), + (502,195,690,4), + (503,58,932,2), + (504,370,763,10), + (505,148,105,2), + (506,369,1,10), + (507,428,64,6), + (508,491,854,6), + (509,311,108,2), + (510,142,40,5), + (511,462,858,8), + (512,292,433,2), + (513,461,745,5), + (514,451,29,7), + (515,328,825,6), + (516,431,580,8), + (517,446,357,2), + (518,466,843,2), + (519,434,636,8), + (520,211,403,1), + (521,59,187,8), + (522,483,562,10), + (523,132,865,4), + (524,68,112,8), + (525,244,827,9), + (526,267,819,1), + (527,489,157,6), + (528,10,507,2), + (529,287,761,8), + (530,196,596,10), + (531,453,36,1), + (532,145,398,9), + (533,276,888,3), + (534,156,980,1), + (535,74,825,8), + (536,58,270,6), + (537,494,90,9), + (538,84,759,2), + (539,120,484,3), + (540,255,14,1), + (541,165,69,9), + (542,119,259,3), + (543,345,809,9), + (544,15,217,1), + (545,440,29,8), + (546,20,241,1), + (547,465,810,5), + (548,382,550,6), + (549,292,871,4), + (550,222,12,5), + (551,281,614,1), + (552,32,509,5), + (553,52,28,2), + (554,189,646,10), + (555,407,106,9), + (556,143,473,9), + (557,67,377,3), + (558,424,597,2), + (559,184,194,8), + (560,384,949,1), + (561,362,619,4), + (562,482,633,2), + (563,52,538,6), + (564,152,389,4), + (565,392,106,10), + (566,233,172,10), + (567,47,792,9), + (568,98,244,8), + (569,156,4,2), + (570,252,703,6), + (571,259,597,3), + (572,379,954,5), + (573,286,295,1), + (574,387,349,4), + (575,306,958,10), + (576,487,724,3), + (577,255,145,10), + (578,9,638,9), + (579,122,45,7), + (580,356,615,10), + (581,468,861,9), + (582,317,269,3), + (583,266,122,1), + (584,247,871,9), + (585,120,242,4), + (586,300,705,10), + (587,326,192,7), + (588,195,511,8), + (589,87,208,7), + (590,263,549,4), + (591,433,447,10), + (592,46,129,5), + (593,291,362,1), + (594,271,751,8), + (595,199,246,1), + (596,15,110,9), + (597,382,575,10), + (598,441,168,1), + (599,499,759,9), + (600,135,776,9), + (601,269,278,2), + (602,493,60,4), + (603,151,841,3), + (604,339,149,4), + (605,445,131,7), + (606,446,857,1), + (607,21,672,7), + (608,449,174,4), + (609,423,695,9), + (610,272,199,1), + (611,243,442,10), + (612,411,482,6), + (613,428,325,3), + (614,353,48,7), + (615,293,11,6), + (616,385,852,10), + (617,207,143,7), + (618,478,497,7), + (619,115,948,2), + (620,48,699,5), + (621,375,989,4), + (622,10,862,2), + (623,11,468,6), + (624,47,34,6), + (625,6,803,7), + (626,236,97,4), + (627,151,636,6), + (628,411,509,1), + (629,189,498,1), + (630,208,375,8), + (631,241,994,3), + (632,78,293,4), + (633,159,137,9), + (634,382,52,4), + (635,435,413,1), + (636,137,508,5), + (637,288,840,3), + (638,408,719,10), + (639,395,448,3), + (640,451,814,2), + (641,475,479,2), + (642,135,317,5), + (643,140,16,8), + (644,372,145,7), + (645,79,594,1), + (646,438,297,9), + (647,25,939,7), + (648,43,959,5), + (649,225,372,7), + (650,313,437,6), + (651,407,893,10), + (652,201,344,4), + (653,271,396,8), + (654,165,656,2), + (655,492,353,3), + (656,72,560,1), + (657,320,592,4), + (658,389,370,2), + (659,402,637,3), + (660,405,885,9), + (661,361,25,9), + (662,9,825,3), + (663,248,764,7), + (664,89,581,7), + (665,69,925,6), + (666,83,412,5), + (667,368,258,1), + (668,388,958,6), + (669,109,864,10), + (670,173,169,2), + (671,341,563,3), + (672,287,176,6), + (673,499,632,4), + (674,291,751,9), + (675,387,561,6), + (676,144,223,10), + (677,366,495,7), + (678,239,251,10), + (679,383,981,10), + (680,262,436,7), + (681,118,518,3), + (682,429,343,5), + (683,348,273,3), + (684,429,865,6), + (685,147,174,4), + (686,104,303,1), + (687,277,286,1), + (688,5,746,10), + (689,383,452,5), + (690,206,529,2), + (691,92,731,9), + (692,113,332,10), + (693,115,901,10), + (694,497,910,9), + (695,55,719,9), + (696,35,54,5), + (697,192,270,7), + (698,22,950,3), + (699,401,437,5), + (700,188,935,1), + (701,322,330,4), + (702,150,92,6), + (703,23,250,5), + (704,26,277,3), + (705,165,854,4), + (706,381,733,3), + (707,8,370,7), + (708,245,355,3), + (709,446,18,2), + (710,282,743,2), + (711,333,247,4), + (712,394,742,10), + (713,108,608,2), + (714,209,159,1), + (715,468,957,2), + (716,400,232,7), + (717,240,201,10), + (718,193,909,9), + (719,187,193,8), + (720,430,668,2), + (721,122,44,2), + (722,301,509,3), + (723,264,163,7), + (724,484,977,9), + (725,454,918,3), + (726,117,872,7), + (727,119,185,2), + (728,44,364,3), + (729,444,652,1), + (730,485,74,7), + (731,261,33,3), + (732,145,87,1), + (733,487,483,10), + (734,129,566,10), + (735,177,270,2), + (736,61,684,5), + (737,237,355,9), + (738,74,225,6), + (739,373,911,6), + (740,457,570,6), + (741,475,663,8), + (742,123,714,3), + (743,155,247,8), + (744,275,919,2), + (745,119,189,4), + (746,481,129,2), + (747,7,551,3), + (748,129,682,7), + (749,109,94,8), + (750,402,850,9); +INSERT INTO [OrderItems] VALUES (751,413,279,9), + (752,195,365,2), + (753,12,125,1), + (754,397,627,2), + (755,101,150,10), + (756,99,923,4), + (757,3,836,10), + (758,124,109,1), + (759,203,800,3), + (760,249,745,7), + (761,233,931,7), + (762,54,479,5), + (763,78,731,10), + (764,345,573,4), + (765,461,732,3), + (766,41,611,5), + (767,382,486,2), + (768,121,905,3), + (769,225,96,6), + (770,238,448,9), + (771,244,374,1), + (772,24,234,10), + (773,441,393,2), + (774,169,237,1), + (775,298,651,4), + (776,117,828,5), + (777,231,516,1), + (778,246,529,8), + (779,251,810,9), + (780,378,697,4), + (781,370,151,5), + (782,274,789,2), + (783,391,2,7), + (784,303,256,8), + (785,23,830,8), + (786,488,617,1), + (787,261,640,8), + (788,440,811,3), + (789,270,521,7), + (790,276,116,7), + (791,464,626,2), + (792,174,793,10), + (793,76,179,8), + (794,41,78,5), + (795,452,314,10), + (796,58,819,2), + (797,60,212,7), + (798,48,9,4), + (799,204,956,3), + (800,249,289,4), + (801,493,661,9), + (802,153,412,1), + (803,184,369,6), + (804,481,724,1), + (805,263,487,4), + (806,419,792,10), + (807,213,740,7), + (808,131,640,6), + (809,64,737,1), + (810,219,248,1), + (811,320,770,7), + (812,356,289,2), + (813,458,458,6), + (814,426,114,8), + (815,161,507,3), + (816,488,203,9), + (817,48,69,7), + (818,151,189,4), + (819,87,6,5), + (820,183,994,8), + (821,296,474,2), + (822,343,66,1), + (823,186,305,10), + (824,352,448,3), + (825,241,861,4), + (826,172,872,2), + (827,290,987,10), + (828,117,669,2), + (829,77,639,2), + (830,303,250,3), + (831,408,795,3), + (832,362,160,2), + (833,462,799,10), + (834,389,54,9), + (835,232,439,2), + (836,301,614,1), + (837,188,933,3), + (838,59,583,9), + (839,127,370,6), + (840,54,551,6), + (841,126,503,5), + (842,191,298,8), + (843,198,854,3), + (844,346,373,10), + (845,75,483,3), + (846,417,935,4), + (847,295,88,3), + (848,478,954,10), + (849,103,557,9), + (850,411,826,8), + (851,37,571,9), + (852,214,906,6), + (853,169,66,8), + (854,152,111,9), + (855,113,89,6), + (856,4,460,3), + (857,250,675,10), + (858,316,131,3), + (859,460,686,3), + (860,8,736,3), + (861,65,329,9), + (862,273,273,4), + (863,144,318,9), + (864,16,837,6), + (865,308,518,1), + (866,108,632,7), + (867,370,864,10), + (868,231,563,9), + (869,261,454,4), + (870,126,997,7), + (871,433,73,4), + (872,363,671,10), + (873,331,146,10), + (874,361,89,10), + (875,57,501,4), + (876,441,29,2), + (877,60,989,5), + (878,34,348,2), + (879,498,917,9), + (880,381,295,10), + (881,345,183,5), + (882,271,896,10), + (883,403,830,9), + (884,402,326,3), + (885,111,447,4), + (886,85,643,1), + (887,209,207,9), + (888,208,742,5), + (889,435,329,6), + (890,145,374,6), + (891,148,685,8), + (892,468,847,5), + (893,354,297,9), + (894,107,268,10), + (895,123,862,7), + (896,221,788,9), + (897,220,129,7), + (898,214,399,9), + (899,350,824,10), + (900,487,105,6), + (901,107,379,2), + (902,183,588,4), + (903,90,758,6), + (904,455,39,6), + (905,98,396,2), + (906,52,147,2), + (907,482,929,8), + (908,236,142,7), + (909,355,182,10), + (910,12,834,6), + (911,211,236,10), + (912,198,722,1), + (913,3,765,7), + (914,163,441,6), + (915,250,257,2), + (916,88,891,2), + (917,91,418,9), + (918,112,763,2), + (919,270,204,4), + (920,239,535,4), + (921,443,933,9), + (922,281,729,7), + (923,276,607,4), + (924,418,36,10), + (925,229,222,10), + (926,407,139,1), + (927,459,141,1), + (928,161,186,2), + (929,180,575,5), + (930,39,656,6), + (931,182,151,10), + (932,334,346,4), + (933,439,508,1), + (934,106,610,4), + (935,285,760,4), + (936,147,640,8), + (937,244,34,5), + (938,405,752,8), + (939,240,564,2), + (940,288,201,10), + (941,105,122,10), + (942,299,291,5), + (943,14,825,8), + (944,283,529,4), + (945,368,459,4), + (946,72,993,9), + (947,399,649,3), + (948,224,246,1), + (949,201,33,5), + (950,415,325,1), + (951,383,119,6), + (952,324,576,4), + (953,144,212,5), + (954,193,888,7), + (955,28,93,1), + (956,19,676,5), + (957,436,552,2), + (958,235,851,8), + (959,395,483,5), + (960,233,675,8), + (961,243,418,8), + (962,106,124,1), + (963,471,764,9), + (964,346,893,1), + (965,412,321,1), + (966,441,588,5), + (967,99,22,6), + (968,235,203,5), + (969,149,351,1), + (970,240,97,5), + (971,199,99,1), + (972,388,53,3), + (973,465,228,1), + (974,21,495,5), + (975,496,285,1), + (976,337,237,7), + (977,493,190,5), + (978,461,704,10), + (979,222,243,9), + (980,294,298,8), + (981,214,836,3), + (982,384,448,4), + (983,23,396,2), + (984,261,625,8), + (985,268,542,2), + (986,46,414,2), + (987,362,479,8), + (988,326,85,5), + (989,225,603,2), + (990,414,470,7), + (991,341,634,9), + (992,312,997,3), + (993,371,665,4), + (994,126,698,8), + (995,425,801,3), + (996,491,95,6), + (997,71,787,7), + (998,19,601,6), + (999,194,21,1), + (1000,446,673,9); + diff --git a/schema/01_Restaurants.sql b/schema/01_Restaurants.sql new file mode 100644 index 0000000..4ab4c91 --- /dev/null +++ b/schema/01_Restaurants.sql @@ -0,0 +1,7 @@ +CREATE TABLE Restaurants ( + RestaurantId INT PRIMARY KEY, + Name NVARCHAR(100), + Address NVARCHAR(200), + PhoneNumber NVARCHAR(20), + OpeningHours NVARCHAR(100) +); \ No newline at end of file diff --git a/schema/02_Customers.sql b/schema/02_Customers.sql new file mode 100644 index 0000000..4abe724 --- /dev/null +++ b/schema/02_Customers.sql @@ -0,0 +1,7 @@ +CREATE TABLE Customers ( + CustomerId INT PRIMARY KEY, + FirstName NVARCHAR(50), + LastName NVARCHAR(50), + Email NVARCHAR(100), + PhoneNumber NVARCHAR(20) +); \ No newline at end of file diff --git a/schema/03_Employees.sql b/schema/03_Employees.sql new file mode 100644 index 0000000..0421ad5 --- /dev/null +++ b/schema/03_Employees.sql @@ -0,0 +1,7 @@ +CREATE TABLE Employees ( + EmployeeId INT PRIMARY KEY, + RestaurantId INT REFERENCES Restaurants(RestaurantId), + FirstName NVARCHAR(50) , + LastName NVARCHAR(50), + Position NVARCHAR(50), +); \ No newline at end of file diff --git a/schema/04_MenuItems.sql b/schema/04_MenuItems.sql new file mode 100644 index 0000000..64ee20d --- /dev/null +++ b/schema/04_MenuItems.sql @@ -0,0 +1,7 @@ +CREATE TABLE MenuItems ( + ItemId INT PRIMARY KEY, + RestaurantId INT REFERENCES Restaurants(RestaurantId), + Name NVARCHAR(100), + Description NVARCHAR(200), + Price DECIMAL(10,2), +); \ No newline at end of file diff --git a/schema/05_Tables.sql b/schema/05_Tables.sql new file mode 100644 index 0000000..409157b --- /dev/null +++ b/schema/05_Tables.sql @@ -0,0 +1,5 @@ +CREATE TABLE Tables ( + TableId INT PRIMARY KEY, + RestaurantId INT REFERENCES Restaurants(RestaurantId), + Capacity INT, +); \ No newline at end of file diff --git a/schema/06_Reservations.sql b/schema/06_Reservations.sql new file mode 100644 index 0000000..4c9657e --- /dev/null +++ b/schema/06_Reservations.sql @@ -0,0 +1,8 @@ +CREATE TABLE Reservations ( + ReservationId INT PRIMARY KEY, + CustomerId INT REFERENCES Customers(CustomerId), + RestaurantId INT REFERENCES Restaurants(RestaurantId), + TableId INT REFERENCES Tables(TableId), + ReservationDate DATETIME, + PartySize INT, +); diff --git a/schema/07_Orders.sql b/schema/07_Orders.sql new file mode 100644 index 0000000..af779fd --- /dev/null +++ b/schema/07_Orders.sql @@ -0,0 +1,7 @@ +CREATE TABLE Orders ( + OrderId INT PRIMARY KEY, + ReservationId INT REFERENCES Reservations(ReservationId), + EmployeeId INT REFERENCES Employees(EmployeeId), + OrderDate DATETIME, + TotalAmount DECIMAL(10,2), +); \ No newline at end of file diff --git a/schema/08_OrderItems.sql b/schema/08_OrderItems.sql new file mode 100644 index 0000000..2f5c42b --- /dev/null +++ b/schema/08_OrderItems.sql @@ -0,0 +1,6 @@ +CREATE TABLE OrderItems ( + OrderItemId INT PRIMARY KEY, + OrderId INT REFERENCES Orders(OrderId), + ItemId INT REFERENCES MenuItems(ItemId), + Quantity INT , +); \ No newline at end of file diff --git a/schema/09_AuditLog.sql b/schema/09_AuditLog.sql new file mode 100644 index 0000000..cd944a8 --- /dev/null +++ b/schema/09_AuditLog.sql @@ -0,0 +1,7 @@ +CREATE TABLE AuditLog ( + AuditId INT IDENTITY(1,1) PRIMARY KEY, + RestaurantId INT REFERENCES Restaurants(RestaurantId), + TableId INT REFERENCES Tables(TableId), + ReservationDate DATETIME, + ChangeDate DATETIME DEFAULT GETDATE() +); \ No newline at end of file