Creating a Temporary Stream
The temporary stream is used to simplify SQL logic. If complex SQL logic is followed, write SQL statements concatenated with temporary streams. The temporary stream is just a logical concept and does not generate any data.
Syntax
CREATE TEMP STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
Description
None
Precautions
None
Example
create temp stream a2(attr1 int, attr2 string);
Last Article: Open-Source Kafka Sink Stream
Next Article: Creating a Table
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.