Left outer join specifies that all rows from the left table not meeting the join condition are included in the result set, and output columns from the other table are set to NULL in addition to all rows returned by the inner join.
Azure Stream Analytics supports both inner join (the default) and LEFT outer join. For an inner join, a result is only returned when a match is found. But for a LEFT OUTER join, if an event from the left side of the join is unmatched, a row with NULL for all the columns of the right row is returned. For instance, here is an example to find the absence of events.
Reference: https://learn.microsoft.com/en-us/stream-analytics-query/join-azure-stream-analytics
Hope it helps. Kindly accept the answer by clicking on Accept answer
button. Thankyou