SQL Interview Question - Solution (Part - VIII) | Data Analyst | Data Engineer Interviews

Описание к видео SQL Interview Question - Solution (Part - VIII) | Data Analyst | Data Engineer Interviews

#education #sql #dataanalyst #dataengineers

#education #sql #dataanalyst #dataengineers

Here are my medium and Github links mentioned below. You will get more information regarding data analyst or data engineer interviews and portfolio project building. These pages will definitely help you in your preparation. Don't forget to catch these pages using the below links.
  / mahendraee204  
https://github.com/mahendra204

Here are create and insert statements:
----------------------------------------------------------------
create table Sales (
Product varchar(10),
Region varchar(10),
Sales int
);

insert into Sales values
('A', 'North', 2000),
('A', 'South', 3000),
('A', 'East', 2400),
('B', 'North', 5000),
('B', 'South', 1000),
('B', 'East', 6000),
('C', 'North', 2500),
('C', 'South', 300),
('C', 'East', 4800),
('D', 'North', 1500),
('D', 'South', 2480),
('D', 'East', 2680);

Комментарии

Информация по комментариям в разработке