ComeçarComece de graça

First day of month

Here you will use the GETDATE(), DATEDIFF(), and DATEADD() functions to find the first day of the current month.

Este exercício faz parte do curso

Writing Functions and Stored Procedures in SQL Server

Ver curso

Instruções do exercício

  • Find the current date value.
  • Calculate the difference in months between today and 0 (1/1/1900 in SQL).
  • Add 0 months to that difference to get the first day of the month.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

-- Find the first day of the current month
SELECT ___(___, ___(___, 0, GETDATE()), ___)
Editar e executar o código