Ejemplo Kusto Copia let X = datatable(Key:string, Value1:long) [ 'a',1, 'b',2, 'b',3, 'c',4 ]; let Y = datatable(Key:string, Value2:long) [ 'b',10, 'c',20, 'c',30, 'd',40 ]; X | join kind=fullouter Y on Key Salida Expandeix la taula ClaveValor1Tecla...