LEFT
The LEFT function returns a string of length length, containing the leftmost length characters of string.
Examples
LEFT('abc d',8) -> 'abc d '
LEFT('abc d',8,'.') -> 'abc d...'
LEFT('abc def',7) -> 'abc de'The LEFT function returns a string of length length, containing the leftmost length characters of string.
LEFT('abc d',8) -> 'abc d '
LEFT('abc d',8,'.') -> 'abc d...'
LEFT('abc def',7) -> 'abc de'