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?
Deze oefening maakt deel uit van de cursus
Introduction to SQL Server
Oefeninstructies
Retrieve the length of the description column, returning the results as description_length.
Praktische interactieve oefening
Probeer deze oefening eens door deze voorbeeldcode in te vullen.
-- Calculate the length of the description column
SELECT
___ (___) AS ___
FROM
grid;