Тёмный

SQL Interview Question - Solution (Part - XI) |  

MeanLifeStudies
Подписаться 942
Просмотров 844
50% 1

#education #sql #sqlinterview #dataengineers #dataanalytics #dataanalyst
#interviewquestion #sqlinterview
Here are My profiles that will definitely help your preparation for data analyst or data engineer roles.
Medium: / mahendraee204
Github: github.com/mahendra204
Here are table creation and insertion queries:
------------------------------------------------------------------------
create table WC_matches (
match_id int,
player_id int,
runs_scored int
);
create table WC_players (
id int,
name varchar(20)
);
insert into WC_matches values
(2401, 204, 60),
(2401, 105, 52),
(2401, 256, 88),
(2401, 245, 90),
(2401, 100, 75),
(2401, 128, 58),
(2402, 348, 50),
(2402, 105, 61),
(2402, 385, 63),
(2402, 128, 57),
(2403, 420, 52),
(2403, 120, 78),
(2403, 105, 80),
(2404, 256, 56),
(2404, 128, 70),
(2404, 245, 92);
insert into WC_players values
(100, 'iyer'),
(105, 'pant'),
(120,'Virat'),
(128, 'Rohit'),
(204, 'Klassen'),
(256, 'Vanderussain'),
(245, 'Hendricks'),
(348, 'Head'),
(385, 'marsh'),
(420, 'Gurbaz');

Опубликовано:

 

25 июн 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 11   
@Vaibha293
@Vaibha293 21 день назад
with cte as(
@VARUNTEJA73
with cte as (select match_id-ranks as match_id ,player_id,name from
@dasubabuch1596
with qer as
@kushmanthreddy4762
@kushmanthreddy4762 28 дней назад
WITH cte AS (
@omilind
@omilind 28 дней назад
select
Далее
SQL Interview Problem asked during Amazon Interview
15:15
Kettim gul opkegani😋
00:37
Просмотров 1,6 млн
Practice SQL Interview Query | Big 4 Interview Question
14:47
WIPRO SQL Interview Question - FIRST_VALUE( ) Function
11:18
How To Load One BILLION Rows into an SQL Database
12:17