gpt4 book ai didi

azure - Take vs. Limit vs. Top、Sort vs. Order By

转载 作者:行者123 更新时间:2023-12-02 22:56:59 26 4
gpt4 key购买 nike

长期使用传统SQL,习惯了order bylimittop是MS自带的“limit”但更直观。

这里两个 Kusto 查询共享相同的条件和顺序(排序,对吧?),唯一的区别是返回多少,20 与 200。结果令人惊讶:

AzureDiagnostics | where Category contains "postgresql" | take 20  | order by TimeGenerated desc

enter image description here

AzureDiagnostics | where Category contains "postgresql" | take 200  | order by TimeGenerated desc

enter image description here

顶部更加一致

AzureDiagnostics | where Category contains "postgresql" | top 2  by TimeGenerated desc 
AzureDiagnostics | where Category contains "postgresql" | top 20 by TimeGenerated desc

更新,感谢@Yoni L,总结如下:

  1. 每个 | 部分的顺序很重要。例如,|take 10 | order by x 将在 take 之后排序,这是随机的。
  2. 采取 = 使用限制
  3. 排序依据 = 排序依据
  4. 按 x [asc/desc] 排序的前 10 名 = 按 x [asc/desc] 排序 |取 10,但 top X by Y 使用的内存要少得多,应该是首选。

最佳答案

top不同,对于takelimit(它们是别名),不保证返回哪些记录,除非源数据是已排序。

以下内容是等效的 - top 20 by x descorder by x desc | take 20,但这有不同的语义:take 20 | order by x desc - 它仅对 taken

的(最多)20 条记录进行排序

关于azure - Take vs. Limit vs. Top、Sort vs. Order By,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71253759/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com