(Looks like an acronym... but not easy to "fit" the description)
|
There are 3 kinds of STREAM operators:
|
The 3 types of STREAM operators in more details:
|
|
|
|
|
The relation is obtained from a stream by extracting the set (collection) of tuple in the window
|
SELECT Istream(*)
FROM S [Rows Unbounded]
WHERE S.A > 10
|
|
SELECT *
FROM S1 [Range 1000], S2 [Range 2 Minutes]
WHERE S1.A = S2.A
AND S1.A > 10
|
|
SELECT Rstream(S.A, S.B) FROM S [Now], R WHERE S.A = R.A |
|