From 812c0de6795941175c7437311cc2c4611e1fdd38 Mon Sep 17 00:00:00 2001 From: Krishna Nanda Date: Tue, 14 Sep 2021 16:04:10 +0530 Subject: [PATCH] Upload files to '' --- grocerydb59.sql | 153 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 153 insertions(+) create mode 100644 grocerydb59.sql diff --git a/grocerydb59.sql b/grocerydb59.sql new file mode 100644 index 0000000..f32ebe5 --- /dev/null +++ b/grocerydb59.sql @@ -0,0 +1,153 @@ +drop database if exists grocery_db59; +create database grocery_db59; +use grocery_db59; + +-- Users Table Schema +CREATE TABLE `users` ( + `UserID` int(11) NOT NULL AUTO_INCREMENT, + `UserFirstName` varchar(50) DEFAULT NULL, + `UserLastName` varchar(50) DEFAULT NULL, + `UserEmail` varchar(50) DEFAULT NULL, + `UserPassword` varchar(50) DEFAULT NULL, + `UserCity` varchar(50) DEFAULT NULL, + `UserState` varchar(20) DEFAULT NULL, + `UserZip` varchar(12) DEFAULT NULL, + `UserPhone` varchar(20) DEFAULT NULL, + `UserAddress` varchar(100) DEFAULT NULL, + `UserAddress2` varchar(50) DEFAULT NULL, + PRIMARY KEY (`UserID`) +); + +ALTER TABLE users AUTO_INCREMENT = 100; + +insert into users values( +100, "Rajesh", "Kumar", +"shawn@mail.com", "shawn@mail.com", +"Chennai", "Tamil Nadu", "600040", +"5000500050", "Block B, Abirami Apartments", +"Anna Nagar" +); +insert into users values( +101, "Vignesh", "Shivan", +"vignesh@mail.com", "vignesh@mail.com", +"Chennai", "Tamil Nadu", "600030", +"5000500060", "Block A, Harmony Melody", +"Shenoy Nagar" +); + +select * from users; +-- Product-Categories Table Schema +CREATE TABLE IF NOT EXISTS `productcategories` ( + `CategoryID` int(11) NOT NULL AUTO_INCREMENT, + `CategoryName` varchar(50) NOT NULL, + PRIMARY KEY (`CategoryID`) +); + +INSERT INTO `productcategories` (`CategoryID`, `CategoryName`) VALUES +(1, 'Snacks'), +(2, 'Vegetables'), +(3, 'Fruits'), +(4, 'Beverages'), +(5, 'Bakery Products'), +(6, 'Fist-Meat'); + +select * from productcategories; +-- Product Table Schema +create table Product( + `ProductID` int(12) NOT NULL AUTO_INCREMENT, + `ProductName` varchar(100) NOT NULL, + `ProductPrice` float NOT NULL, + `ProductWeight` float NOT NULL, + `ProductShortDesc` varchar(1000) NOT NULL, + `ProductLongDesc` text NOT NULL, + `ProductImage` varchar(100) NOT NULL, + `ProductCategoryID` int(11) DEFAULT NULL, + PRIMARY KEY (`ProductID`), + FOREIGN KEY (`ProductCategoryID`) REFERENCES productcategories(`CategoryID`) +); + +ALTER TABLE Product AUTO_INCREMENT = 1000; + +-- Vegetables +insert into product values (1000, "Carrot", 55, 0.5, +"Fresh Carrot - Ooty", +"A popular sweet-tasting root vegetable, Carrots provide the highest content of vitamin A of all the vegetables.", +"https://www.bigbasket.com/media/uploads/p/l/10000271_13-fresho-carrot-ooty.jpg", 2); +insert into product values (1001, "Potato", 30, 1, +"Fresh Potato - Organically Grown", +"Potatoes are nutrient-dense, non-fattening and have reasonable amount of calories. Consumption of potatoes helps to maintain the blood glucose level and keeps the brain alert and active.", +"https://www.bigbasket.com/media/uploads/p/l/10000159_25-fresho-potato.jpg", 2); +insert into product values (1002, "Cauliflower", 60, 0.45, +"Fresh Cauliflower", +"Cauliflower is made up of tightly bound clusters of soft, crumbly, sweet cauliflower florets that form a dense head.", +"https://www.bigbasket.com/media/uploads/p/l/10000074_19-fresho-cauliflower.jpg", 2); +-- Fruits +insert into product values (1003, "Orange", 65, 1, +"Fresh Orange", +"Navel oranges are very sugary and juicy and considered to be the world's finest orange for fresh consumption because they are very sweet, naturally juice, seedless and peels and segments very easily.", +"https://www.bigbasket.com/media/uploads/p/l/20000910_12-fresho-orange-imported.jpg", 3); +insert into product values (1004, "Banana - Yelakki", 70, 1, +"Fresh Banana - Yelakki", +"Yelakki bananas are small size, they are naturally flavoured, aromatic and sweeter compared to regular bananas.", +"https://www.bigbasket.com/media/uploads/p/l/10000031_21-fresho-banana-yelakki.jpg", 3); +-- Snacks +insert into product values (1005, "Britannia Good Day Cashew Cookies", 90, 0.120, +"Britannia Good Day Cashew Cookies", +"Britannia Good Day Cashew Cookies are delicious crunchy cookies made with rich cashews.", +"https://www.bigbasket.com/media/uploads/p/l/40083744_5-britannia-good-day-cashew-cookies.jpg", 1); +insert into product values (1006, "Haldirams Namkeen - Bhujia Sev", 200, 1, +"Haldirams Namkeen - Bhujia Sev", +"Haldirams Bhujia Sev is a authentic namkeen. This classic snack is made with chickpea flour and some spices.", +"https://www.bigbasket.com/media/uploads/p/l/100022552_1-haldirams-namkeen-bhujia-sev.jpg", 1); +-- Fist-Meat +insert into product values (1007, "Eggs - Regular (12)", 76, 0.150, +"Fresh Eggs - Regular, 2x6 pcs Multipack ", +"Fresh Table eggs are hygienically processed and securely filled for keeping these free from any contamination and impurity.", +"https://www.bigbasket.com/media/uploads/p/l/40083744_5-britannia-good-day-cashew-cookies.jpg", 6); + +select * from product; + + + +-- Orders Table Schema +CREATE TABLE IF NOT EXISTS `orders` ( + `OrderID` int(11) NOT NULL AUTO_INCREMENT, + `OrderUserID` int(11) NOT NULL, + `OrderAmount` float NOT NULL, + `OrderShipAddress` varchar(100) NOT NULL, + `OrderShipAddress2` varchar(100) NOT NULL, + `OrderCity` varchar(50) NOT NULL, + `OrderState` varchar(50) NOT NULL, + `OrderZip` varchar(20) NOT NULL, + `OrderCountry` varchar(50) NOT NULL, + `OrderPhone` varchar(20) NOT NULL, + `OrderShippingCost` float NOT NULL, + `OrderTax` float NOT NULL, + `OrderEmail` varchar(100) NOT NULL, + `OrderDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + `OrderShipped` tinyint(1) NOT NULL DEFAULT '0', + `OrderTrackingNumber` varchar(80) DEFAULT NULL, + PRIMARY KEY (`OrderID`) +); + +ALTER TABLE orders AUTO_INCREMENT = 1000; + +SELECT * FROM orders; + +-- Members Table Schema +create table `members`( + `UserID` int(11) NOT NULL, + `MemberID` int(11) not null, + `MemberName` varchar(20) not null, + `TotalItems` int(3) not null default 0, + `MemberPhone` varchar(15) not null, + `MemberTotalAmount` float not null default 0, + PRIMARY KEY (`MemberID`), + FOREIGN KEY (`UserID`) REFERENCES users(`UserID`) +); + +INSERT INTO members VALUES(100, 1, "Abhishek", 0,"1234512345", 0); +INSERT INTO members VALUES(100, 2, "Meera", 5,"12345234567", 1200); +INSERT INTO members VALUES(100, 3, "Shyam", 10,"1234598745", 800); + +select * from members;