REPLICATE 以指定次数重复字符表达式 REPLICATE(string_expression,integer_expression); SELECT REPLICATE('abc ',3); -- 将 'abc ' 重复 3 次 image.png