Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT
current_date,
((( case
when (((current_date mod 10000) / 100) > 2) then
(146097 * ((current_date/10000 + 1900) / 100)) / 4
+(1461 * ((current_date/10000 + 1900) - ((current_date/10000 + 1900) / 100)*100) ) / 4
+(153 * (((current_date mod 10000)/100) - 3) + 2) / 5
+ current_date mod 100 - 693901
else
(146097 * (((current_date/10000 + 1900) - 1) / 100)) / 4
+(1461 * (((current_date/10000 + 1900) - 1) - (((current_date/10000 + 1900) - 1) / 100)*100) ) / 4
+(153 * (((current_date mod 10000)/100) + 9) + 2) / 5
+ current_date mod 100 - 693901
end) + 0) mod 7 + 1) day_of_wk
Current_Date() day_of_wk
2004-05-11 3