Funkcja MySQL REPEAT()
Przykład
Powtórz ciąg 3 razy:
SELECT REPEAT("SQL Tutorial", 3);
Definicja i użycie
Funkcja REPEAT() powtarza ciąg tyle razy, ile określono.
Składnia
REPEAT(string, number)
Wartości parametrów
Parameter | Description |
---|---|
string | Required. The string to repeat |
number | Required. The number of times to repeat the string |
Szczegóły techniczne
Pracuje w: | Z MySQL 4.0 |
---|
Więcej przykładów
Przykład
Powtórz tekst w CustomerName 2 razy:
SELECT REPEAT(CustomerName,
2)
FROM Customers;
Przykład
Powtórz ciąg 0 razy:
SELECT REPEAT("SQL Tutorial", 0);