String Functions – LEFT()


I am going to continue my series of very short articles or tidbits on Transaction SQL string functions. I will exploring the LEFT() function today.

The LEFT() function takes the source string [S] and number of characters [X] as input and returns the [X] leftmost characters from string [S] as output.

The following example grabs the first word from a favorite movie title of mine.

One thing to always worry about when using TSQL functions is how will it react with empty strings, NULL values, or invalid values? Both empty strings and NULL values as inputs return themselves as outputs. A negative number for input [X] will result in a error being throw.

Next time, I will be exploring the LEN() function.

Related posts

Leave a Comment