CommencerCommencer gratuitement

Selecting parts of the system's date and time

In this exercise, you will retrieve only parts of the system's date and time, focusing on only the date or only the time. You will use the same date and time functions, but you will use CAST() and CONVERT() to transform the results to a different data type.

Cet exercice fait partie du cours

Functions for Manipulating Data in SQL Server

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

SELECT 
	___(VARCHAR(24), ___, 107) AS HighPrecision,
	___(VARCHAR(24), ___, 102) AS LowPrecision;
Modifier et exécuter le code