Previous |
Next
What is SQL SUBSTRING?The SQL Substring feature is a function that enables parts of strings to be accessed. For example, the function SUBSTRING('212-555-1234', 9 , 4) returns: '1234' It returns 4 characters starting in position 9. Why Use SQL SUBSTRING?Substring is useful when accessing a column that consists of meaningful subcomponents, such as a telephone number that contains area code, prefix and phone number body. How To Use SQL SUBSTRINGSQL SUBSTRING is used as follows. SQL SUBSTRING Syntax
SQL SUBSTRING Example This example returns three characters of the region_name column starting in position 2. Here are the contents of the table:
Table: REGION
This SQL Statement with SUBSTRING is executed:
Here is the result.
|
| HOME | SQL OVERVIEW | SQL BASICS | SQL ADMINISTRATION | SQL ADVANCED | SQL SYNTAX |
| Copyright© 1999-2010, First Place Software, Inc. |


