Función MySQL CONCAT_WS()
Ejemplo
Agregue varias expresiones juntas y agregue un separador "-" entre ellas:
SELECT CONCAT_WS("-", "SQL", "Tutorial", "is", "fun!") AS ConcatenatedString;
Definición y uso
La función CONCAT_WS() agrega dos o más expresiones junto con un separador.
Nota: Mire también la función CONCAT() .
Sintaxis
CONCAT_WS(separator, expression1, expression2, expression3,...)
Valores paramétricos
Parameter | Description |
---|---|
separator | Required. The separator to add between each of the expressions. If separator is NULL, this function returns NULL |
expression1, expression2, expression3, etc. |
Required. The expressions to add together. An expression with a NULL value will be skipped |
Detalles técnicos
Trabaja en: | Desde MySQL 4.0 |
---|
Más ejemplos
Ejemplo
Agregue tres columnas (y agregue un espacio entre ellas) en una columna de "Dirección":
SELECT CONCAT_WS(" ", Address, PostalCode, City) AS Address
FROM
Customers;