I have two input files on my stream analytics. one is csv and another one is json. I just making join query on stream analytics but its not working.
This is my query
SELECT
i1.Serial_No,i2.Customer_Id
FROM input1 i1
JOIN input2 i2
ON
i1.Serial_No = i2.Serial_No
Sample data
Json : { "Serial_No":"12345", "Device_type":"Owned" }
CSV :
"Serial_No,Customer_Id" 12345,12345
Please any one help me in this


INTOclause). Plus you haven't shown any sample data. So... a bit difficult to know what's going on (though my guess is the lack ofINTO). Please edit accordingly. - David Makogon