You are on page 1of 24

A

Project report
On
SQL and DATA VISUALIZATION Marketing
As a part of Project Submission of
BUSINESS ANALYTICS
Submitted to:
Dr. Jaineel Shah
Submitted by:
NAME ENROLLMENT NUMBER
Pankti Shah 202100620010256
Himansi Prajapati 202100620010223
Ujwalsinh Zala 202100620010314
Siddhant Solanki 202100620010275
Aman Patel 202100620010205
Shubham Soni 202100620010279
Urja Vora 202100620010309
Submission date:
18th October 2022
Batch
2021-2023
FACULTY OF MANAGEMENT
MBA PROGRAMME
PREFACE

As a part of Masters of Business Administration curriculum and in order to gain knowledge


in the field of Business Analytics. Being MBA students, our aim should not be just to acquire
theoretical knowledge but also to learn how this theoretical knowledge is applied
successfully in the real corporate world. In this project, we have given the data of SQL and
Data Visualization which includes different sets of graphs Besides this, the project also
taught us about the various aspects of working in a team. All the group members got
knowledge about SQL coding and different graphs. Also, pros and cons of working in a
group and furthermore had the chance to enhance the skills
ACKNOWLEDGMENT

We are pleased to get this opportunity to give special thanks to the persons whose ideas,
views and support have provide a fluency to prepare this report. First and Fore most, we would
like to thank entire faculty members of GLS UNIVERSITY for providing us such a nice
platform to learn.
The success and final observation gained from this project requires a lot of guidance and
assistance and we have got it all during the project reporting period. The project report is an
outcome of overall supervision and cooperation received from project guide and group members.
We are also grateful to our parents for their inexhaustible source of inspiration. We would extend
our gratitude to DR. JAINEEL SHAH for his constant guidance and support. Finally, we would
like to thank all those who helped us in one way or the other way at every stage of our project
work.
SQL

Q-1 Required EmployeeID, LastName, BirthDate from Employees Data base

SELECT EmployeeID, LastName, BirthDate


FROM [Employees];
Q-2 Required ProductID, ProductName, Price from Products Database where
price is more than 45

SELECT ProductID, ProductName, Price


FROM Products
WHERE Price > 45
Q-3 Required CustomerID, CustomerName, Country from Customers data base,
where country is Germany and city is Berlin.

SELECT CustomerID, CustomerName, Country


FROM Customers
WHERE Country='Germany' AND City='Berlin';

Q-4 Need to add all of your group members name in Customers database.

Insert Into Customers (CustomerName)


Values ('Pankti Shah') , ('Ujjwalsinh Zala') , ('Himansi Prajapati') , ('Siddhant
Solanki') , ('Aman Patel') , ('Shubham Soni')
Q-5 Combine the orderID and CustomerID database on the basis of CustomerID

SELECT Orders.OrderID, Customers.CustomerName


FROM Orders INNER JOIN Customers ON
Orders.CustomerID=Customers.CustomerID;
DATA VISUALIATION OF PHARAMA SECTOR:
1) WHIRLPOOL

Ascending triangle:
2) GODHREJ

(A) Graph Marked is Double bottom (Bullshit)


(B) Double top (BEARISH) :
3) HONEYWELL AUTOMATION PVT,LTD

(A) Descending triangle (Bearish)


(B) Double bottom
4) VOLTAS LTD

(A) Rising Wedge (Bearish)


(B) Double Bottom (Bullish)
5) CROMPTON

(A) Double top (Bearish)


6) BLUE STAR LTD :

(A) Rising wedge (Bearish)


7) DIXON TECHNOLOGIES INDIA LTD :

(A) Falling wedge (Bullish)


8) IFB INDUSTRIES LTD

(A) HEAD & SHOULDERS (BEARISH)


9) JOHNSON CONTROL HITACHI AIR CONDITIONER

(A) Falling wedge (Bullish)


10) BAJAJ ELECTRICALS LTD :

(A) Double Bottom

You might also like