Left and right
We can retrieve portions of a string from either the start of the string, using LEFT, or working back from the end of the string, using RIGHT.
Deze oefening maakt deel uit van de cursus
Introduction to SQL Server
Praktische interactieve oefening
Probeer deze oefening eens door deze voorbeeldcode in te vullen.
-- Select the first 25 characters from the left of the description column
SELECT
___(description, ___) AS ___
FROM
grid;