Кусто: Как я могу получить значение из столбца, который не участвует в SUMMARIZE?
Имея таблицу ниже и запрос Kusto, как я могу получить результат со столбцом Покупка?
let ProductsTable = datatable(Supplier: string, Fruit: string, Price: int, Purchase: datetime)
[
'Contoso', 'Grapes', 220, datetime(2018-10-01 01:00),
'Fabrikam', 'Lemons', 31, datetime(2018-10-01 02:00),
'Contoso', 'Lemons', 29, datetime(2018-10-02 03:00),
'Contoso', 'Grapes', 210, datetime(2018-10-02 04:00),
'Fabrikam', 'Lemons', 30, datetime(2018-10-03 05:00),
'Contoso', 'Bananas', 12, datetime(2018-10-03 06:00),
'Contoso', 'Bananas', 12, datetime(2018-10-04 07:00),
'Contoso', 'Lemons', 29, datetime(2018-10-04 08:00),
'Contoso', 'Grapes', 200, datetime(2018-10-05 09:00),
];
ProductsTable
| summarize Price = min(Price) by Supplier, Fruit
| order by Supplier asc, Fruit asc, Price asc
Результат
Contoso Bananas 12
Contoso Grapes 200
Contoso Lemons 29
Fabrikam Lemons 30
Желаемый результат
Contoso Bananas 12 2018-10-03 06:00
Contoso Grapes 200 2018-10-05 09:00
Contoso Lemons 29 2018-10-02 03:00
Fabrikam Lemons 30 2018-10-03 05:00
Я знаю, что может быть несколько результатов, например, для Contoso-Bananas-12 мы можем получить любой из следующих
- 2018-10-03 0 6: 00
- 2018-10-04 7:00
1 ответ
Решение
Попробуйте использовать arg_min()
: https://docs.microsoft.com/en-us/azure/kusto/query/arg-min-aggfunction
let ProductsTable = datatable(Supplier: string, Fruit: string, Price: int, Purchase: datetime)
[
'Contoso', 'Grapes', 220, datetime(2018-10-01 01:00),
'Fabrikam', 'Lemons', 31, datetime(2018-10-01 02:00),
'Contoso', 'Lemons', 29, datetime(2018-10-02 03:00),
'Contoso', 'Grapes', 210, datetime(2018-10-02 04:00),
'Fabrikam', 'Lemons', 30, datetime(2018-10-03 05:00),
'Contoso', 'Bananas', 12, datetime(2018-10-03 06:00),
'Contoso', 'Bananas', 12, datetime(2018-10-04 07:00),
'Contoso', 'Lemons', 29, datetime(2018-10-04 08:00),
'Contoso', 'Grapes', 200, datetime(2018-10-05 09:00),
];
ProductsTable
| summarize Price = arg_min(Price, *) by Supplier, Fruit
| order by Supplier asc, Fruit asc, Price asc
Я новичок в Kusto, но, как я обнаружил, ниже могу вернуть тот же результат, используя partition by и row_number() в Kusto.
KQL:
let ProductsTable = datatable(Supplier: string, Fruit: string, Price: int, Purchase: datetime)
[
'Contoso', 'Grapes', 220, datetime(2018-10-01 01:00),
'Fabrikam', 'Lemons', 31, datetime(2018-10-01 02:00),
'Contoso', 'Lemons', 29, datetime(2018-10-02 03:00),
'Contoso', 'Grapes', 210, datetime(2018-10-02 04:00),
'Fabrikam', 'Lemons', 30, datetime(2018-10-03 05:00),
'Contoso', 'Bananas', 12, datetime(2018-10-03 06:00),
'Contoso', 'Bananas', 12, datetime(2018-10-04 07:00),
'Contoso', 'Lemons', 29, datetime(2018-10-04 08:00),
'Contoso', 'Grapes', 200, datetime(2018-10-05 09:00),
];
ProductsTable
| partition by Fruit
( sort by Price asc
| extend rn = row_number(1, prev(Supplier) != Supplier)
| where rn == 1
)
| project Supplier, Fruit, Price, Purchase
| sort by Supplier asc, Fruit asc;
Полученные результаты:
Supplier Fruit Price Purchase
Contoso Bananas 12 2018-10-03 06:00:00.0000000
Contoso Grapes 200 2018-10-05 09:00:00.0000000
Contoso Lemons 29 2018-10-02 03:00:00.0000000
Fabrikam Lemons 30 2018-10-03 05:00:00.0000000
Однако это не так эффективно, как решение Йони Л. Я привык писать подобные запросы с помощью Redshift/PostgreSQL, поэтому мне было интересно, можно ли это сделать с помощью row_num(), которая является очень распространенной оконной функцией.