空間

返回重複空格的字串(varchar)。

引數:

  1. 整數表示式。任何整數表示式,最多 8000 個。如果為負數,則返回 null。如果為 0,則返回空字串。 (要返回超過 8000 個空格的字串,請使用 Replicate。
SELECT SPACE(-1) -- Returns NULL
SELECT SPACE(0)  -- Returns an empty string
SELECT SPACE(3)  -- Returns '   ' (a string containing 3 spaces)