About 18,000,000 results
Open links in new tab
  1. WEEKDAY - Google Docs Editors Help

    WEEKDAY(40909,3) Syntax WEEKDAY(date, [type]) date - The date for which to determine the day of the week. Must be a reference to a cell containing a date, a function returning a date …

  2. How do I get the day of week given a date? - Stack Overflow

    I want to find out the following: given a date (datetime object), what is the corresponding day of the week? For instance, Sunday is the first day, Monday: second day.. and so on And then if …

  3. Get day of week in SQL Server 2005/2008 - Stack Overflow

    SELECT DATENAME(weekday, GETDATE()) -- Wednesday Or SET DATEFIRST and DATEPART to get the number for the day of the week.

  4. get DATEDIFF excluding weekends using sql server

    I am using this query to get time taken. SELECT DATEDIFF(dd, ActualStartDate, ActualCompletionDate) AS TimeTaken FROM TableName Now I want to exclude weekends …

  5. How to get the week day name from a date? - Stack Overflow

    Nov 4, 2011 · Given 03/09/1982 how can we say it is which week day. In this case it will be Tue. Is it possible to get in a single query?

  6. sql - Snowflake get full day of week name - Stack Overflow

    Aug 1, 2021 · Trying to build an aggregate table at the weekday level. So there is a need to extract full day of week name from the dateHour column. dateHour column contains date and …

  7. SQL DATEPART(dw,date) need monday = 1 and sunday = 7

    Jul 22, 2014 · I have a Query where I get the WeekDay of a date but by default: Sunday = 1 Moday = 2 etc. The function is: DATEPART (dw,ads.date) as weekday I need the result so: …

  8. WEEKDAY () - AppSheet Help

    Jan 1, 2019 · MOD(([Weekday] - WEEKDAY([Date]) - 7), 7) returns the offset of the [Weekday] before or on [Date]. ([Date] + MOD(([Weekday] - WEEKDAY([Date]) + 7), 7)) returns the date …

  9. Using Oracle SQL, how does one output day number of week and …

    Jan 25, 2013 · Using Oracle SQL, how do you create a result set for: Number for the Day Of The Week (1-7) Name of the day (Monday, Tuesday, Wednesday, etc.) For example: DAY NAME …

  10. How to get the day of week and the month of the year?

    Jan 27, 2011 · @RWC this is nice, but how do I manage to get only the weekday without the rest of the date part? I.E. I want saturday instead of saturday, 9th february 2019.