Cloud
version
The version() function returns a text string describing the SQL engine and its version.
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) |
+-------------------------------+
Was this helpful?