About 1,180,000 results
Open links in new tab
  1. REPLICATE (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · If string_expression input is not of type varchar (max) or nvarchar (max), REPLICATE truncates the return value at 8,000 bytes. To return values greater than 8,000 …

  2. SQL Server REPLICATE () Function - W3Schools

    Definition and Usage The REPLICATE () function repeats a string a specified number of times. Syntax REPLICATE (string, integer)

  3. SQL REPLICATE Function Use and Examples - SQL Server Tips

    Apr 27, 2025 · Learn how to use the SQL Server REPLICATE function to replicate a string X number of times along with examples of use.

  4. SQL Server REPLICATE () Function By Practical Examples

    In this tutorial, you will learn how to use the SQL Server REPLICATE () function to replicate a string a specified number of times.

  5. SQL REPLICATE () String Function - Syntax, Examples [4]

    With this setup complete, you can run the REPLICATE() function examples to test and view results in the users table. We’ll go through examples demonstrating the REPLICATE() function …

  6. SQL REPLICATE Function - Tutorial Gateway

    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 …

  7. SQL Server REPLICATE () Function

    In some cases, using the REPLICATE() function can help us process and analyze data more conveniently. The REPLICATE () function is used to repeat a string a certain number of times …

  8. REPLICATE Function of SQL Server

    Nov 29, 2023 · In this SQL Server tutorial, you will learn how to use the REPLICATE function in SQL Server. You will learn where to use the REPLICATE () function with syntax and its …

  9. Mastering the REPLICATE() Function in SQL Server: A SQLYoga …

    Jun 12, 2024 · Are you struggling with ensuring uniformity in numeric data stored in your SQL Server database? Fear not! SQLYoga brings you an insightful guide on mastering the …

  10. SQL Server REPLICATE () Function - AlphaCodingSkills

    In the query below, the REPLICATE () function is used to get the repeated value of EmpID column value of Employee table. This will produce the result as shown below: The SQL Server …