Cloud

version

The version() function returns a text string describing the SQL engine and its version.

Syntax

SELECT version();

The version() function takes no arguments.

Return type

text

Examples

SELECT version();

The query returns a version string in the form Redpanda SQL <version> (<build>), similar to:

+-------------------------------+
| version                      |
+-------------------------------+
| Redpanda SQL 1.2.0 (abc1234)  |
+-------------------------------+