• 13. 1. 2020
  • Ing. Jan Zedníček - Data Engineer & Controlling
  • 0

SUBSTRING function is used in sql to select part of text string in text. This function belongs to the group of text functions – string functions. I created a big summary of T-SQL text functions – you can find it here.

SQL SUBSTRING Syntax

SELECT SUBSTRING(text, <start position of the text character>, <the number of characters to get from the starting point>)

The function has 3 arguments:

  • field with text where we select the text
  • starting position – numeral position of the character in text from which we will select its part
  • number of characters from the starting position

Example of the SUBSTRING Function

DECLARE @TEXT AS VARCHAR(100) = '.gerge.OPGKER/The text we want to get/ FWG--efwER'
SELECT SUBSTRING(@TEXT,15,23)

sql substring function example

5/5 - (1 vote)

Ing. Jan Zedníček - Data Engineer & Controlling

My name is Jan Zedníček and I have been working as a freelancer for many companies for more than 10 years. I used to work as a financial controller, analyst and manager at many different companies in field of banking and manufacturing. When I am not at work, I like playing volleyball, chess, doing a workout in the gym.

🔥 If you found this article helpful, please share it or mention me on your website

Leave a Reply

Your email address will not be published. Required fields are marked *