About 66,400 results
Open links in new tab
  1. SQL Server LEFT () Function - W3Schools

    Definition and Usage The LEFT () function extracts a number of characters from a string (starting from left). Syntax LEFT (string, number_of_chars)

  2. LEFT (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · Using LEFT with a character string. The following example uses LEFT to return the two leftmost characters of the character string abcdefg. Here's the result set. Was this page helpful?

  3. SQL LEFT Function Use and Examples - SQL Server Tips

    Apr 27, 2025 · Learn how to use the SQL Server LEFT function with examples of how this function can be used to take a portion of a string.

  4. SQL Server LEFT() Function

    You will learn how to use the SQL Server LEFT () function to extract a specified number of characters from the left side of a string.

  5. SQL LEFT () String Function - Syntax, Examples [4] - Tutorial Kart

    In this tutorial, we will go through SQL LEFt() String function, its syntax, and how to use this function in SQL statements for string operations, with the help of well detailed examples.

  6. SQL LEFT function in queries

    Oct 22, 2021 · The LEFT function is one of the built-in string functions and returns the left part of the input character string according to the specified number of characters.

  7. LEFT () in SQL: Examples, Use Cases & Error Handling

    What is LEFT () in SQL? The LEFT() function in SQL extracts a specified number of characters from the beginning (left side) of a string. It is commonly used for parsing text data, extracting fixed-length …

  8. SQL Server: LEFT Function - TechOnTheNet

    This SQL Server tutorial explains how to use the LEFT function in SQL Server (Transact-SQL) with syntax and examples. In SQL Server (Transact-SQL), the LEFT function allows you to extract a …

  9. SQL Server LEFT () Function: Returns Substring from Left

    In SQL Server, the LEFT () function returns the specified number of characters from the left side of the specified string.

  10. LEFT Function in SQL Server

    Nov 13, 2023 · This tutorial explain how to use the LEFT function in SQL Server to extract the leftmost part of the given string or value or column.