A scalar string function that
returns a specified number of characters from the beginning (leftmost position)
of a string expression.
LEFT returns the specified number of characters
from the beginning of a string.
LEFT does not pad strings;
if you specify a larger number of characters than are in the string,
LEFT returns
the string.
LEFT returns NULL if passed a NULL value
for either argument.
SELECT Name,{fn LEFT(Name,7)}AS ShortName
FROM Sample.Person
&sql(SELECT TOP 1 Name,{fn LEFT(Name,40)}
INTO :a,:b
FROM Sample.Person)
WRITE !,a,"=original",!,b,"=LEFT 40"