Giter Site home page Giter Site logo

Comments (4)

alexander-beedie avatar alexander-beedie commented on August 20, 2024

Aliasing works fine, but we don't (currently) support the old-style "implicit join" syntax; using the more modern/standard JOIN … ON and/or JOIN … USING syntax will execute without any trouble:

ldf = pl.DataFrame({
    "a": [1, 2, 3, 4, 5, 6, 7, 1, 1],
    "b": [1, 1, 1, 1, 1, 1, 1, 10, 20],
})
rdf = pl.DataFrame({
    "a": [1, 2, 3, 4, 5, 6, 7],
    "b": [1, 1, 1, 1, 1, 1, 1],
})

pl.sql(
    """
    SELECT
        SUM(l.a) AS la_total,
        SUM(l.b) AS lb_total,
        SUM(r.b) as rb_total
    FROM
        ldf l JOIN rdf r USING (a, b)
    """
).collect()

# shape: (1, 3)
# ┌──────────┬──────────┬──────────┐
# │ la_total ┆ lb_total ┆ rb_total │
# │ ---      ┆ ---      ┆ ---      │
# │ i64      ┆ i64      ┆ i64      │
# ╞══════════╪══════════╪══════════╡
# │ 28       ┆ 7        ┆ 7        │
# └──────────┴──────────┴──────────┘

Now, I am looking at adding support for implicit joins, but I'd recommend use of JOIN … ON and/or JOIN … USING for SQL queries generally (and for the time-being Polars requires it) 👍

We have an open issue for implicit join support here: #16662.

from polars.

quasiben avatar quasiben commented on August 20, 2024

Thanks for the quick reponse @alexander-beedie . In the example above there is no join just a select

from polars.

alexander-beedie avatar alexander-beedie commented on August 20, 2024

Thanks for the quick reponse @alexander-beedie . In the example above there is no join just a select

There is - what you have written is the old-school syntax for an implicit Cartesian join of the two tables (which is possibly not what you intended?) ;)

Do you actually want to union the two tables? (You have to relate them somehow)

from polars.

quasiben avatar quasiben commented on August 20, 2024

I don't actually want the union. I was mostly playing around with sql and was trying to naively read/select. Thank you

from polars.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.