Tobias Brandt
Tobias Brandt
I think it makes sense to adopt the same defaults as SQL, since as you point out it doesn't make much sense otherwise. --- On a perhaps (un)related note, I'm...
I'm trying to understand the query as per description: > And the query in English is: For every three-hour bucket of timestamp, show the five most interesting keywords, where interesting...
I also agree with supporting both uses of `in` with the same name and syntax like `x | in [1, 2, 3]`.
I got the query to work in Postgres, I just had to add the following line to `top3`: ```elm select [d, cnt, c] ``` Final: ```elm table daily_colors = (...
I had the same expectation as @max-sixty that every row would be rank 1 in the example below: > Not sure if I'm still thinking about it wrong, but I...
Thanks. I understand there may be performance implications and some combinations may not be feasible. My complaint is more about how this is documented and communicated. I admit I probably...
That sums it up well and is my understanding as well.
How about making this a type of `table` definition at the top rather than a `from` statement? Where I usually need this type of thing is for mapping categoricals or...
Apologies, I hadn't caught up on all the discussion in #286 before my previous comment. --- @aljazerzen Thanks for the table example - it's succinct and ergonomic. --- @max-sixty I...
Done