cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SQL "Replicate" Function

millicentdark
Contributor
0 Likes
833

Hi Experts,

Is there another function that works exactly like SQL "REPLICATE" function?

Regards

Justice

View Entire Topic
kothandaraman_nagarajan
Active Contributor
0 Likes

Hi,

Replicate function is working in SQL server. For example, if you run below query,

SELECT REPLICATE( ' Nagarajan ' , 2 )

Result is, Nagarajan Nagarajan

Thanks