Thank you very much! The video was extremly helpful. Bravo. I was exactly looking for the same material as explained. Hands down. 🙌
@LearnatKnowstar2 жыл бұрын
Glad it was helpful 🙏
@Beyondhorizons-i5z4 жыл бұрын
Thank you. Very helpful to prepare for the interviews.
@LearnatKnowstar4 жыл бұрын
Thank you
@mahesh843 жыл бұрын
thank you.. this video solved my problem in code :)
@LearnatKnowstar3 жыл бұрын
Thank you
@avinashc81463 жыл бұрын
Thank you so much for videos it was simply superb
@LearnatKnowstar3 жыл бұрын
Thank you
@prashantbhalla30303 жыл бұрын
Thanks a lot ❤️, saved my day 👍
@LearnatKnowstar3 жыл бұрын
Thank you
@fabifs073 жыл бұрын
Thanks a lot, Really helpful my life today.
@LearnatKnowstar3 жыл бұрын
Thanks so much!
@sahameed3 жыл бұрын
Great , Many Thanks. 👍
@LearnatKnowstar2 жыл бұрын
Thank you
@kristyowens22844 жыл бұрын
This is really very helpful.
@LearnatKnowstar4 жыл бұрын
Thank you
@lianyiwang32092 жыл бұрын
Hi, could you explain why not consider both order date on Saturday and Sunday as 1, else 0? Same question on ship date
@sidmylifemyrules3 жыл бұрын
Thanks a lottttt!!!! Really helpful.
@LearnatKnowstar3 жыл бұрын
Thank you!
@viniciusluiz88333 жыл бұрын
Very useful!
@LearnatKnowstar3 жыл бұрын
Thank you
@TwoUpProductions4 жыл бұрын
Very helpful. Thank you so much!
@LearnatKnowstar4 жыл бұрын
Thank you
@kingsleyarisah63543 ай бұрын
Great content
@LearnatKnowstar3 ай бұрын
Thank You!
@rahulganga3274 Жыл бұрын
Super mam your are Great 👍 👌 😀
@LearnatKnowstar Жыл бұрын
Glad it was helpful.
@rahulganga3274 Жыл бұрын
Great 👍
@LearnatKnowstar Жыл бұрын
Glad it was helpful!
@imranpathan83523 жыл бұрын
Nice video mam.. please provide database to work
@jayantirawat8623 Жыл бұрын
Can I get this table create statement and select statement query
@sachingulati9857 Жыл бұрын
Thanks for explaining the concept in such an easy way, However i wanna ask a question: Suppose the orderdate is on saturday or sunday and the delivery day is also same. What do we do in this scenario?
@CaribouDataScience Жыл бұрын
Thanks
@ramakrishnasamala42013 жыл бұрын
well explained
@LearnatKnowstar3 жыл бұрын
Thank you
@surajpatil35793 жыл бұрын
Thank you for this
@lingxu96972 жыл бұрын
Is it easier to use a case and count for this scenario?
@asmitap18633 жыл бұрын
Is there a way to execute this in Impala/Hive?
@LuckyK4 жыл бұрын
thank you. what about Holidays ? what if you have a Date table and also exclude Holidays
@LearnatKnowstar4 жыл бұрын
Having a date table that marks weekends and holidays makes it much easier to implement this requirement as a simple join can determine whether the day is a work day or not.
@alsonncube58314 жыл бұрын
@@LearnatKnowstar Is it possible to do it without the date table?
@LearnatKnowstar4 жыл бұрын
It is possible though not the preferred way.
@LearnatKnowstar4 жыл бұрын
You will need to write a function that identifies the holidays.either by constant dates for ex Christmas always falls on 25th Dec or holidays that fall on a particular day of a week..for ex every 1st Monday of August etc.
@Avengers.1194 жыл бұрын
I need training on data stage with SQL,please provide your contract information
@LearnatKnowstar4 жыл бұрын
We will be announcing the batches soon on our KZbin channel. Stay tuned.
@Farhazh3 жыл бұрын
Thank you soo much very helpful! Just one question where i am stuck from couple of days and not getting a solution. Here by default sql server considers weekend as saturday and sunday, what if i need to calculate no. Of days between 2 dates considering weekend as friday? Request you to kindly help me with the code. Thanks :)
@LearnatKnowstar3 жыл бұрын
Thank you. In this case, you would need to use a Calendar table that identifies the Friday as a holiday. You can then identify the working days and calculate accordingly.
@Farhazh3 жыл бұрын
@@LearnatKnowstar thank you for the prompt response! Was just wondering if you care to explain more about how to progress on it..
@avinashc81463 жыл бұрын
And ma'am can we get any place where we can interact with you
@LearnatKnowstar3 жыл бұрын
You can always post your queries on our KZbin channel
@somiyasaxena14192 жыл бұрын
Hello Ma'am, I really appreciate your work, it's like free videos, and I will learn these things but the biggest problem with me is I'm unable to do it, whether the intermediate course or advanced course. I'm so frustrated that in the end, I will see the answer. I've seen so many videos but I'm unable to do it myself. what to do? is it like for others or it's just with me?
@LearnatKnowstar2 жыл бұрын
Thank you. Try to keep practicing with the datasets provided in the videos. Even after seeing the result, try to write the same query yourself again. If you keep practicing, you will soon learn the tricks to solve these queries. But the key is to write the query yourself every time you watch a video. Hope it helps 👍
@vibhanshudongre3 жыл бұрын
Can you let us know from where we can download these databases for practice ?
@LearnatKnowstar3 жыл бұрын
You can download sample databases. You can refer this video tutorial - kzbin.info/www/bejne/pJTNYXh6r96SqNk
@KajalSharma163 жыл бұрын
It is not working for TEradata (datediff function)
@KajalSharma163 жыл бұрын
ALTER TABLE mytable ADD difference_dt as DATEDIFF(DAY, start_dt, end_DT ) ; gives an error "Syntax error, expected something like a 'TRANSACTIONTIME' keyword between the 'as' keyword and the word 'DATEDIFF'." or SELECT DATEDIFF(day, start_dt, end_DT) as difference FROM mytable gives error "Syntax error: expected something between '(' and the 'day' keyword." kindly let me know
@LearnatKnowstar3 жыл бұрын
Datediff function is not a valid teradata function. You will need to subtract two days to get the difference. You can refer here docs.teradata.com/r/1DcoER_KpnGTfgPinRAFUw/WdO2taOuHi5IaUk0dEsJTg
@theduck72 Жыл бұрын
Nice
@LearnatKnowstar Жыл бұрын
Thanks
@zainabghassan6322 жыл бұрын
How can we find days between different dates in one column based on user id?
@ngneerin2 жыл бұрын
Will work incorrectly if order date is 2015-01-11 and ship date is 2015-01-25
@sidmishra82522 жыл бұрын
But like from 11 to 24 you have 2 Sunday and 2 Saturday. So, you should take it as total 4 off days
@MangeshBarhatemyav3 жыл бұрын
How calculate last week of year date - next year any date first week date . I tried
@nehakaw76852 жыл бұрын
How to calculate if we only need to skip a Sunday and want to consider monday to saturday as weekdays
@landchennai85493 ай бұрын
alter function ufn_getweekdaysbetweentwodate(@StartDate Datetime, @EndDate datetime) returns int as begin declare @Cnt int select @Cnt = count(1) from generate_series(0,datediff(dd,@StartDate, @EndDate) -1,1) where Datename(dw, @StartDate +Value) not in ('Saturday','Sunday') return @Cnt end declare @StartDate datetime = getdate(), @EndDate datetime = getdate() +10 select @StartDate as StartDate, @EndDate as EndDate,dbo.ufn_getweekdaysbetweentwodate (@StartDate,@EndDate) as WeekDaysbwtwodates
@ishitvasingh9902 Жыл бұрын
I have a doubt, in your final querie's 3rd line of code, if we could have added +1 , would it work? seelct orderdate, shipdate, (datediff(dd, order, shipdate) +1) - ((datediff (ww, orderdate, shipdate) * 2 ) + 1) from sales would it work ? Please do answer
@upanshukumar74722 жыл бұрын
Mam plz explain in hindi also
@LearnatKnowstar2 жыл бұрын
Thank you. Will try to do some Hindi videos in the future 👍
@danieljust2952 жыл бұрын
This is not working solution, works conditionally only.