SQL Recursion with CTE Part 1 | Quick Tips Ep59

Поділитися
Вставка
  • Опубліковано 22 гру 2024

КОМЕНТАРІ •

  • @hiteshthakur5025
    @hiteshthakur5025 3 роки тому +17

    The only video on the internet that helped me understand this concept clearly. Thanks a lot!

  • @ankushgupta7509
    @ankushgupta7509 2 роки тому

    you won everyone's heart when you said lets do one more excercise.

  • @darkkevind
    @darkkevind 2 роки тому +1

    Thank you so much! 20+ years developer here in full stack (VB, C#, .NET), first time I actually understood the concept of CTE's and you helped me solve a very tricky problem I had, locating a mapping heirarchy 👍

  • @QuietLumina
    @QuietLumina 11 місяців тому

    Wow, thank you! This is an excellent explanation. I really prefer to understand what’s happening rather than just copying syntax, so this is much appreciated!

  • @mahia2030
    @mahia2030 Рік тому

    You saved my day, thanks lot for taking time and explained in a very clear way 🙏👍

  • @priyabhatia3079
    @priyabhatia3079 3 роки тому +3

    Best video on Recursive CTEs! Thanks a ton Joey!

  • @lata946
    @lata946 3 роки тому +2

    Today I had a task to work with hierarchy in mssql and found your video . Thanks! It helped a lot :)

  • @elizabethsullivan1894
    @elizabethsullivan1894 Рік тому

    Extremely clear and helpful. Thank you!

  • @pakinam190
    @pakinam190 3 роки тому

    after watching so many videos on this topic, i finally understand it thanks to you!

  • @harischkalagoni3482
    @harischkalagoni3482 3 роки тому +2

    "sorry if I took so much time?" not everyone gets it in 2min video. Why does everyone think it is easy(they keep skipping many of the steps you explained, in their videos. ALL OF THAT HAPPENS AND ONLY THEN WE GET OUTPUT)? That excel sheet, iteration rows.. awesome. Thanks. You remind me of an underrated teacher who taught me C language. What you did to recursion, he did to pointers. tbh, I wondered whether this video would work before watching, by looking at those views and length of this video(actually, I spent more time than this video's length in figuring this recursion on my own, then watched 2 or 3 videos which didn't help and then landed here)

  • @higiniofuentes2551
    @higiniofuentes2551 Рік тому

    Thank you for this very useful video!

  • @KESHA1982
    @KESHA1982 2 роки тому

    Absolutely stunning explanation. Thank you much!

  • @dominiks5318
    @dominiks5318 3 роки тому

    Very thorough and detailed explanation, thanks.

  • @florincopaci6821
    @florincopaci6821 3 роки тому

    Your way of explaining is very very good! Too bad that are not all like you

  • @dhavalprajapati21
    @dhavalprajapati21 2 роки тому +1

    Hi Joey,
    Thank you for making such easy to understand videos.
    Could you please make one video on recursive CTE to handle the case when employeeID and ManagerID are same?

  • @vendetta3953
    @vendetta3953 2 роки тому

    Thanks for making this.

  • @peterg4130
    @peterg4130 Рік тому

    At 35:52 when I add the CAST function to the CTE Anchor, I get this error:
    Types don't match between the anchor and the recursive part in column "catlvl2" of recursive query "cat".
    edit: I figured it out. Just an FYI for anyone else: the type and character length need to match. EXACTLY. After some digging, I noticed that my engineers set the column length to MAX, so when following this example in the video, instead of putting "cast (columnname (50))" I had to put "cast (columnname (MAX))"

  • @aryramy9093
    @aryramy9093 Рік тому

    Now I got it , thanks a lot

  • @jarno_r
    @jarno_r 3 роки тому +1

    HI, Great tutorial. Where can I get the db you're working with so I can practice myself?

  • @higiniofuentes2551
    @higiniofuentes2551 Рік тому

    The very last explanation needs a deep level, but the rest is perfect!

  • @shadowitself
    @shadowitself 2 роки тому

    @Joey Blue just want to say: I appreciate Your work ;)
    thx

  • @redwannabil8031
    @redwannabil8031 2 роки тому

    Pretty advanced stuff

  • @fearnostigma
    @fearnostigma 2 роки тому

    How do you go the other way? I want to know who is at the apex of ward's leadership structure.

  • @gieborywar
    @gieborywar 2 роки тому

    Thanks for explanation. I have one question. What if the count of level is dynamic? Hierarchy in companies I not constans. I think about last part of the video.

  • @tv.TheDogFather
    @tv.TheDogFather 6 місяців тому

    Can we start at a low spot whre something is NULL in the hierarchy and work up util we get a vaule up the hierarchy?

  • @renanbarbosa6329
    @renanbarbosa6329 9 місяців тому

    Thank you!

  • @noxlupi1
    @noxlupi1 2 роки тому

    Thanx, really helped a lot! I thought I was going stupid, before this video. Btw. perhaps you should have concatenated the names instead of id first, that would have been simpler to wrap ones head around. But it was really well explained.

  • @mmr7517
    @mmr7517 8 місяців тому

    Thank you ❤❤

  • @jahmesiahkeys9597
    @jahmesiahkeys9597 3 роки тому

    Great video !

  • @The-Right-is-Right
    @The-Right-is-Right 2 роки тому

    Hey Joey Blue...can you share the script to the heirarchy database...so we as students can try the recursive CTE ourselves? (Or is it one of the Adventureworks databases?)

  • @deetee8051
    @deetee8051 2 роки тому

    LOVE IT

  • @GladiusArmis
    @GladiusArmis 3 роки тому +1

    How do I get a copy of this code?

  • @againnotgood8980
    @againnotgood8980 2 роки тому

    THANK YOU

  • @Andrei_K1G1K
    @Andrei_K1G1K Рік тому

    Can you do a video on DIFFERENCE please?

  • @jordanstrasser5243
    @jordanstrasser5243 3 роки тому

    Awesome video - I used the basic structure from the emp table to recurse through a table of about 250k rows. Running the recursion crashed my computer. I think it got overwhelmed having to join the 250k row table over an over again. Do you have any suggestions?

  • @АленаТребушникова-ь5о

    sucess