I'm trying to store only distinct rows in my output- Blob storage based on old data in that output-blob storage using azure stream analytics query language. Eg: On the first insert, I get some values to the streaming analytics input as below
Name, Score
saran, 100
raj, 90
and the above data is stored in blob as output.
On the second insert, I get the following table from stream analytics input
Name, Score
saran, 90
jeeva, 80
Now before storing this data to the blob, I have to compare the old data from a blob with new data and to insert only the distinct data to the blob and also I wanna update the value for already existing data. Thanks in Advance