Funkce MySQL REPEAT() .
Příklad
Opakujte řetězec 3x:
SELECT REPEAT("SQL Tutorial", 3);
Definice a použití
Funkce REPEAT() opakuje řetězec tolikrát, kolikrát je zadáno.
Syntax
REPEAT(string, number)
Hodnoty parametrů
Parameter | Description |
---|---|
string | Required. The string to repeat |
number | Required. The number of times to repeat the string |
Technické údaje
Pracuje v: | Od MySQL 4.0 |
---|
Další příklady
Příklad
Opakujte text v CustomerName 2krát:
SELECT REPEAT(CustomerName,
2)
FROM Customers;
Příklad
Opakujte řetězec 0krát:
SELECT REPEAT("SQL Tutorial", 0);