MySQL TEKRAR() İşlevi
Örnek
Bir dizeyi 3 kez tekrarlayın:
SELECT REPEAT("SQL Tutorial", 3);
Tanım ve Kullanım
REPEAT() işlevi, bir dizeyi belirtilen sayıda yineler.
Sözdizimi
REPEAT(string, number)
Parametre Değerleri
Parameter | Description |
---|---|
string | Required. The string to repeat |
number | Required. The number of times to repeat the string |
Teknik detaylar
Çalışır: | MySQL 4.0'dan |
---|
Daha fazla örnek
Örnek
MüşteriAdı'ndaki metni 2 kez tekrarlayın:
SELECT REPEAT(CustomerName,
2)
FROM Customers;
Örnek
Dizeyi 0 kez tekrarlayın:
SELECT REPEAT("SQL Tutorial", 0);