Returns a portion of the input string for an input number of characters starting from the left.
LEFT(input_string, length)
input_string
length
LEFT("Hello World", 5)
Result: Hello
Hello