Remix.run Logo
metadata a day ago

Google SQL has it now:

https://cloud.google.com/blog/products/data-analytics/simpli...

It's pretty neat:

    FROM mydataset.Produce
    |> WHERE sales > 0
    |> AGGREGATE SUM(sales) AS total_sales, COUNT(\*) AS num_sales
       GROUP BY item;
Edit: formatting
ryguyrg a day ago | parent [-]

note that DuckDB allows that reverse ordering (FROM-first)

FROM table SELECT foo, bar WHERE zoo=“goo”

viggity 21 hours ago | parent [-]

it makes intellisense/autocomplete work a hell of a lot easier. LINQ in dotnet does the same thing.