更新时间:2024-09-27 GMT+08:00

创建中间流

功能描述

中间流用来简化sql逻辑,若sql逻辑比较复杂,可以写多个sql语句,用中间流进行串接。中间流仅为逻辑意义上的流,不会产生数据存储。

语法格式

创建中间流语法格式如下:

1
CREATE TEMP STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )

示例

创建中间流示例如下:

1
create temp stream a2(attr1 int, attr2 string);