I want to have result in table with 2 or 3 log events combined based on unique key in all events and return 1 single row for all those events having unique key in them. for all my log events I have a common unique key for which I want to combine them and get in table as single row for that unique key and if value for any column is not present then null for that particular cell in table. Log event 1: Message="Taken the response",UniqueId="329wey98fywe",Status=Pending Log event 2: Message="Process completed",UniqueId="329wey98fywe",Status=Finalized Log event 3: Message=,UniqueId="329wey98fywe",Status=Pending
... View more