Skip to content

Commit

Permalink
needle in the haystack, no conversion to virtual column
Browse files Browse the repository at this point in the history
  • Loading branch information
tsenart committed Apr 25, 2024
1 parent 1840f96 commit e465eaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion axiom/queries.apl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
['clickbench-hits'] | extend userID = toint(UserID) | summarize c = count() by userID, SearchPhrase | order by c desc | take 10
['clickbench-hits'] | extend userID = toint(UserID) | summarize c = count() by userID, SearchPhrase | take 10
['clickbench-hits'] | extend m = datetime_part("Minute", _time), userID = toint(UserID) | summarize c = count() by userID, m, SearchPhrase | order by c desc | take 10
['clickbench-hits'] | extend userID = toint(UserID) | where userID == 435090932899640449 | project userID
['clickbench-hits'] | where UserID == "435090932899640449" | project UserID
['clickbench-hits'] | where URL contains_cs "google" | summarize Count = count()
['clickbench-hits'] | where URL contains_cs "google" and SearchPhrase != "" | summarize c = count(), MinURL = min(URL) by SearchPhrase | order by c desc | take 10
['clickbench-hits'] | extend userID = toint(UserID) | where Title contains_cs "Google" and URL !contains_cs ".google." and SearchPhrase != "" | summarize c = count(), MinURL = min(URL), MinTitle = min(Title), CountDistinctUserID = dcount(userID) by SearchPhrase | order by c desc | take 10
Expand Down

0 comments on commit e465eaf

Please sign in to comment.