The Substring function in SQL is used to return a portion of the string. Each database provides its own way(s) of doing this:
The syntax for SUBSTRING is as follows (we will use SUBSTR( ) here):
where position and length are both integers. This syntax means the following: Start with the position-th character in string str, select the next length characters.
In MySQL and Oracle, length is an optional argument. When length is not specified, the entire string starting from the position-th character is returned. In SQL Server, length is required.
SUBSTR() can be used in SELECT , WHERE , and ORDER BY clauses.
We use the following table for our examples.
Table Geography
Result:
Result:
Result:
In Example 3, the ORDER BY criteria is based on the 2nd to 5th characters in the string. Below are the 2nd to 5th characters for each Store_Name:
Based on the above, we can see that 'San Diego' would be first, followed by 'New York,' 'Chicago,' and finally 'Los Angeles.'
Our website is made possible by displaying ads to our visitors. Please supporting us by whitelisting our website.