REPEAT() 回傳傳入字串重覆數次的結果

REPEAT(str,count)
  • str傳入的字串
  • count次數

回傳一個傳入字串str重覆count次的結果,字串str重覆的次數等於count。若count<= 0,則回傳一個空字串。若str或count為 NULL,則回傳NULL。
mysql> SELECT REPEAT('MySQL', 3);
-> 'MySQLMySQLMySQL'

沒有留言: