SQL WITH Clause | How to write SQL Queries using WITH Clause | SQL CTE (Common Table Expression)

Поделиться
HTML-код
  • Опубликовано: 9 июл 2024
  • SQL WITH Clause | How to write SQL Queries using WITH Clause | SQL CTE (Common Table Expression)
    In this video, we shall understand how to write SQL Queries using WITH Clause. We will go through the syntax of using WITH Clause and I will also explain how SQL treats and executes SQL Queries containing With Clause.
    SQL WITH Clause is also referred to as CTE which stands for Common Table Expression and can also be referred to as Subquery Refactoring.
    This video will also provide what are the advantages of using With Clause while writing SQL Queries and also mention few scenarios when you should be using With Clause while writing SQL Queries.
    Download all the scripts and SQL Queries used in this video from my blog. Link below:
    techtfq.com/blog/sql-with-cla...
    Timeline:
    00:00 Intro
    00:34 Query 1: Simple example of writing SQL Query using With clause
    06:25 Query 2: Ideal Scenario for writing SQL Query using With clause
    20:29 Advantages of using WITH Clause in SQL
    22:19 When to use With Clause in SQL
    If you are new to SQL then you might have assumed that SQL Queries must always start with SELECT clause but that's not true because we can also start SQL Queries using WITH Clause. Understanding With clause can really help you to solve some of the tricky problems in SQL.
    In this video, we shall first see a simple example of using with clause within SQL query. The query no 2 explained in this video will be most suitable scenario for using WITH clause in SQL Query.
    🔴 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
    ✅ Git and GitHub Tutorial:
    • Git and GitHub
    ✅ Data Analytics Projects:
    • Data Analytics Projects
    THANK YOU,
    Thoufiq

Комментарии • 654

  • @techTFQ
    @techTFQ  2 года назад +48

    Please note the COST column used in this table represents the total cost of purchase hence we do not need to multiple quantity with cost to get the total cost. I designed the dataset with an assumption that COST is the total purchase cost.

    • @eijazhussainsheikh2637
      @eijazhussainsheikh2637 Год назад +2

      then it becomes easy...

    • @gotchihaeyo1825
      @gotchihaeyo1825 Год назад +2

      What if we have to calculate quantity × price first? Does Sum(quantity*price) work?

    • @chandramoulireddymarthala3721
      @chandramoulireddymarthala3721 Год назад +1

      Yeah your videos are really helping me to understand this course

    • @maggienalwabwe7288
      @maggienalwabwe7288 Год назад

      Hello, please help me reconstruct this using SELECT. The with clause isn’t supported
      WITH seq(n) AS
      (SELECT 0 UNION ALL SELECT n + 1 FROM seq
      WHERE n < DATEDIFF(DAY, '20210101', (DATEADD(DAY, -1, DATEADD(YEAR, 30, '20210101'))))),
      d(d) AS
      (SELECT DATEADD(DAY, n, '20210101') FROM seq)
      SELECT d, COUNT (*)
      ON a.dogma_registereddate = d OR a.dogma_removeddate IS NULL)
      WHERE a.dogma_charitynumber != 'SC000036'
      GROUP BY d
      ORDER BY d
      OPTION (MAXRECURSION 0);

    • @ananda7469
      @ananda7469 Год назад

      Sir can you please explain why did you give X as alias and also again avg_sales as alias but confused

  • @LazyPvPing
    @LazyPvPing 2 года назад +150

    You're the best resource I have found! I've taken classes on Udemy and everything but it's nothing like this. I graduate from college in December and I'm pursuing a career in Data Analytics. Your videos are definitely going to help me with my upcoming interviews. God bless you brother! You have helped me to understand SQL on a whole another level!

    • @techTFQ
      @techTFQ  2 года назад +18

      I am so glad to hear this bro :)
      Happy to know my videos have helped you to understand SQL.
      Thank you for the amazing feedback :)

    • @akshaykumarsingh9770
      @akshaykumarsingh9770 2 года назад +3

      That's correct @ItsReflexes, he is awesome 🙂

    • @techTFQ
      @techTFQ  2 года назад +1

      Thank you once again Akshay 🙏🏼

    • @LazyPvPing
      @LazyPvPing 2 года назад +8

      UPDATE : I signed a job offer with a great compensation range. In addition, I had 3+ companies to choose from. Hard work does pay off!

    • @techTFQ
      @techTFQ  2 года назад +5

      Congratulations buddy 💐
      I am so happy for your success 👌
      All the best 👍

  • @mdrashadulislam7121
    @mdrashadulislam7121 Год назад +2

    I have been working two and a half years as a Data Management Officer at icddr,b Bangladesh. Now, I am learning SQL to become a data analyst. I found your video classes very useful, effective and eloquently explained. Thanks techTFQ👌.

  • @JR-ly6bx
    @JR-ly6bx 2 года назад +4

    alot of people just show how to make the query, what I call "watch me type". You actually teach the how and whys. i learned alot with your channel. thanks

  • @RvRaaphorst
    @RvRaaphorst 2 года назад +16

    Another big advantage is when using CTE's for inserting/updating records in multiple rows (One-to-one, or one-to-mamy), you can use the returned id in the other queries.
    Mutiple modifications in a single query reduce overall latency from a code perspective.
    Moreover, a CTE is executed as a transaction, so you won't need to start/commit a transaction in your code.

  • @matiassquartini2467
    @matiassquartini2467 3 месяца назад +2

    from zero to super hero with you man, massive thanks to do it easier.

  • @lesptitsoiseaux
    @lesptitsoiseaux Год назад +1

    Greetings from Vancouver :) Big thank you for this video. As a fintec product manager who uses metabase and its wisiwig (scratch for sql), I was limited severely in what I could do (I know some sql but didn't know this). Your video here finally explains how to create variables, I mean, cte or datasets to work with. I'm binge watching your channel now! Cheers and happy new year to you and yours.

  • @Anand-ct8rp
    @Anand-ct8rp 2 месяца назад

    You are the best instructor who explains tough things in a very simple way.
    Appreciate your work..!!!

  • @17stevedrew
    @17stevedrew Год назад +3

    This video on the with clause gave me a solution to a query I have been trying to write for a month. I can't thank you enough. Now the query works as it should and is readable! I had tried various unions, exists, partition statements to isolate some data. It did not work, this did! 😀

  • @rishabh_fitness3273
    @rishabh_fitness3273 9 месяцев назад +1

    i have never seen someone like you to be that perfect in sql ever. hats off taufiq ,god bless you SIR♥

  • @Devdumplings
    @Devdumplings 5 месяцев назад +1

    This is the best video on CTE. Thanks a lot for explaining in a simple way. 🙌

  • @rishabhnagaich5626
    @rishabhnagaich5626 2 года назад +5

    Learning from you each day, my friend. Great content, not only in this video but other SQL videos as well. Keep up the good work!

  • @rajorshi1000
    @rajorshi1000 2 года назад +17

    Such a wonderful explanation. I was always afraid of using WITH clause but after watching this video, I will definitely try to implement the same wherever it's possible. Thanks a lot brother.

    • @techTFQ
      @techTFQ  2 года назад +1

      Glad to hear that buddy

  • @KamalKToronto
    @KamalKToronto 2 года назад +4

    I am obsessed with your channel, I have been working with SQL for so long and I used to run away from window functions but you explain it so nice and clear. I learned by working on it so was never clear on concepts but thank god for your Chanel !

    • @techTFQ
      @techTFQ  2 года назад +1

      Thank you Kamaljeet 🙏🏼
      I am glad to read this comment and happy to know my contents have helped you

  • @kambojiganesh2265
    @kambojiganesh2265 Год назад +1

    Most underrated RUclips channel i have seen, you have rocked all the sql videos man

  • @misterhanwee1030
    @misterhanwee1030 Год назад +2

    Thanks for the generous sharing! Your explanation makes it much easier to grasp than the one i took on Udemy.

  • @sd_d
    @sd_d 3 месяца назад

    Im grateful to you beyond words could express Mr.Thoufiq. Big Salute to you

  • @MS-dp9xx
    @MS-dp9xx 2 года назад +6

    I have watched many SQL videos and I hardly comment. Thank you and appreciate your videos, I found them very beneficial and what makes real difference in your videos is you explain the rational of why we need to use and its pros and cons. They have unexpectedly answered some of the question that I didn't even exist in my mind. Keep up and great work!

    • @techTFQ
      @techTFQ  2 года назад

      Thank you so very much for the amazing feedback :)
      I am so glad you took the time to comment and so glad you like my contents 🙏

  • @arjuntantry7894
    @arjuntantry7894 Год назад +6

    Bro You're an Amazing Teacher. Nobody ever could make learning SQL so simple!.
    Thank You!

  • @hammadyasir2174
    @hammadyasir2174 Месяц назад

    Great Teacher.i never seen a person who explain complex stuff in a easy and simple way.

  • @_logicking
    @_logicking Месяц назад

    Awesome. I use with all the time. As a data analyst I write for single use code so I often don’t write very efficiently. Using a with clause to get the initial dataset to just look a little bit more like the target dataset and then using it again until I incrementally achieve the target dataset is pretty much my solution. Almost every time.

  • @Nikhilg-rs7iv
    @Nikhilg-rs7iv Месяц назад

    thank you so much man i was just blindly copy pasting the cte queries without understanding how it actually works and I am glad to find this channel, bro explained the concept like we explain everything to 1 year old babies

  • @pritompaul4249
    @pritompaul4249 Год назад +3

    You're the best SQL instructor in RUclips. Hoping for the best and keep up this mighty work.

  • @jhonsen9842
    @jhonsen9842 Год назад

    Undoubtly your course is the best resource not only in youtube but also whatever available in internet that to be free.

  • @lalithag6511
    @lalithag6511 2 года назад

    Thank you. You explained very clearly and also in detail at the same time. Glad I found this video.

  • @mayurshinde7443
    @mayurshinde7443 2 года назад +1

    Best video!!!! 100x better than all univ professors combined! Such a clear cut explanation!

    • @techTFQ
      @techTFQ  2 года назад +1

      Glad you liked it

  • @bandiashokyadav3312
    @bandiashokyadav3312 10 дней назад

    Exllent Learning Platform for Advanced SQL

  • @mohammedshahil4898
    @mohammedshahil4898 2 года назад +17

    Was always feeling quite hard to get hold of this With clause. Thanks a lot for making it so easy to understand✌️ As usual loved the way you explained the whole thing🙌🏻

    • @techTFQ
      @techTFQ  2 года назад +1

      Thank you bro ❤️❤️❤️

  • @talknow2859
    @talknow2859 26 дней назад

    I had to go through this 3x to really understand the with clause concept. Thanks a whole bunch 🎉.

  • @womilojuoluwatobi1015
    @womilojuoluwatobi1015 Год назад

    Yea. Best I have watched so far. Thanks for how u convey this information. U crafted!

  • @lprashanth1251
    @lprashanth1251 2 года назад +3

    It's great to start the SQL learning career with your video's.

    • @techTFQ
      @techTFQ  2 года назад

      Thank you Prashanth.. glad you think so

  • @jxon6246
    @jxon6246 5 месяцев назад +1

    Really useful video. Spared me a lot of web research and let me understand the principle that enabled me to execute at a way more complex query.

  • @ndz7372
    @ndz7372 Год назад

    Thanks a bunch for putting this out - this was super duper helpful!

  • @naren254
    @naren254 2 года назад

    you explained in very simple way so it is best video so far I ever seen on SQL.

  • @user-kd2wb3si4e
    @user-kd2wb3si4e 2 года назад +1

    What I mainly like about you is, the project based explanations you provide. Its now making alot of sense to me after watching your videos. Thanks. Please more and more of project based explanation of SQL.

    • @techTFQ
      @techTFQ  2 года назад

      Thank you for the feedback 🙏🏼
      So glad to read this ☺️

  • @sogolll
    @sogolll Год назад +2

    Thank you for this video, I was using CTE's only for deleting duplicates and I was so confused when I should use these and what they are for. You explained it so well. I'm glad I finally understand CTE.

    • @techTFQ
      @techTFQ  Год назад +1

      glad this helped

  • @keifer7813
    @keifer7813 2 года назад +1

    5 minutes in and I already understand more than any other video on this topic. Thanks man

    • @techTFQ
      @techTFQ  2 года назад

      Awesome.. glad this helped

  • @vishwas5344
    @vishwas5344 Год назад +1

    GREAT EXPLANATION AND IS BETTER THAN OTHER CHARGEABLE INSTITUTIONS

  • @tonysun203
    @tonysun203 2 года назад

    Just like the way you explain the concept so that it is more easier to understand. Thanks again for your video. I have learnt a lot.

  • @SagarKumar-db2xy
    @SagarKumar-db2xy 2 года назад +3

    Damn, best and underrated channel I have seen till now. Crisp, to the point and just useful information...

    • @techTFQ
      @techTFQ  2 года назад

      Thank you Sagar once again for all the support and always liking my content 🙏🏼
      Am so glad, I am able to add some value through these videos 🙂

  • @RohithS-ig4hl
    @RohithS-ig4hl Год назад

    Really an excellent way to explain with clause. Thank you for this!

  • @mullaipugazhendi3236
    @mullaipugazhendi3236 11 месяцев назад +1

    CLEAR AND SIMPLE. LOVELY EXPLANATION

  • @kalyanchakravarthyc-xo6ub
    @kalyanchakravarthyc-xo6ub Год назад +1

    YOU ARE THE BEST TUTOR.

  • @Shillu9999
    @Shillu9999 Год назад +1

    Really Helpful and Very Good to understand SQL especially for Beginners

  • @vikramarora5170
    @vikramarora5170 2 года назад +4

    THIS IS THE WAY ONE SHOULD TEACH... TOO GOOD

    • @techTFQ
      @techTFQ  2 года назад +1

      Thank you very much Vikram 🙏🏼
      Appreciate your feedback ☺️

  • @blindhydra
    @blindhydra 2 года назад +1

    Thanks for the video, needed to understand this for my job. Very well explained and the way you give the lecture is excellent!

    • @techTFQ
      @techTFQ  2 года назад

      Thank you so much 🙏🏼
      Glad you liked it..

  • @StrangerBaba86
    @StrangerBaba86 2 года назад +1

    Excellent.. using cte also get rid of temp tables or reference tables..also bear in mind that memory should be enough to hold data .. since it's being referenced later.

  • @bananaboydan3642
    @bananaboydan3642 Год назад +1

    Best video i have sen for this concept!

  • @programmingintheshadows4456
    @programmingintheshadows4456 Год назад +1

    what i felt about the video ? your a god dude ❤, thats what i felt

  • @udaykumar-dl6ux
    @udaykumar-dl6ux Год назад

    Thanks for explaining the concepts from a very basic. It really helped me to understand easily.

  • @USA_to_Asia_in_2024
    @USA_to_Asia_in_2024 Месяц назад

    Thank you so much.
    God is so good as you are a blessing with your lessons.

  • @chikotty
    @chikotty 2 года назад +1

    By far the best material I ever met. Thank you!

    • @techTFQ
      @techTFQ  2 года назад

      Thank you Coma. glad you liked it :)

  • @webfly
    @webfly Год назад

    Helps a Lot!!! thanks from Brazil

  • @swarnalathak88
    @swarnalathak88 9 месяцев назад

    GRATITUDE for all the videos in sql complex queries.

  • @pzuazu8636
    @pzuazu8636 2 года назад +2

    Thank you for your brilliant examples and explanations, you are doing an excellent job.

    • @techTFQ
      @techTFQ  2 года назад

      Thank you so much 🙏🏼
      Happy to know this helped you

  • @sahilgogna3393
    @sahilgogna3393 2 года назад +1

    I was getting hopeless with my sql learning. This channel gave me a new direction. This is the first video that I watched. Now I am going to practice from your sql practice playlist.

    • @techTFQ
      @techTFQ  2 года назад

      Awesome Sahil 👌
      Very happy to read this comment.. I am glad this helped you

  • @mysubscription104
    @mysubscription104 2 года назад +1

    Simple but elegant explanation about WITH clause, thanks for creating these videos and sharing your knowledge .....

    • @techTFQ
      @techTFQ  2 года назад

      Glad you liked it 🙏🏼

  • @AkashPremaraj
    @AkashPremaraj 2 года назад +8

    What an explanation 🔥 This is the most simplest explanation I have ever seen in my career. Thank You so much ❤️
    Please make a video on table indexes!

    • @techTFQ
      @techTFQ  2 года назад +1

      Thank you Akash 🙏🏼
      Glad you liked it ..
      Will consider a video on index in the near future

    • @govindmall4731
      @govindmall4731 Год назад

      @@techTFQ yes please...

  • @ashishmhatre2846
    @ashishmhatre2846 2 года назад +1

    Please continue doing this ! Great tutorial Thank you so much !!

    • @techTFQ
      @techTFQ  2 года назад

      Your welcome Ashish
      Glad this helped

  • @sreenivasuluetela3201
    @sreenivasuluetela3201 Год назад

    super bro, got clear idea on CTE and its applications, Thanks a ton !!

  • @saipradyumna9371
    @saipradyumna9371 Год назад

    Your SQL YT videos has helped me a lot, thank you

  • @MrManojshetty
    @MrManojshetty 2 года назад +1

    All your contents are straight to the point. No nonsense . I checked your blog it was very useful. Thanks keep up the good work

    • @techTFQ
      @techTFQ  2 года назад

      Thank you Manoj 🙏🏼
      It’s so nice to see such positive feedback 🙂
      So glad you liked the content 🙂

  • @sudhanshukrsingh1928
    @sudhanshukrsingh1928 2 года назад +1

    Never used it. Fantastic proof of concept. Will be using it as a cursor in future.

    • @techTFQ
      @techTFQ  2 года назад

      Thank you Sudhanshu 🙏🏼
      Yes it’s a very very useful concept

  • @davidloewen5528
    @davidloewen5528 2 года назад +1

    I use CTE in almost every production query I write. After the first sub query, I always format the alias name with leading comma as
    , as (
    Select ….
    )
    , as (
    --
    The reason for this is when revisiting the query a year later, I just need to comment out any alias name row and highlight from top to and including the query with the alias commented out, and examine any intermediate results. Excellent technique when a business person wants to see how something is being generated. Use white space above and below these lines. My tip? Format for functionality, use leading commas.

  • @shivakumarediga473
    @shivakumarediga473 Год назад

    Randomly I was scrolling RUclips ... saw your channel and saw this video it's amazing! the way of explanation is perfect..glad to see your videos Macha Tqu and do more videos on dynamic queries, SP debugging 😊

  • @snehalgajbhiye1454
    @snehalgajbhiye1454 25 дней назад

    What an amazing explaination..it really helps me to understand SQL well ☺Thank you so much sir🌺🌸

  • @Mustafa-099
    @Mustafa-099 11 месяцев назад

    This is soooo helpful!! Thank you Thoufiq, you are a God sent :D

  • @asmacollectiononlineshoppi6341
    @asmacollectiononlineshoppi6341 2 года назад +1

    Explain everything so clearly with all of the explanation that helped a lot to understand the concepts Better. Thanks a lot for such valuable videos.👍

    • @techTFQ
      @techTFQ  2 года назад

      Your welcome Asma
      Glad this helped

  • @homelessguy4143
    @homelessguy4143 Год назад +1

    You are the best no one explained with clause better than you.

    • @techTFQ
      @techTFQ  Год назад

      thank you so much :)

  • @sumitkashyap4744
    @sumitkashyap4744 Год назад

    I love the way you are explaining the complex things...please make some more videos on advance sql

  • @unpluggedsaurav3186
    @unpluggedsaurav3186 2 года назад +1

    you are a gem sir, as soon as I crack my data analyst, I am gonna donate good part of my first month salary to channel, #gratitude

    • @techTFQ
      @techTFQ  2 года назад

      Thank you Saurav :)
      Appreciate your generosity. And wishing you all the best

  • @AshwaniAngrish
    @AshwaniAngrish 2 года назад +1

    exactly what i was looking for . Great work!

    • @techTFQ
      @techTFQ  2 года назад

      Thank you 🙏🏼

  • @surbhisingh3282
    @surbhisingh3282 2 года назад +2

    Thank you so much for providing such a fabulous content.. I am totally obsessed with your channel.

    • @techTFQ
      @techTFQ  2 года назад

      Thank you Surbhi 🙏🏼
      I am glad you liked it

  • @kesiaselestin8110
    @kesiaselestin8110 2 года назад +1

    You have made it so easy to understand the with clause. Thank You!

    • @techTFQ
      @techTFQ  2 года назад

      Your welcome 🙏🏼
      Glad this helped

  • @ramyajaishankar6040
    @ramyajaishankar6040 2 года назад +2

    You're a saviour ❤🙂
    Please make more SQL videos on how to solve and write complex queries

    • @techTFQ
      @techTFQ  2 года назад

      Thank you Ramya!
      Will do and glad this helped..

  • @tanmaysinghi1868
    @tanmaysinghi1868 2 года назад +1

    you explained this so well, and made it feel easy, thanks a ton TFQ !!

    • @techTFQ
      @techTFQ  2 года назад

      Your welcome bro

  • @zonziriguekonate1066
    @zonziriguekonate1066 Год назад

    Thank you so much for this course.
    powerful 👍

  • @philmastronardi
    @philmastronardi Год назад

    So clear. Thanks for sharing. This was very useful.

  • @anaskhan4841
    @anaskhan4841 2 года назад +2

    Your videos are next level. I couldn't find this quality even in paid courses on udemy

    • @techTFQ
      @techTFQ  2 года назад +1

      Thank you very much Anas 🙏🏼

  • @wintermorillo6567
    @wintermorillo6567 Год назад +1

    Thank you very much for the explanation, everything was very clear, I have seen it before, but it was very interesting watching this video and getting a detailed example to get a better understanding.

    • @techTFQ
      @techTFQ  Год назад

      Glad it was helpful!

  • @user-ry6ed1xq4f
    @user-ry6ed1xq4f 10 месяцев назад +1

    sir u are great,ur learning procedure awasome

  • @varunsawhney8
    @varunsawhney8 2 года назад +4

    Great Work is simplifying complex things simpler. Thank You for doing that.
    Best wishes...

    • @techTFQ
      @techTFQ  2 года назад

      Your welcome 🙏🏼

  • @khushboogupta1529
    @khushboogupta1529 Год назад

    ThankYou Sir , Your tecahing skills are awesome.

  • @qianli2696
    @qianli2696 4 месяца назад

    Thank you for providing the helpful sql video.

  • @amosmunezero9958
    @amosmunezero9958 2 года назад +1

    Great explanation, one of the best I have seen. Thank you sir!

    • @techTFQ
      @techTFQ  2 года назад

      Glad you liked it

  • @becharoussama4676
    @becharoussama4676 8 месяцев назад

    Best One to show how really CTEs work and the difference between them and subqueries. Nice Job

    • @techTFQ
      @techTFQ  6 месяцев назад +1

      thank you

  • @sukh9209
    @sukh9209 2 года назад +1

    Simple and clear explanation for usage of CTE. Thanks

    • @techTFQ
      @techTFQ  2 года назад

      Glad you liked it

  • @user-oh2py4jn8h
    @user-oh2py4jn8h 2 года назад +1

    thx for the videos, they really help to understand how sql querries could be written!

    • @techTFQ
      @techTFQ  2 года назад

      Thank you 🙏🏼
      Glad this helped

  • @pankajroy.4
    @pankajroy.4 2 года назад +1

    Quality content 🔥We need these kind of videos regularly...❤️

    • @techTFQ
      @techTFQ  2 года назад +1

      Thank you Roy 🙏🏼

  • @engalibadouin5222
    @engalibadouin5222 2 года назад +2

    thanx techTFQ for your simplicity.

    • @techTFQ
      @techTFQ  2 года назад +1

      Thank you bro 🙏🏼
      Glad you liked it 🙂

  • @anandtalawar2897
    @anandtalawar2897 2 года назад +1

    it was really amazing explanation! since i started fallowing you're videos i can easily say that i have better understnading of how sql works, thank you so much Bro for you're efforts!!!

    • @techTFQ
      @techTFQ  2 года назад

      Glad to hear that Anand ☺️

  • @AbdelkrimJa
    @AbdelkrimJa 2 года назад +1

    Thank you very much for this simple and informative course. it helped me solve part of my problem with a database. I am still trying to complete my query of statistics.

    • @techTFQ
      @techTFQ  2 года назад

      I am glad to hear that bro

  • @mikapedrosa
    @mikapedrosa Год назад

    Thanks! It was very helpful!

  • @akshatadhadambe5812
    @akshatadhadambe5812 Месяц назад

    Awesome video and perfect explanation thankyou soo much

  • @RiPp1er
    @RiPp1er Год назад +1

    Nice explanation of CTEs!

  • @Peak_Ideas
    @Peak_Ideas Год назад

    Thanks for such a clear explanation.

  • @sivapalaniappan701
    @sivapalaniappan701 24 дня назад

    great lecture..keep posting more videos ..congrats

  • @balsciviltrekking860
    @balsciviltrekking860 Год назад

    its very useful sir, explanation are very clear and understanging easily

  • @rajeshd9925
    @rajeshd9925 Год назад

    It's crisp and clear ❤

  • @ctnrandhawa7019
    @ctnrandhawa7019 Год назад

    Your way of teaching and explaining is too good and helpful. keep it up