C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL SPACE() FunctionThe space() is a String function of MySQL. This function returns the given number (n) of blank spaces. Syntax
select space(n); Parameters:
N: number of spaces to be returned. ReturnsThis function returns a string with a specified number of spaces. Example 1
select space(5); Output:
Example 2select space(10); Output:
Next TopicMySQL String
|