space
Returns a string of the specified number of spaces.
Syntaxβ
space(x);
Parametersβ
x
: the number of spaces to return. The supported data type is INT.
Return valueβ
Returns a value of the VARCHAR type.
Examplesβ
mysql> select space(6);
+----------+
| space(6) |
+----------+
| |
+----------+
1 row in set (0.00 sec)
Keywordsβ
SPACE