We can repeat a string number of times by using repeat command. Here are some examples
SELECT REPEAT(' plus2net ', 3);
This will repeat our string plus2net three times. Like this
plus2net plus2net plus2net
What about this query ?
SELECT REPEAT(' plus2net ', 0);
No output or blank output