Really intriguing article about a SQL syntax extension that has apparently already been trialed at Google.

As someone who works with SQL for hours every week, this makes me hopeful for potential improvements, although the likelihood of any changes to SQL arriving in my sector before I retire seems slim.

  • xmunk@sh.itjust.works
    link
    fedilink
    arrow-up
    8
    arrow-down
    3
    ·
    7 months ago

    The reorganization of statements is excellent but the pipe operator itself is unnecessary and annoying. It’d be far better to just rearrange the clauses and call it a day, relying on the keywords that are still present to signify clause termination…

    Especially once we get into subqueries and CTES, I never want to write:

    |> LEFT JOIN |> FROM foo |> GROUP BY clusterid |> SELECT clusterid, COUNT(*)
          ON cluster.id = foo.clusterid
    

    And I’m also not splitting out a trivial subselect like that into four lines because I respect my reader.