MySQL: SUBQUERIES

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 พ.ย. 2024

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

  • @BroCodez
    @BroCodez  2 ปีที่แล้ว +30

    SELECT first_name, last_name, hourly_pay,
    (SELECT AVG(hourly_pay) FROM employees) AS avg_pay
    FROM employees;
    SELECT first_name, last_name
    FROM employees
    WHERE hourly_pay > (SELECT AVG(hourly_pay) FROM employees);
    SELECT first_name, last_name
    FROM customers
    WHERE customer_id IN (SELECT DISTINCT customer_id
    FROM transactions WHERE customer_id IS NOT NULL);
    SELECT first_name, last_name
    FROM customers
    WHERE customer_id NOT IN (SELECT DISTINCT customer_id
    FROM transactions WHERE customer_id IS NOT NULL);

    • @sairams1928
      @sairams1928 2 ปีที่แล้ว

      Good job bro waiting for this playlist from you I am a big fan of your work

    • @sairams1928
      @sairams1928 2 ปีที่แล้ว +1

      Don't quit this playlist bro because I need to learn MySQL from a good instructor like you

    • @sairams1928
      @sairams1928 2 ปีที่แล้ว

      Make a playlist that will help to learn everything about SQL bro. It will definitely useful for me and also lots and lots of your subscribers so please continue don't quit this and make everyone as a master in mysql those who are all learning these videos. Thanks for your efforts 🙂

  • @adriatic123
    @adriatic123 ปีที่แล้ว +57

    After so many wrong and complicated examples on this topic finally a good and clear explanation, it helped me thanks.

  • @faidex7340
    @faidex7340 9 หลายเดือนก่อน +25

    In just a few minutes you made me understand what they explained to me at school for almost a month

  • @mostwanted9817
    @mostwanted9817 2 ปีที่แล้ว +13

    Yo, I've been watching and learning from this course, soo much. I've tired learning SQL from books, but you explain it very easy.
    You are a hero, thank you BroCode!

    • @enriquepasa
      @enriquepasa 2 ปีที่แล้ว +1

      Yeah, been in the same spot in ISTQB course too. Not quite pleasant

  • @abdelrhmansayed340
    @abdelrhmansayed340 หลายเดือนก่อน +3

    i see this playlist before each step of my current hiring process 😁😁. Thanks a lot

  • @quantumjunction
    @quantumjunction ปีที่แล้ว +4

    Finally I've been looking for a good explanation all week and you delivered 🙌

  • @vincent49654
    @vincent49654 2 หลายเดือนก่อน +2

    Best explaination online

  • @mr.nobody4159
    @mr.nobody4159 11 หลายเดือนก่อน +1

    Couldn't have explained it in a better way... appreciate it man!!!

  • @thatotman3942
    @thatotman3942 ปีที่แล้ว +3

    your videos are so concise!!!! Niceeeee

  • @Siuuu-gy8ro
    @Siuuu-gy8ro ปีที่แล้ว +11

    i am also learning to use subquerry's. Tbh it's pretty damn hard, but i feel like it's one of those things you learn with much much practice

    • @XxXxnoor
      @XxXxnoor 9 หลายเดือนก่อน +1

      I just started learning sql 2 weeks ago and i'm really struggling with subqueries. Does it get easier with practise?

  • @pabitrakb5291
    @pabitrakb5291 ปีที่แล้ว +1

    Great explanation
    Thank you ☺️

  • @alihadi-vv4yb
    @alihadi-vv4yb 19 วันที่ผ่านมา

    great explanation thank you.

  • @marie-sanna
    @marie-sanna 4 หลายเดือนก่อน

    Bro Code, from the bottom of my heart: THANK YOU.
    I'm learning sooo much from your videos, you're a life saver.

  • @7igor7
    @7igor7 3 หลายเดือนก่อน

    great video explanation was very clear

  • @chetanvashisth3005
    @chetanvashisth3005 9 หลายเดือนก่อน

    A very clear and concise explanation.❤❤❤

  • @chikabenie2593
    @chikabenie2593 3 หลายเดือนก่อน

    This is simplified...have been racking the brain for some days now..a milliin thanks

  • @Arzene22
    @Arzene22 8 หลายเดือนก่อน

    My professor made this more complicated than it seems. Thank you!

  • @MagnusAnand
    @MagnusAnand ปีที่แล้ว +1

    Very well explained

  • @enriquepasa
    @enriquepasa 2 ปีที่แล้ว +1

    Hi bro, thanks for the vid. Much better than most creators do. Much appreciated

  • @pyb8216
    @pyb8216 หลายเดือนก่อน

    "just imagine we replace the sub-query by what it returns" made me understand it

  • @alien3.0c
    @alien3.0c ปีที่แล้ว +1

    Thanks, well explained

  • @DiyAsianGuy
    @DiyAsianGuy ปีที่แล้ว +1

    Excellent tutorial!

  • @gkairdropincome
    @gkairdropincome 9 หลายเดือนก่อน

    Verey nice project

  • @damiankadziela978
    @damiankadziela978 ปีที่แล้ว +4

    The customer and transactions example would be normally done with JOIN:
    SELECT DISTINCT first_name, last_name FROM customers
    JOIN transactions ON customers.customer_id = transactions.customer_id;
    it's a bit shorter query, but it's cool to see that you can do this with other methods as well.

    • @DeeNelsonDee_nels_on_duty
      @DeeNelsonDee_nels_on_duty 10 หลายเดือนก่อน

      that's exactly what i thought so would you use an inner join for this?

  • @yuss.0349
    @yuss.0349 5 หลายเดือนก่อน

    best video about this argument, ty so much

  • @pranav3579
    @pranav3579 7 หลายเดือนก่อน

    Thanks a lot really helped .

  • @jugmilic2096
    @jugmilic2096 7 หลายเดือนก่อน

    Thank you so much❤You explained so good❤Keep your work up❤You are insane

  • @salmahazem1616
    @salmahazem1616 2 หลายเดือนก่อน

    thank you for this it's really useful bro💓💓💓💓

  • @pepijnschaap9166
    @pepijnschaap9166 ปีที่แล้ว

    thanks man u explained it really chill, not like the other ones with all weird ass terms that i dont even know

  • @dawitworku821
    @dawitworku821 7 หลายเดือนก่อน

    Very helpful. Than you.

  • @lunatichigh2896
    @lunatichigh2896 2 หลายเดือนก่อน

    I'm here because I'll have an interview in a few days. Good luck to me lol

  • @Hassan-vb1hy
    @Hassan-vb1hy ปีที่แล้ว +1

    You are the bestttttttttttt❤❤❤

  • @Victoria-dh9jp
    @Victoria-dh9jp ปีที่แล้ว

    Great video sir 👌

  • @arielespindola1759
    @arielespindola1759 ปีที่แล้ว

    I think you should touch on the performance too! These subqueries can be costly and suck up CPU in large tables. In the first example, the average was computed per row while $14.35 was needed only once. Other than that, great video. Thanks!

  • @AdebankeBamidele
    @AdebankeBamidele ปีที่แล้ว +2

    I finally got to understand this topic. This was amazing.
    Kudos and Bravos😂

  • @rodneyivers8677
    @rodneyivers8677 ปีที่แล้ว +3

    I have really enjoyed following your tutorials. I would like to complete some of the exercises on my own system. Are there files available to create the DB and data that you use in your videos? They would be greatly appreciated.

    • @BenjitsuID
      @BenjitsuID 10 หลายเดือนก่อน

      you can find free ones online just search it up

  • @SandipanSarkar-c8v
    @SandipanSarkar-c8v 9 วันที่ผ่านมา

    Finished watching

  • @Atabanza
    @Atabanza 11 หลายเดือนก่อน

    Thank you from Colombia

  • @nischalshrestha9063
    @nischalshrestha9063 2 หลายเดือนก่อน +1

    can also use INNER JOIN for this right? IN is more appropriate for smaller tasks though. Am I right?

  • @nockin7976
    @nockin7976 ปีที่แล้ว

    Thank you from Chile

  • @sargata3054
    @sargata3054 3 หลายเดือนก่อน

    This helped me so much. Thank you!!”

  • @TvideosTv
    @TvideosTv 6 หลายเดือนก่อน

    Thank you so much

  • @catalintodoran4392
    @catalintodoran4392 8 หลายเดือนก่อน

    Thank you

  • @danielfekete9761
    @danielfekete9761 หลายเดือนก่อน

    LEGEND!

  • @aedrynngravitt2290
    @aedrynngravitt2290 9 หลายเดือนก่อน +1

    Do you have a template to upload into MYSQL to use your example databases to follow along and type with you?

  • @iweijiew.2716
    @iweijiew.2716 3 หลายเดือนก่อน

    Thanks a lot ❤

  • @kristijanlazarev
    @kristijanlazarev ปีที่แล้ว

    godlike

  • @sreyamathew327
    @sreyamathew327 ปีที่แล้ว

    Could you please post a detailed video for correlated subqueries?

  • @marxLz
    @marxLz ปีที่แล้ว

    This looks like a nested "if" and "loop" statements in Java. I wouldn't be learning those without your tutorials in Java. And I know I will be learning those further when I start learning the other prog. languages you have on your playlist.
    Thank you so much!

  • @basingse7934
    @basingse7934 ปีที่แล้ว

    the best, thank you

  • @SmQwerty123
    @SmQwerty123 ปีที่แล้ว

    Or you can use a window function

  • @bluecafe509
    @bluecafe509 ปีที่แล้ว

    Thank you.

  • @guitarguy07
    @guitarguy07 ปีที่แล้ว

    love you bro

  • @MDCRITICA
    @MDCRITICA ปีที่แล้ว +1

    I'm not sure if someone could answer this but I'll try:
    SELECT first_name, last_name, hourly_pay
    FROM employees
    WHERE hourly_pay > (SELECT AVG(hourly_pay) FROM employees);
    In this query, why can't we just, after the "greater than", write "AVG(hourly_pay)" ??

    • @ScumbagLemon
      @ScumbagLemon ปีที่แล้ว

      That's what I don't get either, what's the benefit to sub-queries over shorter commands like this?

    • @omairtech6711
      @omairtech6711 ปีที่แล้ว +1

      Because you have to specify the table name. There could be other tables as well and MySQL needs to know exactly which one you want the result from.

    • @fearless6141
      @fearless6141 ปีที่แล้ว

      Can't we write then avg(employees.hourly_pay)

  • @fearless6141
    @fearless6141 ปีที่แล้ว +1

    There are two types of subqueries?

  • @bodymohmed6493
    @bodymohmed6493 ปีที่แล้ว

    🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩

  • @googlegoogle1610
    @googlegoogle1610 ปีที่แล้ว

    bro code is a legend, but I think it is better to upload a video illustrating correlated subqueries

  • @ZahraBalooti
    @ZahraBalooti 26 วันที่ผ่านมา

    wish you could use microsoft data sets

  • @Qupidboi
    @Qupidboi หลายเดือนก่อน +1

    incredibly loud

  • @dhxx2905
    @dhxx2905 11 หลายเดือนก่อน

    Lmao plankton now is the employee of Krusty Krab 😂

  • @thubelihlentabela5735
    @thubelihlentabela5735 7 หลายเดือนก่อน

    the concat function does it have to change the table also
    becaues the query is running fine but there are no changes at the schema although i refresh it ]

  • @lol-zw1mz
    @lol-zw1mz 7 หลายเดือนก่อน

    Goated

  • @Harrison10Miles
    @Harrison10Miles ปีที่แล้ว

    What about subqueries inside FROM?

  • @ojeagadaniel
    @ojeagadaniel 7 หลายเดือนก่อน +1

    I'm from the google data analytics programme and the instructor taking this part of the course is the worst ever. I didn't struggle understanding others but oh well, i have to use other resources to understand what she's saying. Very ambiguous
    Thanks anyway Bro

  • @xdrive300011
    @xdrive300011 ปีที่แล้ว

    ok i was pretty frustrated until i started this video hearing Bro Code calling the manager as "Krabs" or craps? is this intentional? Bor Code is my type!

  • @gliecco
    @gliecco 9 หลายเดือนก่อน

    Lmao this guy should open a how to give actual good examples course

  • @Ali-ys5vk
    @Ali-ys5vk วันที่ผ่านมา

    Bro is carring us

  • @sivuyilesifuba
    @sivuyilesifuba ปีที่แล้ว