SQL REPLICATE Function

The SQL Server REPLICATE is a String Function used to repeat the existing string for a given number of times. This replicate function accepts both character string or binary data and returns the same type as the specified expression. SQL Server REPLICATE Function The syntax of the REPLICATE Function is: SELECT REPLICATE (String_Expression, int_Expression) FROM [Source] … Read more