Previous |
Next
What is SQL Concatenation?Concatenation is the process of combining data strings. For example, the concatenation of 'John', ' ', 'W', '. ' and 'Smith' is 'John W. Smith' Also, the concatenation of '212', '-', '555', '-' and '1234' is '212-555-1234' Why Use SQL Concatenation?Concatenation can result in more readable output while maintaining data in separate columns for greater flexibility. How To Use SQL ConcatenationThe means of achieving concatenation differs by database type. for example:
More than 2 strings can be combined through concatenation. Numbers must be converted to strings before concatenation. SQL Concatenation Syntax
SQL Concatenation Example The following example concatenates the column branch_name with column region_name along with spaces and parens for readability. Here are the contents of the tables:
Table: REGION
Table: BRANCH
This SQL Statement with concatenation is executed:
Here is the result.
|
| HOME | SQL OVERVIEW | SQL BASICS | SQL ADMINISTRATION | SQL ADVANCED | SQL SYNTAX |
| Copyright© 1999-2012, First Place Software, Inc. |
