Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
12 views
Create Database Online - Shopping
Uploaded by
Punugu Jaya Chandra Reddy
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download now
Download
Save create database Online_shopping For Later
Download
Save
Save create database Online_shopping For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
12 views
Create Database Online - Shopping
Uploaded by
Punugu Jaya Chandra Reddy
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download now
Download
Save create database Online_shopping For Later
Carousel Previous
Carousel Next
Save
Save create database Online_shopping For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 2
Search
Fullscreen
create database Online_shopping_Database;
Create table Products1
(
Product_id int primary key,
product_name Varchar(40),
Description Varchar(40),
price money,
stock_quantity int,
Category_id int Foreign key references categories(Category_id),
);
Create table Categories
(
Category_id int primary key,
Category_name Varchar(40),
);
Select * From Products1
Select * From Categories
Create table Customers1
(
Cid int primary key,
Cname Varchar(40),
Cage int,
CMobile int,
CEmail Varchar(40),
Caddress Varchar(30),
);
Select * From Customers1
Create table Orders
(
Order_id int primary key,
customer_id int Foreign Key References Customers1(Cid),
Order_date date,
total_amount int,
);
Create table Transactions
(
Transaction_id int Primary Key,
Order_id int Foreign Key References Orders(Order_id),
Payment_date date,
payment_method varchar(30),
Amount int,
);
Select * From Transactions
Select * From Orders
Create table OrderItemsTable
(
Order_id int Foreign Key References Orders(Order_id),
Product_id int Foreign Key References Products1(Product_id),
Quantity int,
Price money,
);
Select * From OrderItemsTable;
Create Table Reviews
(
review_id int Primary Key,
Custeomer_id int Foreign Key References Customers1(Cid),
Product_id int Foreign Key References Products1(Product_id),
rating int check(rating = 0 or rating = 1 or rating = 2 or rating = 3 or rating = 4
or rating = 5),
Comment Varchar(20),
Review_date date,
);
Select * From Reviews;
Create Table Addressess
(
Customer_id int Foreign Key References Customers1(Cid),
C_Address Varchar(50),
City Varchar(40)
);
Select * From Addressess;
Create Table Wishlist
(
Wishlist_id int Primary Key,
Customer_id int Foreign Key References Customers1(Cid),
Product_id int Foreign Key References Products1(Product_id),
Wishlist_Date date,
);
Create Table Cart
(
cart_item_id int Primary Key,
Customer_id int Foreign Key References Customers1(Cid),
Product_id int Foreign Key References Products1(Product_id),
Cart_date date,
quantity int,
);
Select * From Cart;
Create Table Promotions
(
Promotion_id int Primary Key,
Promotion_Name Varchar(50),
Promotion_Start_date date,
Promotion_End_date date,
discount_percentage int,
);
Select * From Promotions;
You might also like
DWH Detailedproject
PDF
No ratings yet
DWH Detailedproject
17 pages
e Commerce
PDF
No ratings yet
e Commerce
18 pages
Grocery SQL
PDF
No ratings yet
Grocery SQL
3 pages
cosc 304 lab5
PDF
No ratings yet
cosc 304 lab5
2 pages
Shopping
PDF
No ratings yet
Shopping
10 pages
Final Report On Online Shopping
PDF
No ratings yet
Final Report On Online Shopping
47 pages
Project of Ecommerce
PDF
No ratings yet
Project of Ecommerce
5 pages
task2ddl
PDF
No ratings yet
task2ddl
2 pages
Tables
PDF
No ratings yet
Tables
27 pages
SQL Queries For Part1 2
PDF
No ratings yet
SQL Queries For Part1 2
4 pages
Amazon
PDF
No ratings yet
Amazon
16 pages
New Text Document.csv - Copy (4)
PDF
No ratings yet
New Text Document.csv - Copy (4)
2 pages
SACHIN - Database and I_O Interface Design
PDF
No ratings yet
SACHIN - Database and I_O Interface Design
10 pages
Online Shopping System-Database Design - Bhupal Sapkota
PDF
100% (1)
Online Shopping System-Database Design - Bhupal Sapkota
4 pages
Information Technology (802) - Class 12 - UNIT 4 - Work Integrated Learning IT - Session 2
PDF
No ratings yet
Information Technology (802) - Class 12 - UNIT 4 - Work Integrated Learning IT - Session 2
21 pages
Emon Inventory
PDF
No ratings yet
Emon Inventory
3 pages
Function Assignments
PDF
No ratings yet
Function Assignments
6 pages
Hypermart Table
PDF
No ratings yet
Hypermart Table
7 pages
SQL Code Jairam
PDF
No ratings yet
SQL Code Jairam
1 page
DOC-20230522-WA0001.(1)(1)(1)(1)
PDF
No ratings yet
DOC-20230522-WA0001.(1)(1)(1)(1)
4 pages
Online Retail System: (Sahil, 1917634)
PDF
No ratings yet
Online Retail System: (Sahil, 1917634)
3 pages
���+ᮧ�����+����+������
PDF
No ratings yet
���+ᮧ�����+����+������
4 pages
Practice DDL Commands and Constraints in MS SQL (E1)
PDF
No ratings yet
Practice DDL Commands and Constraints in MS SQL (E1)
3 pages
Document5 (10)
PDF
No ratings yet
Document5 (10)
2 pages
BB Coffee Brewery System
PDF
No ratings yet
BB Coffee Brewery System
17 pages
SQL
PDF
No ratings yet
SQL
3 pages
Group1_Stationery shop management system
PDF
No ratings yet
Group1_Stationery shop management system
24 pages
Store Project.sql
PDF
No ratings yet
Store Project.sql
3 pages
sales_inventory_project_formatted
PDF
No ratings yet
sales_inventory_project_formatted
5 pages
Impactful Case Studies of DBMS
PDF
No ratings yet
Impactful Case Studies of DBMS
49 pages
Online Food Ordering System: Team Members
PDF
No ratings yet
Online Food Ordering System: Team Members
5 pages
Message
PDF
No ratings yet
Message
7 pages
Tugas Basis Data Lanjut
PDF
No ratings yet
Tugas Basis Data Lanjut
8 pages
Online Canteen Management Data Dictionary
PDF
No ratings yet
Online Canteen Management Data Dictionary
7 pages
SQL
PDF
No ratings yet
SQL
41 pages
sql.assigment2
PDF
No ratings yet
sql.assigment2
40 pages
SQL Assignment
PDF
No ratings yet
SQL Assignment
7 pages
E-Store Databse Shema
PDF
No ratings yet
E-Store Databse Shema
2 pages
CREATE TABLE OceanSeafoodShops
PDF
No ratings yet
CREATE TABLE OceanSeafoodShops
37 pages
Mysql
PDF
No ratings yet
Mysql
7 pages
Create Database Clothing_shop
PDF
No ratings yet
Create Database Clothing_shop
6 pages
Assignment 6
PDF
No ratings yet
Assignment 6
11 pages
MySQL Script Northwind
PDF
No ratings yet
MySQL Script Northwind
3 pages
Cart
PDF
No ratings yet
Cart
4 pages
001 Cyber
PDF
No ratings yet
001 Cyber
2 pages
Iemocart WITH CCS
PDF
No ratings yet
Iemocart WITH CCS
27 pages
SQL Code
PDF
No ratings yet
SQL Code
2 pages
Amey B-50 DWM Lab Experiment-2
PDF
No ratings yet
Amey B-50 DWM Lab Experiment-2
19 pages
New Text Document
PDF
No ratings yet
New Text Document
4 pages
tp4_sql
PDF
No ratings yet
tp4_sql
4 pages
MySQL Zomato Project
PDF
No ratings yet
MySQL Zomato Project
4 pages
Create Tables Northwind
PDF
No ratings yet
Create Tables Northwind
4 pages
Database Case Study - Long
PDF
No ratings yet
Database Case Study - Long
3 pages
DB - Sepeda M Kailanahl Rohman 9042023016
PDF
No ratings yet
DB - Sepeda M Kailanahl Rohman 9042023016
15 pages
TP2_sql
PDF
No ratings yet
TP2_sql
3 pages
V Lib Table
PDF
No ratings yet
V Lib Table
3 pages
Database Management Assignment 2
PDF
No ratings yet
Database Management Assignment 2
25 pages
Reto 3 Java
PDF
No ratings yet
Reto 3 Java
20 pages
Northwind
PDF
No ratings yet
Northwind
21 pages