About 2,800,000 results
Open links in new tab
  1. MySQL WEEKDAY () Function - W3Schools

    Jun 15, 2017 · Definition and Usage The WEEKDAY () function returns the weekday number for a given date. Note: 0 = Monday, 1 = Tuesday, 2 = Wednesday, 3 = Thursday, 4 = Friday, 5 = Saturday, 6 = …

  2. Determine weekday from date in SQL Server

    May 3, 2025 · For determining the weekday from a date in SQL Server, you might consider using the DATEPART function. It’s quite versatile and can return an integer representing the day of the week. …

  3. DATEPART (Transact-SQL) - SQL Server | Microsoft Learn

    Referencia de Transact-SQL para la función DATEPART. Esta función devuelve un entero que se corresponde con el parámetro datepart de una fecha especificada.

  4. SQL Server Functions - W3Schools

    SQL Server has many built-in functions. This reference contains string, numeric, date, conversion, and some advanced functions in SQL Server.

  5. MySQL WEEKDAY () Function

    Here’s the syntax of the WEEKDAY() function: WEEKDAY(date) Code language: SQL (Structured Query Language) (sql) In this syntax: date: This is the date value that you want to get the weekday from. …

  6. Determining weekday from date in MS SQL Server

    Apr 17, 2025 · In SQL Server, you can efficiently determine the weekday from a date using the DATENAME function, as mentioned earlier. However, if you need to perform this operation frequently …

  7. How to get Day or Weekday name from date in Sql Server

    Jun 8, 2015 · We can use DATENAME () function to get Day/Weekday name from Date in Sql Server, here we need specify datepart parameter of the DATENAME function as weekday or dw both will …

  8. DATEPART (Transact-SQL) - SQL Server | Microsoft Learn

    Referência de Transact-SQL para a função DATEPART. Essa função retorna um inteiro correspondente à datepart de uma data especificada.

  9. SET DATEFIRST (Transact-SQL) - SQL Server | Microsoft Learn

    Applies to: SQL Server Azure SQL Database Azure SQL Managed Instance Azure Synapse Analytics Analytics Platform System (PDW) SQL database in Microsoft Fabric Sets the first day of the week to …

  10. SQL SERVER – How to get short month name / weekday name from datetime

    May 23, 2013 · Method 2 : In this method, we will use ONLY FORMAT function (shipped in SQL Server 2012) to achieve short name of month and weekday. Given below is the script.