НачатьНачать бесплатно

Get the know the system date and time functions

The purpose of this exercise is for you to work with the system date and time functions and see how you can use them in SQL Server. Whether you just want to discover what day it is or you are performing complex time analysis, these functions will prove to be very helpful in many situations.

In this exercise, you will familiarize yourself with the most commonly used system date and time functions. These are:

Higher Precision

  • SYSDATETIME()
  • SYSUTCDATETIME()
  • SYSDATETIMEOFFSET()

Lower Precision

  • GETDATE()
  • GETUTCDATE()
  • CURRENT_TIMESTAMP

Это упражнение является частью курса

Functions for Manipulating Data in SQL Server

Посмотреть курс

Интерактивное практическое упражнение

Попробуйте выполнить это упражнение, дополнив этот пример кода.

SELECT 
	___ AS CurrentDate;
Редактировать и запускать код