REPEAT() 함수의 출력을 더 읽기 쉽게 만들고 싶다면 이를 다른 함수와 함께 사용할 수 있습니다. 예를 들어, 반복되는 값 사이에 공백이나 기타 문자를 추가하려면 CONCAT() 함수를 사용할 수 있습니다.
mysql> Select REPEAT(CONCAT(' *',Subject,'* '),3)AS Subject_repetition from student; +-----------------------------------------+ | Subject_repetition | +-----------------------------------------+ | *Computers* *Computers* *Computers* | | *History* *History* *History* | | *Commerce* *Commerce* *Commerce* | | *Computers* *Computers* *Computers* | | *Math* *Math* *Math* | +-----------------------------------------+ 5 rows in set (0.00 sec)
아래 예에서는 REPEAT() 함수와 함께 QUOTE() 및 CONCAT() 함수를 모두 사용합니다.
mysql> Select REPEAT(QUOTE(CONCAT(' *',Subject,'* ')),3)AS Subject_repetition from student; +-----------------------------------------------+ | Subject_repetition | +-----------------------------------------------+ | ' *Computers* '' *Computers* '' *Computers* ' | | ' *History* '' *History* '' *History* ' | | ' *Commerce* '' *Commerce* '' *Commerce* ' | | ' *Computers* '' *Computers* '' *Computers* ' | | ' *Math* '' *Math* '' *Math* ' | +-----------------------------------------------+ 5 rows in set (0.00 sec)
REPEAT() 함수를 다른 함수와 함께 사용하면 출력을 더 많이 만들 수 있습니다. 읽을 수 있습니다.
위 내용은 REPEAT() 함수에서 다른 MySQL 함수를 사용하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!