# SPACE

The SPACE function returns a string consisting of a specified number of space characters.

## Syntax

`SPACE(number)`

### Parameters

#### number

Specifies the number of spaces to include in the result string.

## Examples

Creates a message by concatenating "Hello" and "World!" with a single space in between.

```esql
ROW message = CONCAT("Hello", SPACE(1), "World!");
```