Multi-row Functions
# StreamSQL Multi-row Functions
Multi-row functions are used for handling multi-row data.
# UNNEST - Unnest Function
Syntax: unnest(array)
Description: Expands an array into multiple rows.
Incremental Calculation: Not Supported
Example:
SELECT unnest(tags) as tag FROM events
1
# 📚 Related Documentation
- Conditional Functions - Learn detailed usage of conditional functions
- Expression Functions - Learn detailed usage of expression functions
- SQL Reference - View complete SQL syntax reference
Edit this page on GitHub (opens new window)
Last Updated: 2025/08/05, 02:24:31