30
loading...
This website collects cookies to deliver better user experience
built-in
function called Left and it takes two arguments/parameters.1
.Left(lastName, 1)
Last Initial
.We can change the number of characters that get returned by modifying the second argument.
position
we want to start extracting the value at, eg choosing 2 would mean we want to start extracting from the second character, starting from the Left.SUBSTRING(lastName, 1, 1)
RIGHT(lastname, 3)