Funkcja MySQL CONCAT()
Przykład
Dodaj kilka ciągów razem:
SELECT CONCAT("SQL ", "Tutorial ", "is ", "fun!") AS ConcatenatedString;
Definicja i użycie
Funkcja CONCAT() dodaje do siebie dwa lub więcej wyrażeń.
Uwaga: Spójrz także na funkcję CONCAT_WS() .
Składnia
CONCAT(expression1, expression2, expression3,...)
Wartości parametrów
Parameter | Description |
---|---|
expression1, expression2, expression3, etc. |
Required. The expressions to add together.
Note: If any of the expressions is a NULL value, it returns NULL |
Szczegóły techniczne
Pracuje w: | Z MySQL 4.0 |
---|
Więcej przykładów
Przykład
Dodaj trzy kolumny do jednej kolumny „Adres”:
SELECT CONCAT(Address, " ", PostalCode, " ", City) AS Address
FROM
Customers;