Recursive SQL Queries Tutorial | Learn to write SQL Queries using Recursion

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ก.พ. 2025
  • Visit brilliant.org/t... to get started learning STEM for free, and the first 200 people will get 20% off their annual premium subscription.
    All the scripts and dataset used in this video can be downloaded for free from my discord. Link to join my discord below:
    Discord link: / discord
    In this video, let's learn how to write Recursive SQL Queries. Learn to write SQL Queries using Recursion by solving different SQL queries. This video will explain the syntax to be followed to write recursive sql queries and we shall look at the difference in syntax in PostgreSQL, Oracle, MySQL and MSSQL.
    I will also explain the process SQL follows to execute recursive sql query. Then we shall solve 3 different SQL queries using recursion. I will execute the queries in all the major RDBMS such as PostgreSQL, Oracle, MySQL and Microsoft SQL Server.
    My recommended platform to practice SQL queries: www.stratascra...
    My recommended platform for SQL Course: learnsql.com/?...
    Consider SUBSCRIBING to my channel if you wish to learn SQL, Python and Data Analytics concepts.
    FTC disclaimer: This video was sponsored by Brilliant.
    🔴 WATCH MORE VIDEOS HERE 👇
    ✅ SQL Tutorial - Basic concepts:
    • SQL Tutorial - Basic c...
    ✅ SQL Tutorial - Intermediate concepts:
    • SQL Tutorial - Interme...
    ✅ SQL Tutorial - Advance concepts:
    • SQL Tutorial - Advance...
    ✅ Practice Solving Basic SQL Queries:
    • Practice Solving BASIC...
    ✅ Practice Solving Intermediate SQL Queries:
    • Practice Solving INTER...
    ✅ Practice Solving Complex SQL Queries:
    • Practice Solving COMPL...
    ✅ Data Analytics Career guidance:
    • Data Analytics career ...
    ✅ SQL Course, SQL Training Platform Recommendations:
    • SQL Course / Training
    ✅ Python Tutorial:
    • Python Tutorial
    THANK YOU,
    Thoufiq

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

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

    Visit brilliant.org/techTFQ/ to get started learning STEM for free, and the first 200 people will get 20% off their annual premium subscription.

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

      Hi @techTFQ I have been following you since very long time and I got better in SQL just because of you! Thanks a lot. Now I have a problem and not able to solve it since 2 days! Could you please help me with it!
      SELECT * FROM YourTable
      WHERE '123' IN ('Col1', 'Col2','Col3'...'Coln')
      But the Where condition isn't working for 2 values example: WHERE ('123', '456') IN ('Col1', 'Col2','Col3'...'Coln') , Is there any way to search for 2 or more values existing in different columns??

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

      Thank you Navya ..
      You can use OR clause for this case..
      WHERE ( Col1 in (123, 456)
      OR Col2 in (123, 456)
      OR Col3 in (123, 456)
      OR Col4 in (123, 456) )

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

      @@techTFQ Thanks for the response, Yes I did use it but I don't want to write multiple OR's because 123, 456 is not constant and these might go upto 100 or 200, so I have to paste them in every single OR condition every time! So is there any way to solve this issue? I want to give the values only once and it should check in all the columns for it's existence.

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

      Can you share the entire query and datasets with me so I can check . U can email me

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

      @@techTFQ sure thanks.

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

    Hi Thoufiq. I've been working with SQL (and teaching) for more than 2 decades and never found someone addressing SQL problems like you. The strongest aspects are problem-solving orientation (instead of theoretical) and ANSI standard queries (as much as possible). Congratulations! I'm recommending your videos to my students and workmates.

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

      Hi Leandro,
      Thank you so much 🙏🏼
      It’s very special to receive such amazing feedback from an experienced SQL professional like yourself.
      Thank you for sharing this feedback, means a lot 🙏🏼
      And thank you too for recommending my contents..

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

    At last a clear, detailed and impressive explanation with real examples of what is, how it works and how to write a WITH RECURSIVE CTE.
    BRAVO!!!

  • @mike-w1t2e
    @mike-w1t2e ปีที่แล้ว +1

    I've looked at dozens of RECURSIVE CTE tutorials but until this one, I couldn't find an explanation of the JOIN condition. Thank you ... exactly what I needed!

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

    Every single person who is working in SQL must have this channel in youtube subscribe list. I have recommended this channel to 3 colleague's & I am extremely happy to say they all liked this channel. And all 3 are thanking me 😍

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

    I've started my data science course and I thought that recursive cte wasn't meant for me but thanks to you i'm finally able to understand the logic behind it. Thanks Thoufiq.

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

      Thanks, glad it helped

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

    Thank you so much for the detailed tutorial! I’ve been a data analyst for three years but never came across this technique until I received an interview from another company. Hope I can ace that SQL interview🤞

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

    I did both these topics (CTE & recursive CTE) from LinkedIn learning; they made me feel like I can't learn but you make SQL so easy. Thanks for your content:-)
    I'm at my first step as data analyst; looking forward to have help from you.

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

      I am glad to hear that Aakriti

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

    Hey Thoufiq, I have become a big fan of your content off late. I think that I have subscribed and started watching your videos for a month or 2. However, I have completed watching every single video that you have uploaded so far. The way of teaching is excellent and the examples that you provide are the backbone for the concepts that you are explaining. Great work! Thanks for the amazing knowledge share!

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

      Thank you so very much Karthikeyan :)
      I am so glad you have liked my contents. Thanks for the feedback too

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

    You’ve taught me more in one week, than I learnt in one semester. GOAT STUFF!

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

    Thanks!

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

    Hi Thoufiq,I am a beginner learning Data Science course. Your teaching skills are very good and anyone can understand the way you explain. I really thank you for the SQL videos which are very useful and also I recommend to my friends to watch your videos.

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

    Literally I would say god level explanation, I was struggling with recursive query recently i had use case 👍

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

    Very well explained. I remember using the same concept when I had to generate the Voucher Code for one promotion feature. The voucher code should be AlphaNumeric and it should not already be present in the existing VoucherCodes table. It was very interesting and this concept had helped a lot.

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

    A detailed explanation of confusing recursive query. simply Awsome

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

    I have watched so many videos regarding the same topic but really you made me understand very easily...thank you very much. keep teaching us.

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

      Glad to hear that Santhosh ☺️

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

    Excellent explanation, Thofique! I like how when you ran the second example in multiple DBMSs, you went in an order that made you do an ever-increasing number of changes. :) I'll add another layer: if you were using Db2, you would have to 1. remove the RECURSIVE keywork, 2. use UNION ALL instead of UNION (I generally discourage using UNION by itself anyway), 3. specify column aliases as part of your CTE syntax (so far all the same changes you need for Oracle)...AND you also can't do an INNER JOIN in your recursive CTE! Not a problem for Example 1 (output integers 1 through 10), but for Example 2 it means you would have to go back in time to a time before INNER JOIN was invented (pre-1992!) and change your (INNER) JOIN to a Cartesian join (using the old-school comma-separated list of tablenames...not even the CROSS JOIN syntax!) followed by the appropriate WHERE clause to ensure you only get back the same rows that you would have with an INNER JOIN. Weird, right?

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

    Hi @techTFQ,
    I wanted to express my sincere gratitude for the invaluable knowledge I've gained through your videos. As an experienced data engineer, I have found your content to be exceptionally insightful and well-presented. Your selfless efforts and dedication to teaching have not gone unnoticed, and I truly appreciate the time you invest in sharing your expertise.
    The clarity with which you explain complex concepts and the practical insights you provide on data analysis have been immensely beneficial to my learning journey. Your commitment to excellence in education is evident, and I wanted to take a moment to acknowledge and thank you for the positive impact you've had on my understanding of the subject.
    I have enthusiastically recommended your channel to many of my colleagues who, like me, greatly appreciate the quality of your content. Please continue your outstanding work, as it is making a significant difference in the learning experiences of individuals in the data engineering community.
    Thank you once again for your dedication and exceptional teaching.
    Regards

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

    Fantastic in my 10 years of IT i have not seen this in-depth tutorial. Amazing ✋

  • @EmmanuelElom-n1m
    @EmmanuelElom-n1m หลายเดือนก่อน

    I love every single lessons you teach. Great work!

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

    Thanks

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

    Thank you so much for the video Taufiq. When I'm struggling to SQL problems, your videos are my first to go.

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

      I am glad to hear that bro

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

    Your Amazing sir . Even a person with Zero Sql knowledge can easily understand the concept .Thank you for your efforts to make us to understand the concept :-)

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

    Finally a video that can help me understand recursive sql query. Salute to you sir

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

      Glad this helped

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

    Hey @techTFQ, i have been struggling with recursive query from long time. You gave me a crystal clear understanding. Thanks

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

    Your SQL videos are awesome & extraordinarily understoodable. Seems like taking a delicious chocolate everytime. Once again another SQL (recursive this time) is now clear like distilled water! Hats off bro!

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

    Great explanation. How to show the hierarchy up and additionally if a manager has another employee, besides the searched one, show him and hierarchy down, if searching down found employee has 2nd manager then show him too. So we show all hierarchy of the company.

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

    Definitely one of the better examples and succinct explanations. I liked how you reviewed the syntax first and came back to it when implementing.
    Keep it up.

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

    You explain complex topics in a very intuitive manner. Awesome content!! I was having a hard time understanding recursive CTEs, but after watching this - everything seems crystal clear about recursive CTEs :)

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

    Hi toufiq, i have been go through many sql videos but your videos are very descriptive i love the way you elaborate small small details while solving queries,it would be great if you help out what is going on in industrial work
    Love from india

  • @SwethaNandyala-sf9lt
    @SwethaNandyala-sf9lt ปีที่แล้ว

    Cant thank you enough for your content and explaination....lots of admiration from banaglore

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

    This is definitely an amazing lesson helping me to resolve the issues in my work. Thanks Thoufiq, you are an amazing tutor.

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

    Man, you are simply brilliant! You were able to make me to understand this (I couldn't even do that at university lol). I just have one suggestion: could you explain not so fast? Thank you so much bro! Greetings from Paraguay!

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

      Your welcome buddy.. Glad you liked it and noted on the suggestion 👍

  • @a-ezzat5677
    @a-ezzat5677 11 หลายเดือนก่อน

    i really respect you so much you are a professional in my opinion i have learned a lot from you . greetings from egypt

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

    You are great I must be plain...more grace to your elbow...
    I am your big fan 🤗

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

      Thank you so much bro 😀
      Appreciate your support

  • @Momo-qr3rd
    @Momo-qr3rd 2 ปีที่แล้ว +7

    Thank you very much🙏😊 It helped me a lot. Watching only one tutorial, made me follow and watch all of your videos. It is a great way to explain complex topics like this with examples. Could you please share your database for each of your tutorials so can pactise with it? Of course I could create it myself but its easier if you would share it.

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

      Thank you bro .. glad you liked it..
      As for dataset, I always share it either in my blog or in my discord.
      For this video, you can get it from my discord

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

      +1

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

      Thank you bro

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

    Simply good 👍 You are helping so many ppl in their journey of learning.. keep it up. God bless✌

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

      Thank you 😍

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

    finally I understood this concept thanks to this video

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

    Thank you! This tutorial helped me understand recursive sql statement. Thanks very much!

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

    Brilliant Thoufiq! great way of putting things! TY!

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

      Glad you enjoyed it Hadi

  • @jonesing777
    @jonesing777 9 วันที่ผ่านมา

    Awesome explanation. Incredibly helpful

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

    Ethical Vlogging !! kudos. Disclosing sponsorships @ very beginning. Hard to find such practice these days.

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

    Thanks a lot... CTE is great...we can further optimise by creating cte_employee to store employees _details in single time...and use the same cte in recursive

  • @kamalrkumar
    @kamalrkumar 15 วันที่ผ่านมา

    Really fantastic explanation.... Keep it on..

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

    Thanks Thoufiq for precise and clear explanation

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

      Glad this helped Shaik :)

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

    Awesome! Thank you and keep posting more SQL tutorials.

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

      Your welcome buddy and will do

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

    Thoufiq Sir , you are best in the business for sure

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

      thanks buddy

  • @Ismail-hd4yz
    @Ismail-hd4yz 9 หลายเดือนก่อน

    Omg i was planning how to manage categories with multi level , and this will perfectly work for me.
    And most importantly i would able to all parents category and when user click on any of that i can get all which belongs to that specific category.
    My problem solved

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

    Excellent info... Have always been thinking of handling it through code. Thanks bro.

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

      Glad this helped Parag :)

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

    This is awesome! I have been looking to achieve this in SQL for sometime now. Thanks for sharing!

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

    so clearly explained Taufiq...your videos really do magic...thank you so much and keep posting such learning videos

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

    Hi Thoufiq, Thanks for your great job. I got a clear understanding of how to analyze a problem and its implementation. Looking forward to more such videos.Thank you

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

      Glad it helped MuthuMari

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

    Looking at your queries and way of explanation I wonder why I wasted my money on some SQL course. God why didn't I find your playlist earlier.

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

    Love the way you explained. Very easy to understand

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

      Thank you Rohan 🙏🏼

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

    Awesome got a clear picture on recursion.
    Please make videos related to dynamic queries in PostgreSQL.
    One humble request I need clear cut guidance on Service Broker.
    Thanks....

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

      Thank you buddy and noted on the request

  • @flashborn-band
    @flashborn-band ปีที่แล้ว

    Awesome video, very well explained. Thank you. Just one little thing with the last example. I wished you would have changed the level number backwards somehow.

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

    Mind blowing explanation ..awesome😍😍😍.. Wonderful lectures .. I admired the way to explain the each and evry concepts from scratch to advancced level.

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

    Beautiful explanation. The way you explain concepts is crystal clear. Thanks for the amazing videos.

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

      Thank you so much ☺️

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

    Wooah.. you deserve many subscription. Many thanks, you save my week..
    One question, is this work well for a big data row, or better using another method?

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

    Great video. Helped made a complex topic easy to understand and follow

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

    Another awesome video. Very well explained and easy to understand. Thanks.

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

      Thank you so much ☺️

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

    Fantastic Tutorial. Thank you for actually explaining what the code is doing!

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

    Very well explained! Thank you!

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

      Glad it was helpful!

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

    Very informative and nice explanation

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

    Thank you Tafiq for such a wonderful job. You are an excellent teacher, and I have learned SQL from your channel. Keep it up, and be good.

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

    Great work! Do you have any videos on union n union all complex ones

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

    That was a great explanation

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

    Thank u so much . Could you please make a video on database indexing in detail like what is it, how to do indexing and its usage? Thank you in advance

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

      Sure Prajwal , will consider doing it

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

    Please make videos on procedures and functions. Btw you are doing fabulous job.♥️

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

      Thank you Ajay and sure will do

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

    thank you. you explained beautifully. please give some examples to practice apart from what you have solved - to check learning on these concepts, if possible. thanks a lot .

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

      Thank you Ashutosh :)
      will consider you request.

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

    your explanation on SQL are sky level. can you please suggest me best sites for python learning.

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

    10 out of 10 Video🤝

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

    Thanks a lot for this wonderful explanation.

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

      Your welcome 🙏🏼

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

    Thanks so much! very clear and details, love your tutorials!

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

      Thank you :)

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

    Hi Thoufiq, Thank you for this video.

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

      Your welcome buddy

  • @AsadAli-wi1xs
    @AsadAli-wi1xs 2 ปีที่แล้ว +2

    Supereb content 👌👌👌

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

      Thank you 🙏🏼

  • @vijaykumar-sy3uu
    @vijaykumar-sy3uu 2 ปีที่แล้ว

    Thanks a Lot Thoufiq for Making great content😀 .Request:: Please make video on UDF

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

    Superb explanation! 👏

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

      Thank you 🙂

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

    Such a Masterpiece!!!

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

      Thank you bro

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

    Question - in the first example, do you have a table in your database called 'numbers'? If yes, I understand the example. If not, what is 'FROM numbers' referencing?

  • @anjali.8296
    @anjali.8296 ปีที่แล้ว

    could you please tell
    what is the difference between connect by clause and recursive ..same series or hierarchy data we can also print using connect by clause

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

    Excellent explanation! Thank you very much.

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

    Superb explanation and Excellent Content

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

    Very detail explanation

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

    Nice video ..really appreciate..can you please suggest aany place where I can solve and learn advanced SQL queries

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

    Great work to bring in all concepts 👍

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

      Thanks a lot 😊

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

    Well explained and i find it useful. Thank you.

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

    Excellent, I really love your all videos.

  • @swamivivekananda-cyclonicm8781
    @swamivivekananda-cyclonicm8781 2 ปีที่แล้ว

    Fanstastic explanation. You have gift of explaining concepts.

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

    Thank you! This explained things so clearly.

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

    Best explanation , thank you ;)

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

    Hi toufiq one question the records will repeat yes because epm details will make joins on all records in heirchy table

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

    please make a video on triggers , stored procedures and pragma as well , Thank you.

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

      Sure will do

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

    Very useful video. Thank you!

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

      Glad it helped

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

    Hi, pls try to post complete vedio on stored procedures and thanks for this vedio

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

      Sure Nisha will do it soon

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

      @@techTFQ Thanks you🙂

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

    Tq for sharing valuable information, sir.

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

    excellent video sir

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

      Many many thanks bro

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

    Amazing as always.

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

      Thank you :)

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

    Great concept and I love your videos

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

    This video helped me a lot, Thanks !

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

      You're welcome