LEN'gth of a string
Knowing the length of a string is key to being able to manipulate it further using other functions, so what better way to start the lesson?
Questo esercizio fa parte del corso
Introduction to SQL Server
Istruzioni dell'esercizio
Retrieve the length of the description column, returning the results as description_length.
Esercizio pratico interattivo
Prova a risolvere questo esercizio completando il codice di esempio.
-- Calculate the length of the description column
SELECT
___ (___) AS ___
FROM
grid;