Mega Code Archive

 
Categories / MSSQL / String Functions
 

SPACE

1> -- SPACE: returns a set number of spaces. 2> 3> SELECT "Robin"+SPACE(10)+"Dewson" 4> GO --------------------- Robin          Dewson (1 rows affected) 1>