Тёмный

Date Functions in SQL | Interview Questions on DATE Functions | DATEPART, DATEADD,DATEDIFF Functions 

Ankit Bansal
Подписаться 114 тыс.
Просмотров 38 тыс.
50% 1

In this video we will talk about date functions in sql. Date functions are very powerful and easy to use. We will talk about 3 most important functions:
datepart
datediff
dateadd

Опубликовано:

 

20 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 126   
@ashwanibhati1607
@ashwanibhati1607 Год назад
Create both tables shown in video by using these two codes /*table 1*/ DROP TABLE IF EXISTS customer_orders; create table customer_orders ( order_id integer, customer_id integer, order_date date, ship_date date); insert into customer_orders values(1000,1,cast('2022-01-05' as date),cast('2022-01-11' as date)) ,(1001,2,cast('2022-02-04' as date),cast('2022-02-16' as date)) ,(1002,3,cast('2022-01-01' as date),cast('2022-01-19' as date)) ,(1003,4,cast('2022-01-06' as date),cast('2022-01-30' as date)) ,(1004,1,cast('2022-02-07' as date),cast('2022-02-13' as date)) ,(1005,4,cast('2022-01-07' as date),cast('2022-01-31' as date)) ,(1006,3,cast('2022-02-08' as date),cast('2022-02-26' as date)) ,(1007,2,cast('2022-02-09' as date),cast('2022-02-21' as date)) ,(1008,4,cast('2022-02-10' as date),cast('2022-03-06' as date)) ; SELECT * FROM customer_orders; /*table 2*/ DROP TABLE IF EXISTS customer; create table customer ( customer_id integer, customer_name VARCHAR(10), gender VARCHAR(1), dob date); insert into customer values (1,'Rahul','M',cast('2000-01-05' as date)) ,(2,'Shilpa','F',cast('2004-04-05' as date)) ,(3,'Ramesh','M',cast('2003-07-07' as date)) ,(4,'Katrina','F',cast('2005-02-05' as date)) ,(5,'Alia','F',cast('1992-01-01' as date)) ; SELECT * FROM customer;
@viveknegi7253
@viveknegi7253 Год назад
If the number of days to ship is 6 days, then this query will give 6-(2*1)=4 days as working days. But it can be possible that there is only one weekend in these 6 days then correct answer will be 6-1=5 days. So, I feel there should another way to reduce weekends.
@ritikajaiswal3824
@ritikajaiswal3824 2 года назад
The way you solve interview questions is just mind blowing. I think you should keep making more videos on interview questions. It's a gem
@ankitbansal6
@ankitbansal6 2 года назад
Sure. Thank you 😊
@ls47295
@ls47295 Год назад
Appreciated your efforts. I really liked the way of explanation. Tried to solve the question asked: select current_date(), dateadd(days,6,current_date()) AS POST_DATE /*Date After adding 6 days*/ ,datediff(week,current_date(),POST_DATE) AS WEEK /* Week differnece between postdate and current_Date */ ,dateadd(days,2*week,POST_DATE) AS POST_DATE_WITH_WEEKDAYS_ONLY /* Add additional days based on no weeks difference */ ;
@My-Research
@My-Research Год назад
Randomly found your channel super explanation. You are The King 👑 in SQL.
@ankitbansal6
@ankitbansal6 Год назад
Welcome aboard!
@idhwanibhatt
@idhwanibhatt 2 года назад
Found your channel today on LinkedIn and checked out. Just wanna say what an amazing initiative you have taken Ankit to get us introduced with Industry Interview questions. Want more such Interview Question videos along with Leetcode problems.
@Iampurankandpal
@Iampurankandpal 2 года назад
Same here. I also found his channel on linkedin. A big thanks to you bro for such a great work you are doing.
@ankitbansal6
@ankitbansal6 2 года назад
Thank you so much. You made my day 🙂
@tupaiadhikari
@tupaiadhikari 2 года назад
Inspired From Karan Gupta's Post ``` SELECT *, CASE WHEN WEEKDAY(ship_date)=5 THEN DATE_ADD(ship_date, INTERVAL 2 DAY) WHEN WEEKDAY(ship_date)=6 THEN DATE_ADD(ship_date, INTERVAL 1 DAY) ELSE ship_date END AS newShipDate FROM customer_order;
@rishav144
@rishav144 Год назад
perfect 🔥
@TheVaibhavdang
@TheVaibhavdang Год назад
Solution for adding the days in respect to customerorders table with cte as ( Select orderid as "orderid",customerid as "customerid",order_date as "order_date" ,ship_date as "ship_date",DATEDIFF(day,order_date,ship_date) as days_to_ship, DATEDIFF(week,order_date,ship_date) as week_between, DATEDIFF(day,order_date,ship_date) - 2*DATEDIFF(week,order_date,ship_date) as business_days from customerorders) Select DATEADD(day,cast(c.business_days as int),c.ship_date) as order_date_addition_to_businessdays from cte c
@nishabansal2978
@nishabansal2978 2 года назад
Very useful videos with scenario, keep it up
@ankitbansal6
@ankitbansal6 2 года назад
Thank you 😊
@lokeshsharma-qy4vu
@lokeshsharma-qy4vu Год назад
Concern on the logic to get business days Case : If order was placed on monday and delivered on Wednesday then by your logic business days would be 0 Because different between dates : 2 Difference in weeks : 1
@mohammadmobashshir5378
@mohammadmobashshir5378 Год назад
week diff will be 0 if it is in same week
@keifer7813
@keifer7813 2 года назад
9:30 For the first row, how are we sure that there were 2 weekend days in the 6 days it took to ship? It could've been Sunday to Friday, therefore only one weekend day. Please clarify, thanks
@ankitbansal6
@ankitbansal6 2 года назад
Good question. Assumption is order date and ship date will always be weekdays .
@adityeshchaturvedi6553
@adityeshchaturvedi6553 2 года назад
Loved every piece of it. Crystal clear explanation!
@ankitbansal6
@ankitbansal6 2 года назад
🙏
@gajanantiwari6297
@gajanantiwari6297 Год назад
Hi @ankitbansal, these functions dont work in Oracle. It is only valid in mysql. But still Thanks for clearing the doubts. Really helpful
@ankitbansal6
@ankitbansal6 Год назад
I am using SQL server
@gauravsharma2223
@gauravsharma2223 Год назад
Bro you are a GEM. thank you for making these videos. i solved some of the trickiest questions only after watching your videos.🤘🤘
@ankitbansal6
@ankitbansal6 Год назад
Awesome 😊
@AbhishekKumar-bh6is
@AbhishekKumar-bh6is 2 года назад
You are doing great bro please post everyday one question answer
@ankitbansal6
@ankitbansal6 2 года назад
Thank you 😊
@akp7-7
@akp7-7 2 года назад
@@ankitbansal6please pin the create and insert statement. it will help others i got it from comments
@2412_Sujoy_Das
@2412_Sujoy_Das 9 месяцев назад
Sir, just a small Question..... Do these functions work only if the dates are in YYYY-MM-DD format???
@ankitbansal6
@ankitbansal6 9 месяцев назад
The only condition is the data type of the column should be date or datetime or timestamp .
@2412_Sujoy_Das
@2412_Sujoy_Das 9 месяцев назад
@@ankitbansal6 ok
@2412_Sujoy_Das
@2412_Sujoy_Das 9 месяцев назад
ok @@ankitbansal6 sir,,,, Just one more thing...... I used a lag function (in Y-O-Y growth rate question in DataLemur website) and didn't use an order by inside the window. But to my surprise when I used the ORDER BY clause outside, it affected the window function. Is it possible or it happened due to something else?
@ankitbansal6
@ankitbansal6 9 месяцев назад
@@2412_Sujoy_Das not possible
@agraj5608
@agraj5608 2 года назад
Assuming the business days to add is stored in a column named business_days Select case when datediff(week,order_date,dateadd(day,business_days,order_date) ) > 0 Then dateadd(day,business_days+2*datediff(week,order_date,dateadd(day,business_days,order_date) ) ,order_date) else dateadd(day,business_days,order_date) End as ship_date
@ankitbansal6
@ankitbansal6 2 года назад
Looks good. did you try run it?
@agraj5608
@agraj5608 2 года назад
No Ankit haven't run it. :) Was looking at the video late in the night while going to bed.
@amanranjanverma
@amanranjanverma 2 года назад
The query is correct, but it will not work for one of the corner cases where: order_date(1st, Wednesday) and we are adding 7 business dates to it. Initially, it looks like it has one weekend so the shift will be by 2 days but originally this 2 day shift will lead to another 2-day shift, in total 4 days. 1st(wed) + 7 = 8th(Thrusday) -> 1 weekend in between so, 1st(wed) + 2 + 7 = 10th(Saturday) -> 1 more weekend so, 10th(Sat) + 2 = 12th(Monday) Python: stackoverflow.com/questions/12691551/add-n-business-days-to-a-given-date-ignoring-holidays-and-weekends-in-python add_business_date(datetime.date(2022,6,2), 7) Result: datetime.date(2022, 6, 13)
@amanranjanverma
@amanranjanverma 2 года назад
@@ankitbansal6 do you have a solution video for the same?
@ririraman7
@ririraman7 2 года назад
second way : select case when datepart(weekday,getdate()) in (1,7) then dateadd(day,6,getdate()) else dateadd(day,7,getdate()) end
@gameply347
@gameply347 Месяц назад
how does it works .
@idwtv534
@idwtv534 Год назад
sir if a product is ordered on 3rd jan 2022 but got shipped on 13th jan 2022 i.e. 10 days it will be considered 2 weeks and we will subtract 2 X 2 = 4 as weekends by there is only one sat sun between 3rd jan 2022 to 13th jan 2022
@kanchankumar3355
@kanchankumar3355 2 года назад
Helpful.. great explanation
@ankitbansal6
@ankitbansal6 2 года назад
Thank you 😊
@mohit3300
@mohit3300 Год назад
thank you very much, sir.. please create a separate playlist that consists of all your videos that are not in your previous playlists.....thank you in advance, really helpful.
@sabyasachiadhikary7138
@sabyasachiadhikary7138 Год назад
Thank you very much Ankit sir for the video , Really helpful.
@ankitbansal6
@ankitbansal6 Год назад
Keep watching
@ajitkumarraut4979
@ajitkumarraut4979 2 года назад
with datedifft as(select DATEadd(day,7,'2022-01-23')as dateq) ,diff as(select DATEDIFF(week ,'2022-01-23',(select dateq from datedifft))as dater) select (select dateq from datedifft)+2*(select dater from diff)
@theraizadatalks14
@theraizadatalks14 Год назад
The Same logic I've implemented: declare @today_date date ,@start_date date set @today_date = '2022-01-23' Select @today_date as 'todayDate', dateadd(day,2*datediff(week,@today_date,dateadd(day,7,@today_date)) ,dateadd(day,7,@today_date)) as '7days_ahead_without_weekend'
@story_teller_Is
@story_teller_Is Год назад
but that is not a correct approach to find business days, lets say the we have 12 days gap, and it is starting from Saturday, then in 12 days of gap there will be 2 Saturdays and 2 sundays, that way we need to subs 4.
@wanderwithsingh
@wanderwithsingh 7 месяцев назад
Agreeeee
@Blessy_7777
@Blessy_7777 3 месяца назад
Dateadd( day, datediff(week,order_date,dateadd(day, business_day,ordered)*2+datediff(day,order_date,dateadd(day, business_day,order_date), order_date ) as ship_date From customers
@swetasuman4498
@swetasuman4498 2 года назад
what if the difference between order date and ship date are 3days? Then the business days calculation will fail
@ankitbansal6
@ankitbansal6 2 года назад
Why?
@aishashaik5667
@aishashaik5667 2 месяца назад
select case when date_part(dayofweek,sysdate-4) >=0 and date_part(dayofweek,sysdate-4)
@Ashu23200
@Ashu23200 3 месяца назад
with cte as ( SELECT *, datename(DW,ship_date) as nameofthe_day FROM customer_orderss ) select order_id,customer_id,order_date,ship_date,nameofthe_day, case when nameofthe_day= 'Sunday' then datename(dw,dateadd(day,1,ship_date)) when nameofthe_day= 'Saturday' then datename(dw,dateadd(day,2,ship_date)) else nameofthe_day end as busi_day from cte
@ramyapotnuru5079
@ramyapotnuru5079 2 года назад
Hi Ankit thanks for this video may I know in which video you provided the solution
@ankitbansal6
@ankitbansal6 2 года назад
Have not provided the solution yet. Will plan to publish soon.
@ratneshraj4653
@ratneshraj4653 2 года назад
@@ankitbansal6 please provide the solution
@ajichacko6803
@ajichacko6803 Год назад
--Assignment Question select case when DATEPART(weekday,'2022-12-26')IN(7) then DATEADD(day,10,'2022-12-26') when DATEPART(weekday,'2022-12-26')IN(5,6) then DATEADD(day,11,'2022-12-26') ELSE DATEADD(day,9,'2022-12-26') END as date_add_7
@prateeksingh906
@prateeksingh906 28 дней назад
How about this query where we consider order date can be a weekend and we use a temp_date and update orderdate to temp date when saturday 2 days added and when sunday 1 day is added now we follow the same thing; WITH cte AS ( SELECT *, CASE WHEN DATEPART(WEEKDAY, order_date) = 7 THEN DATEADD(DAY, 2, order_date) WHEN DATEPART(WEEKDAY, order_date) = 1 THEN DATEADD(DAY, 1, order_date) ELSE order_date END AS Temp_date FROM customer_orders ), cte2 AS ( SELECT *, DATEDIFF(DAY, Temp_date, ship_date) AS days_difference, DATEDIFF(WEEK, Temp_date, ship_date) AS weeks_difference FROM cte ) select *,days_difference-2*weeks_difference as Business_days from cte2
@pavitrashailaja850
@pavitrashailaja850 2 года назад
Nice videos u make!🙏🏻 thank u
@ankitbansal6
@ankitbansal6 2 года назад
Thanks 🙏
@sahilummat8555
@sahilummat8555 Год назад
Hello Sir , Can you please make a video as to how to approch the problem . Like how to break it in parts and then solve . Some guidance on this would be really helpful
@datascienceenthusiast3964
@datascienceenthusiast3964 Год назад
if you want to see how to break down into smaller parts and approach then you should go through this series ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-jDx3BqrLmjk.html I am also going through the above series apart from this ..
@yatinshekhar787
@yatinshekhar787 Год назад
7/141 Hi sir, How to count age in MYSQL coz In SQL Server , datediff( ) takes three parameters but in MYSQL it only takes two parameter that are date , so when I am using datediff( ) it is giving me no. of days and then I have to divide it with 365 , to get the date Is their any other alternative? Thanks.
@praneethveeramachaneni6672
@praneethveeramachaneni6672 7 месяцев назад
use timestampdiff() date function.
@vishnujatav6329
@vishnujatav6329 2 года назад
Useful
@danish9191
@danish9191 Год назад
Here is my solution my MYSQL: adding 7 day = Order_date + 7 Days of delivery date select *, case when dayname(order_date) ='Saturday' then date_add(order_date,interval 10 DAY) when dayname(order_date) in ('Sunday','Monday','Tuesday','Wednesday') then date_add(order_date,interval 9 DAY) when dayname(order_date) in ('Thursday','Friday') then date_add(order_date,interval 11 DAY) else order_date END business_day from customer_orders;
@mmmf23
@mmmf23 Год назад
Hi Ankit, Table A Col1 col2 A. 1 B. 2 C. 3 D. 4 E. 5 Output: Col1 col2 B 1 A 2 D 3 E 4 E. 5 How to achieve this using SQL
@ankitbansal6
@ankitbansal6 Год назад
What's the logic here ?
@Freakouts_and_found_Insane
@Freakouts_and_found_Insane 2 года назад
Thank you sir ❤️❤️
@bharatghumoblog970
@bharatghumoblog970 6 месяцев назад
select *, Datediff(day,order_date,ship_date) - 2*Datediff(week,order_date,ship_date)+2 business_days_added
@Ankit-rv2my
@Ankit-rv2my 5 месяцев назад
declare @n int; set @n=3; with leaddate as (select mydate, lead(mydate,@n) over(order by mydate) as three_later_date from dates where datepart(weekday,mydate) not in(1,7) ) select mydate,three_later_date from leaddate where mydate='2024-03-26'
@readname4698
@readname4698 Год назад
HI Ankit, Can you please let us know if it is in weekend how to proceed further?
@ajaylandge5356
@ajaylandge5356 5 месяцев назад
Here is my assignment. I have added 10 days in order_date column and calculated the actual business days to ship. select *, DATEADD(day, 10, order_date) as Added_ten_days, DATEDIFF(week, order_date, DATEADD(day, 10, order_date)) as Difference_of_week, DATEDIFF(day, order_date, DATEADD(day, 10, order_date)) as number_of_days_to_ship, DATEDIFF(day, order_date, DATEADD(day, 10, order_date)) - 2*DATEDIFF(week, order_date, DATEADD(day, 10, order_date)) as Actual_business_days_to_ship from customer_orders_five
@kumarankit7433
@kumarankit7433 6 месяцев назад
sir can you please explain me in simple words the diffrence between count(*) and count(1) ?
@ankitbansal6
@ankitbansal6 6 месяцев назад
Check it out ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-IE8NueisxHY.html
@kumarankit7433
@kumarankit7433 6 месяцев назад
@@ankitbansal6 Thanks sir.. Now its clear..👍
@gokulsutar1696
@gokulsutar1696 9 месяцев назад
I have a Q For Example in the table there is date filed and i want to fetch quarter from date filed it should start from financial quarter as Q1 like this how to get this ?
@ankitbansal6
@ankitbansal6 9 месяцев назад
Datepart function
@Time_Traveller_Dubai
@Time_Traveller_Dubai 9 месяцев назад
Thanks sir
@manojtripathi6144
@manojtripathi6144 Год назад
Please provide a query by which we can get 1st date of every month.
@akp7-7
@akp7-7 2 года назад
Hey Ankit, i am unable to calculate week in mysql using datediff. for week less than 7 days i am getting 0 if i divide datediff by 7. please help
@ankitbansal6
@ankitbansal6 2 года назад
Try this select week('2010-11-18') - week ('2010-10-18');
@akp7-7
@akp7-7 2 года назад
@@ankitbansal6 wow it worked! thanks
@yashikachugh4198
@yashikachugh4198 2 месяца назад
@Ankit_Bansal Sir please provide solution to the assignment, I am getting confused
@SuperMohit95
@SuperMohit95 2 года назад
Can you pls give us the code for creating this table?
@mohammadabdullahansari6314
@mohammadabdullahansari6314 2 года назад
create table amazon_orders ( order_id integer, customer_id integer, order_date date, ship_date date ); insert into amazon_orders values (1000,1,cast('2022-01-05' as date),cast('2022-01-11' as date)),(1001,2,cast('2022-02-04' as date),cast('2022-02-16' as date)), (1002,3,cast('2022-01-01' as date),cast('2022-01-19' as date)),(1003,4,cast('2022-01-06' as date),cast('2022-01-30' as date)), (1004,1,cast('2022-02-07' as date),cast('2022-02-13' as date)),(1005,4,cast('2022-01-07' as date),cast('2022-01-31' as date)), (1006,3,cast('2022-02-08' as date),cast('2022-02-26' as date)),(1007,2,cast('2022-02-09' as date),cast('2022-02-21' as date)), (1008,4,cast('2022-02-10' as date),cast('2022-03-06' as date)); select * from amazon_orders;
@adarshtrivedi6822
@adarshtrivedi6822 Год назад
Hello @ankit bansal sir I am working on a project and imported data which contains datetime col(which has date and time)in text format I have tried everything to convert it to datetime format but its showing error everytime. Please enlighten me how to cast in correct way PS I am using mysql
@ankitbansal6
@ankitbansal6 Год назад
Show me data and error
@adarshtrivedi6822
@adarshtrivedi6822 Год назад
@@ankitbansal6 the format for date time is '3/17/2019 5:39' , I am trying to update with this query update `sales`.`sales_march_2019` set `order date` =STR_TO_DATE( `order date`, '%mm/%dd/%YYYY %hh:%mm:%ss') showing error-- Incorrect datetime value: '3/17/2019 5:39' for function str_to_date, also one of the query was showing null values in order date col
@sanilkumarbarik9151
@sanilkumarbarik9151 8 месяцев назад
What if days_to_ship = 4 and these 4 days are not weekends
@Hkumar_new
@Hkumar_new 2 месяца назад
Last like to 800 by me.😂😂
@ankitbansal6
@ankitbansal6 2 месяца назад
Thank you 🙏
@ritikajaiswal3824
@ritikajaiswal3824 2 года назад
Adding days excluding Weekends Can you give us solution for the last question?
@ankitbansal6
@ankitbansal6 2 года назад
Yes i will make a video on it
@ashwanibhati1607
@ashwanibhati1607 Год назад
MYSQL users can use the following query: SELECT *, datediff(ship_date,order_date) AS days_to_ship ,WEEK(ship_date)-WEEK(order_date) AS weeks , datediff(ship_date,order_date) - 2*(WEEK(ship_date)-WEEK(order_date)) AS business_days_to_ship FROM customer_orders;
@gameply347
@gameply347 Месяц назад
Where can i find the answer to that question ?
@AlwaysBeTactful
@AlwaysBeTactful 9 месяцев назад
Please what can i do when i get this message "'DATE_PART' is not a recognized built-in function name."
@ankitbansal6
@ankitbansal6 9 месяцев назад
Which database?
@AlwaysBeTactful
@AlwaysBeTactful 9 месяцев назад
@@ankitbansal6 I think it's 2023 SSMS
@mohit3300
@mohit3300 Год назад
this video is not included in any playlist.
@ankitbansal6
@ankitbansal6 Год назад
Will add
@sanskarvarshney6114
@sanskarvarshney6114 2 года назад
Hello Ankit, Please provide the solution to the question asked by you.
@ankitbansal6
@ankitbansal6 2 года назад
Sure
@sudarshanthota4444
@sudarshanthota4444 2 года назад
Select dateadd(day,7,'2022-01-23')+2
@ankitbansal6
@ankitbansal6 2 года назад
You can't add +2 simply . you may have 2 consider more than 1 weekend or no weekend..
@vyabinivenkatesan7839
@vyabinivenkatesan7839 Год назад
Assignment question: Adding 5 business days from a given date: Select order_date,dateadd(day,5+(2*DATEDIFF(week,order_date,dateadd(day,5,order_date))),order_date) n_business_days from customers
@user-jk9xi9sd5j
@user-jk9xi9sd5j Год назад
MYSQL- Logic for adding given number of business days to the provided date .........select case when dayname(date_add(date_add('2022-12-29', INTERVAL 7 DAY),INTERVAL cast(FLOOR((datediff(date_add('2022-12-29', INTERVAL 7 DAY),'2022-12-29')/7)) as signed)*2 DAY)) IN( 'Saturday','Sunday') then date_add(date_add(date_add('2022-12-29', INTERVAL 7 DAY),INTERVAL cast(FLOOR((datediff(date_add('2022-12-29', INTERVAL 7 DAY),'2022-12-29')/7)) as signed)*2 DAY),Interval 2 DAY) else date_add(date_add('2022-12-29', INTERVAL 7 DAY),INTERVAL cast(FLOOR((datediff(date_add('2022-12-29', INTERVAL 7 DAY),'2022-12-29')/7)) as signed)*2 DAY) end Business_days
@ririraman7
@ririraman7 2 года назад
I did this as : declare @whatsdate date; set @whatsdate='2022-02-07' select case when datepart(weekday,@whatsdate) in (1,7) then dateadd(day,6,@whatsdate) else dateadd(day,7,@whatsdate) end
@litheshraju5207
@litheshraju5207 2 года назад
hi in above solution if the day is in sunday then by adding 6 to sunday date this will result in saturday date. if worng please correct me
@rishabhkjha92
@rishabhkjha92 Год назад
SELECT DATEADD ( DAY, CAST(2*DATEDIFF(WEEK,order_date,ship_date) AS INT), ship_date) FROM customer_orders;
@arthurmorgan9010
@arthurmorgan9010 Год назад
Assignment Answer: Did it for 5 days, can we done for N number of days select getdate(),DATEADD(day,5,GETDATE()) as days_added,DATEDIFF(week,GETDATE(),DATEADD(day,5,GETDATE()))*2 as no_of_weekend_days,DATEADD(day,5 - DATEDIFF(week,GETDATE(),DATEADD(day,5,GETDATE()))*2,GETDATE()) as week_days
@SuperMohit95
@SuperMohit95 2 года назад
MySQL solution for the business days to ship problem SELECT *, DATEDIFF(ship_date,order_date) AS days_to_ship, DATEDIFF(ship_date,order_date) - 2*(week(ship_date)-week(order_date)) AS business_days_to_ship FROM amazon_orders ;
Далее
Курск - врата Рая / Новости / Шпак
1:14:35
Scammed selling my MacBook, almost
15:09
Просмотров 41 тыс.