SQL Interview Question - Solution (Part - XI) |

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ต.ค. 2024
  • #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/mah...
    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');

ความคิดเห็น • 13