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.
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);
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
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!
Assalamualaikum taufiq bhai, i have adhd and iv been struggling to learn sql this entire year. I just recently came across your videos and alhamdulillah iv been learning at a rapid pace. I pray that Allah gives you lots of peace and blessings in your life, you have no idea how much you content has helped me Jazakallah
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! 😀
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👌.
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.
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!
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.
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.
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 !
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.
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
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.
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.
believe me.. Now i can able to solve complex queries after following techTFQ. i know still longway to go but i have confidence to solve any kind of questions
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.
Everytime I watch your videos I get tempted to subscribe the channel, later making me feel sad that am already subscribed. Is there anyone here who feel crazy like this ?
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.
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🙌🏻
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.
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.
then it becomes easy...
What if we have to calculate quantity × price first? Does Sum(quantity*price) work?
Yeah your videos are really helping me to understand this course
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);
Sir can you please explain why did you give X as alias and also again avg_sales as alias but confused
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
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!
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 :)
That's correct @ItsReflexes, he is awesome 🙂
Thank you once again Akshay 🙏🏼
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!
Congratulations buddy 💐
I am so happy for your success 👌
All the best 👍
Most underrated UA-cam channel i have seen, you have rocked all the sql videos man
from zero to super hero with you man, massive thanks to do it easier.
Assalamualaikum taufiq bhai, i have adhd and iv been struggling to learn sql this entire year.
I just recently came across your videos and alhamdulillah iv been learning at a rapid pace.
I pray that Allah gives you lots of peace and blessings in your life, you have no idea how much you content has helped me
Jazakallah
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! 😀
Simple but elegant explanation about WITH clause, thanks for creating these videos and sharing your knowledge .....
Glad you liked it 🙏🏼
i have never seen someone like you to be that perfect in sql ever. hats off taufiq ,god bless you SIR♥
Really Helpful and Very Good to understand SQL especially for Beginners
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👌.
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.
🎉Perfect demo bro with easiest and clear explanation🎉
THIS IS THE WAY ONE SHOULD TEACH... TOO GOOD
Thank you very much Vikram 🙏🏼
Appreciate your feedback ☺️
You are the best no one explained with clause better than you.
thank you so much :)
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.
This is the best video on CTE. Thanks a lot for explaining in a simple way. 🙌
GREAT EXPLANATION AND IS BETTER THAN OTHER CHARGEABLE INSTITUTIONS
Simple and clear explanation for usage of CTE. Thanks
Glad you liked it
Best video!!!! 100x better than all univ professors combined! Such a clear cut explanation!
Glad you liked it
Great Teacher.i never seen a person who explain complex stuff in a easy and simple way.
Undoubtly your course is the best resource not only in youtube but also whatever available in internet that to be free.
5 minutes in and I already understand more than any other video on this topic. Thanks man
Awesome.. glad this helped
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!
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 🙏
With query has been clearly explained, thanks for this video
Glad you liked it
CLEAR AND SIMPLE. LOVELY EXPLANATION
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
Thank you Saurav :)
Appreciate your generosity. And wishing you all the best
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.
Glad to hear that buddy
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.
you explained in very simple way so it is best video so far I ever seen on SQL.
what i felt about the video ? your a god dude ❤, thats what i felt
Damn, best and underrated channel I have seen till now. Crisp, to the point and just useful information...
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 🙂
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 !
Thank you Kamaljeet 🙏🏼
I am glad to read this comment and happy to know my contents have helped you
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.
Awesome Sahil 👌
Very happy to read this comment.. I am glad this helped you
It's great to start the SQL learning career with your video's.
Thank you Prashanth.. glad you think so
By far the best material I ever met. Thank you!
Thank you Coma. glad you liked it :)
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
You are the best instructor who explains tough things in a very simple way.
Appreciate your work..!!!
Never used it. Fantastic proof of concept. Will be using it as a cursor in future.
Thank you Sudhanshu 🙏🏼
Yes it’s a very very useful concept
Great Work is simplifying complex things simpler. Thank You for doing that.
Best wishes...
Your welcome 🙏🏼
Exllent Learning Platform for Advanced SQL
Best One to show how really CTEs work and the difference between them and subqueries. Nice Job
thank you
its very useful sir, explanation are very clear and understanging easily
I had to go through this 3x to really understand the with clause concept. Thanks a whole bunch 🎉.
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.
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.
Thank you for the feedback 🙏🏼
So glad to read this ☺️
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.
glad this helped
thanx techTFQ for your simplicity.
Thank you bro 🙏🏼
Glad you liked it 🙂
Yea. Best I have watched so far. Thanks for how u convey this information. U crafted!
Best video i have sen for this concept!
Great Lecture Sir
Thank you so much.
God is so good as you are a blessing with your lessons.
Bro your videos are very helpful.
Keep sharing knowledge..
Thanks
Thank you Shafique 🙏🏼
Will do my best ..
YOU ARE THE BEST TUTOR.
Sir plzzz bring more videos like this , your voice has tone that helped me lot . Thank you so much
Thank you Harcharan 🙏🏼
Glad to know my voice is clear enough ☺️☺️
Will make more videos
Im grateful to you beyond words could express Mr.Thoufiq. Big Salute to you
sir u are great,ur learning procedure awasome
Please continue doing this ! Great tutorial Thank you so much !!
Your welcome Ashish
Glad this helped
Great Job Bro... Heart fully Appreciating your Knowledge...
Thank you 🙏🏼
What an amazing explaination..it really helps me to understand SQL well ☺Thank you so much sir🌺🌸
believe me.. Now i can able to solve complex queries after following techTFQ. i know still longway to go but i have confidence to solve any kind of questions
Very happy to know that ☺️
Thank you 🙏🏼
thx for the videos, they really help to understand how sql querries could be written!
Thank you 🙏🏼
Glad this helped
Nice explanation of CTEs!
GRATITUDE for all the videos in sql complex queries.
You have made it so easy to understand the with clause. Thank You!
Your welcome 🙏🏼
Glad this helped
Thank you for your brilliant examples and explanations, you are doing an excellent job.
Thank you so much 🙏🏼
Happy to know this helped you
Nice simple explanation - thank you!
You're welcome!
super bro, got clear idea on CTE and its applications, Thanks a ton !!
Thank you so much for providing such a fabulous content.. I am totally obsessed with your channel.
Thank you Surbhi 🙏🏼
I am glad you liked it
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.
Glad it was helpful!
Your way of teaching and explaining is too good and helpful. keep it up
thanks toufiq..you explain it in detail...
Thank you bro
Easy to folllw. keep posting more such concepts
Thank you Shikha 🙏🏼
Really an excellent way to explain with clause. Thank you for this!
Thanks for the generous sharing! Your explanation makes it much easier to grasp than the one i took on Udemy.
Your SQL YT videos has helped me a lot, thank you
Thank You for this video...very well explained
Glad you liked it
All your contents are straight to the point. No nonsense . I checked your blog it was very useful. Thanks keep up the good work
Thank you Manoj 🙏🏼
It’s so nice to see such positive feedback 🙂
So glad you liked the content 🙂
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.👍
Your welcome Asma
Glad this helped
So clear. Thanks for sharing. This was very useful.
Everytime I watch your videos I get tempted to subscribe the channel, later making me feel sad that am already subscribed. Is there anyone here who feel crazy like this ?
haha awesome Nibin :D
Thanks a lot
This is soooo helpful!! Thank you Thoufiq, you are a God sent :D
Really thanks bro, your explanation is awesome, It is like a spoon feeding to a born baby.
Bro You're an Amazing Teacher. Nobody ever could make learning SQL so simple!.
Thank You!
Keep it up like this content. thanks a lot my brother tofiq.
Your welcome bro
Glad you liked it
Good job
The best video ever speaking about with clause
Thanks:)
ThankYou Sir , Your tecahing skills are awesome.
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.
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🙌🏻
Thank you bro ❤️❤️❤️
Tq, I learnt something different new thing from this video. Very helpful👌
My pleasure 😊
Thank your video, Such a wonderful explanation
Glad you liked it
Thanks for the video, needed to understand this for my job. Very well explained and the way you give the lecture is excellent!
Thank you so much 🙏🏼
Glad you liked it..
شكراً جزيلا أخ توفيق . بارك الله بك
Your welcome brother
very informative 👏 Thankyou for your effort behind this video.
Thank you. You explained very clearly and also in detail at the same time. Glad I found this video.
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.
thanks for explaining everything with this simplicity
Well explained and easy to understand. Thank you
Thank you so much for this course.
powerful 👍
Thank you for providing the helpful sql video.