I need to assign a value to a particular attribute in a stream by checking a condition.
How do I do it?
e.g
if a person's name is 'John' and I need to modify his name into 'Peter' and insert into another stream, how do I do it?
from myStream [name == 'John']
select *
insert into outStream;