Type: Function
Function: LEFT
Syntax: LEFT(string, [num_chars=1])
Description: Returns a substring from the beginning of a specified string.
Sample usage:
LEFT("abcd")
returnsa
.LEFT("abcd", 3)
returnsabc
.LEFT(title, 4)
returns the first four characters of the title field.