v.23.5New Feature
Added "space" Function for Repeating Spaces
Added a function "space" which repeats a space as many times as specified. #50103 (Robert Schulze).
Why it matters
This function solves the need to produce a string with a specific number of spaces, which is useful for formatting outputs, padding strings, or other scenarios where repeated spaces are required.How to use it
Use the function by callingspace(n), where n is the number of spaces you want to generate. For example, SELECT space(5) will return a string of five space characters.