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. Syntaxselect space(n); Parameters:N: number of spaces to be returned. ReturnsThis function returns a string with a specified number of spaces. Example 1select space(5); Output: Example 2select space(10); Output:
Next TopicMySQL String
|