Scripts
Scripts
INSERT INTO
CustomerDetail(CustomerId,CustomerName,Email,ContactNumber,Address,CountryId)
VALUES (1,'Albert','[email protected]','+91-8888888888','Mumbai, India',1);
INSERT INTO
CustomerDetail(CustomerId,CustomerName,Email,ContactNumber,Address,CountryId)
VALUES(2,'Anabela','[email protected]','+1-206-999-2222','Washinton DC, USA',2);
INSERT INTO
CustomerDetail(CustomerId,CustomerName,Email,ContactNumber,Address,CountryId)
VALUES(3,'Angeles','[email protected]','+91-8888888888','Mumbai, India',1);
INSERT INTO
CustomerDetail(CustomerId,CustomerName,Email,ContactNumber,Address,CountryId)
VALUES(4,'Carlos','[email protected]','+55-21-4444-5555','Rio De Janeiro,
Brazil',3);
INSERT INTO
CustomerDetail(CustomerId,CustomerName,Email,ContactNumber,Address,CountryId)
VALUES(5,'Daniel','[email protected]','+1-212-999-2222','New York, USA',2);
INSERT INTO
CustomerDetail(CustomerId,CustomerName,Email,ContactNumber,Address,CountryId)
VALUES(6,'Davis','[email protected]','+55-21-4444-5555','Rio De Janeiro, Brazil',3);
INSERT INTO
CustomerDetail(CustomerId,CustomerName,Email,ContactNumber,Address,CountryId)
VALUES(7,'Helen','[email protected]','+44-20-7777-3333','London, England',4);
INSERT INTO
CustomerDetail(CustomerId,CustomerName,Email,ContactNumber,Address,CountryId)
VALUES(8,'Karin','[email protected]','+61-2-5555-2222','Canberra, Australia',5);
INSERT INTO
CustomerDetail(CustomerId,CustomerName,Email,ContactNumber,Address,CountryId)
VALUES(9,'Janine','[email protected]','+27-41-888-7777','Pretoria, South Africa',6);
INSERT INTO
ShipDetail(ShipId,ShipAddress,ShipZip,ShipCost,SellerId,CustomerId,ShipStatus,ShipD
ate,DeliveryDate,CountryId)
VALUES(1,'Mumbai, India','200002',200,1,1,'Delivered','15-Nov-2016','18-Nov-
2016',1);
INSERT INTO
ShipDetail(ShipId,ShipAddress,ShipZip,ShipCost,SellerId,CustomerId,ShipStatus,ShipD
ate,DeliveryDate,CountryId)
VALUES(2,'Washington DC, USA','20009',5,2,2,'Dispatched','18-Nov-2016',NULL,2);
INSERT INTO
ShipDetail(ShipId,ShipAddress,ShipZip,ShipCost,SellerId,CustomerId,ShipStatus,ShipD
ate,DeliveryDate,CountryId)
VALUES(3,'Delhi, India','100002',200,1,3,'Dispatched','21-Nov-2016',NULL,1);
INSERT INTO
ShipDetail(ShipId,ShipAddress,ShipZip,ShipCost,SellerId,CustomerId,ShipStatus,ShipD
ate,DeliveryDate,CountryId)
VALUES(4,'Rio De Janeiro, Brazil','28640-000',50,3,4,'Delivered','19-Nov-2016','22-
Nov-2016',3);
INSERT INTO
ShipDetail(ShipId,ShipAddress,ShipZip,ShipCost,SellerId,CustomerId,ShipStatus,ShipD
ate,DeliveryDate,CountryId)
VALUES(5,'Washington DC, USA','00501',5,2,5,'Delivered','18-Nov-2016','21-Nov-
2016',2);
INSERT INTO
ShipDetail(ShipId,ShipAddress,ShipZip,ShipCost,SellerId,CustomerId,ShipStatus,ShipD
ate,DeliveryDate,CountryId)
VALUES(6,'London, England','WC2N',2,4,7,'Dispatched','18-Nov-2016',NULL,4);
INSERT INTO
BillingDetail(BillId,BillItemId,CustomerId,ActualAmount,CountryId,PaymentType,ItemQ
uantity,ProductId,PurchaseDate) VALUES(1,1,1,193000,1,'Net Banking',1,3,'15-Nov-
16');
INSERT INTO
BillingDetail(BillId,BillItemId,CustomerId,ActualAmount,CountryId,PaymentType,ItemQ
uantity,ProductId,PurchaseDate) VALUES(2,1,2,42199,2,'Net Banking',1,5,'18-Nov-
16');
INSERT INTO
BillingDetail(BillId,BillItemId,CustomerId,ActualAmount,CountryId,PaymentType,ItemQ
uantity,ProductId,PurchaseDate) VALUES(3,1,3,60000,1,'Net Banking',1,4,'21-Nov-
16');
INSERT INTO
BillingDetail(BillId,BillItemId,CustomerId,ActualAmount,CountryId,PaymentType,ItemQ
uantity,ProductId,PurchaseDate) VALUES(4,1,4,700,3,'Net Banking',1,8,'19-Nov-16');
INSERT INTO
BillingDetail(BillId,BillItemId,CustomerId,ActualAmount,CountryId,PaymentType,ItemQ
uantity,ProductId,PurchaseDate) VALUES(5,1,5,2500,2,'Net Banking',1,2,'18-Nov-16');
INSERT INTO
BillingDetail(BillId,BillItemId,CustomerId,ActualAmount,CountryId,PaymentType,ItemQ
uantity,ProductId,PurchaseDate) VALUES(6,1,7,200,4,'Net Banking',1,9,'18-Nov-16');