MySQL REPEAT() Fungsi
Contoh
Ulangi string 3 kali:
SELECT REPEAT("SQL Tutorial", 3);
Definisi dan Penggunaan
Fungsi REPEAT() mengulang string sebanyak yang ditentukan.
Sintaksis
REPEAT(string, number)
Nilai Parameter
Parameter | Description |
---|---|
string | Required. The string to repeat |
number | Required. The number of times to repeat the string |
Detail Teknis
Bekerja di: | Dari MySQL 4.0 |
---|
Lebih Banyak Contoh
Contoh
Ulangi teks di CustomerName 2 kali:
SELECT REPEAT(CustomerName,
2)
FROM Customers;
Contoh
Ulangi string 0 kali:
SELECT REPEAT("SQL Tutorial", 0);