Composable Queries with DuckDB

Поделиться
HTML-код
  • Опубликовано: 19 сен 2024
  • In this video, we'll learn about DuckDB's relational API that's available in the Python package.
    Resources ▼
    ▶ Gwen Shapira: Things Databases don't do but should - www.thenile.de...
    ▶ Jeff Sackmann's Tennis Repository - github.com/Jef...
    ▶ DuckDB's Relational API - duckdb.org/doc...
  • НаукаНаука

Комментарии • 14

  • @danieleden1856
    @danieleden1856 Год назад +3

    Great video mate, reminds me a lot of ORM style composition against datasets but with the added benefit of columnar storage with duck

    • @learndatawithmark
      @learndatawithmark  Год назад

      Yeh it's gonna be interesting to see how that feature develops over time because it's definitely helpful to not have to write queries from scratch every time!

  • @shibak4
    @shibak4 Год назад +3

    Fantastic demo, Mark. Thank you.

  • @omarmoreira86
    @omarmoreira86 Год назад +1

    Mark, amazing work with duckdb videos. You're the best! Regards from Brazil!

  • @alfredoramirez3813
    @alfredoramirez3813 Год назад +1

    Your videos are awesome.. thx

  • @kuatroka
    @kuatroka Год назад

    Thanks for the video. Great as usual. One slightly tangental question: are there any mechanism in DuckDB to accomplish what Materialised Views or Projections do? That is, updated the aggregated data on the fly in the target table as soon as the source/staging table gets updated or the only mechanism is to have an ETL pipeline? I'm asking in the context of python. 1. Loading parquet to staging DuckDB table > 2. real-time update of an aggregated table. Thanks

    • @learndatawithmark
      @learndatawithmark  Год назад +1

      As far as I know there isn't, but I did find a discussion about implementing the feature over here - github.com/duckdb/duckdb/discussions/3638

  • @ivan-nm1xn
    @ivan-nm1xn 4 месяца назад

    Loved it! Btw, what repl is this?

  • @Vikramhhj
    @Vikramhhj Год назад

    How to install duckdb for windows

    • @learndatawithmark
      @learndatawithmark  Год назад +1

      Did you try the instructions on the installation page? duckdb.org/docs/installation/