DuckDB Tutorial For Beginners

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ม.ค. 2025

ความคิดเห็น • 39

  • @StasPakhomov-wj1nn
    @StasPakhomov-wj1nn ปีที่แล้ว +4

    perfect video, answered all my questions in the order I had them

  • @HundahlNiels
    @HundahlNiels 19 วันที่ผ่านมา +1

    When you referred to the descriptions below at about 9 minutes into the video, I burst into laughter 😂 (the content is also great by the way)

  • @ManticoreRoko
    @ManticoreRoko 10 หลายเดือนก่อน +1

    nice video, good job. Thank you! Let more video with DuckDB

  • @cotneit
    @cotneit ปีที่แล้ว +12

    Thanks for that VSCode shortcut! Super useful!

  • @andfanilo
    @andfanilo ปีที่แล้ว +7

    Love the vibe of the tutorial, and also very insightful :D time to build the data edutainment TH-cam!

    • @aflous
      @aflous ปีที่แล้ว +2

      Waiting for a Ducky Streamlit tutorial on this matter 😁😁

  • @oleslav07
    @oleslav07 ปีที่แล้ว +1

    Amazing video, it's actually helps. Thank you a lot!

  • @gouravkhanijoe1059
    @gouravkhanijoe1059 หลายเดือนก่อน +1

    Perfect video for beginners.

  • @DataManMarcel
    @DataManMarcel ปีที่แล้ว +2

    Thank you for sharing!

  • @kresnadev
    @kresnadev 8 หลายเดือนก่อน

    Thank you for the video, it's definitely helps me understand faster for duckdb

  • @chriskeo392
    @chriskeo392 3 หลายเดือนก่อน

    What an insanely great tutorial

  • @romainjouhameau2764
    @romainjouhameau2764 ปีที่แล้ว +1

    I learned a lot, thanks !

  • @CaribouDataScience
    @CaribouDataScience ปีที่แล้ว +1

    Thanks that was helpful!

  • @prashanthb6521
    @prashanthb6521 23 วันที่ผ่านมา

    How much time does it take to load a db from disk ?

  • @robb7148
    @robb7148 ปีที่แล้ว +1

    As a VIM and TMUX nerd I feel seen 🥰

  • @GiriPrasath.D
    @GiriPrasath.D 3 หลายเดือนก่อน

    how to interage the duckdb sql and cmd line?

  • @alexzir
    @alexzir ปีที่แล้ว

    Thanks!

  • @valthonisprime
    @valthonisprime 7 หลายเดือนก่อน

    Does anyone know how to connect to SSMS using a linked server? Is it even possible? I'm trying to use duckdb as an in-between for csv files and then move them to SQL Server.

  • @SreeNair-s1y
    @SreeNair-s1y หลายเดือนก่อน

    Great technology

  • @U-Trance
    @U-Trance ปีที่แล้ว

    Cant edit the preferences file for the keyboard shortcut. Stuck in read only mode

    • @U-Trance
      @U-Trance ปีที่แล้ว +1

      I was in the default file, you need the other one

  • @higiniofuentes2551
    @higiniofuentes2551 4 หลายเดือนก่อน

    Is xml files can be used?
    Thank you!

    • @motherduckdb
      @motherduckdb  3 หลายเดือนก่อน

      sadly not, but some people are already requesting this here : github.com/duckdb/duckdb/discussions/9547
      Give your vote! :)

  • @MarcLamberti
    @MarcLamberti ปีที่แล้ว +2

    Awesome tutorial Mehdi! ❤ (PS: You need to help me learning your video editing skills)

    • @mehdio
      @mehdio ปีที่แล้ว +1

      Thanks! Of course, my only condition is that it has to be done at the beach, on Mauritius Island.

    • @ryguyrg
      @ryguyrg ปีที่แล้ว +1

      @@mehdio um, this sounds like a class worth attending in person. can i join too?!?!?

    • @MarcLamberti
      @MarcLamberti ปีที่แล้ว +2

      @@ryguyrg you're all welcome ❤

  • @markkinuthia6178
    @markkinuthia6178 ปีที่แล้ว

    How can I setup in Windows, I downloaded the .zip, only challenge is I can't use it in the cli

    • @kelvinxg6754
      @kelvinxg6754 4 หลายเดือนก่อน

      If you have docker installed. You can pull duckdb and you can use it inside the container.

  • @offthepathworks9171
    @offthepathworks9171 ปีที่แล้ว +2

    Great stuff, but your tutorial (as well as duckdb website) suffers from a chicken-or-the-egg (or duck??) problem. Let's say I have a .csv file, I install duckdb on Windows. I can load a .csv file quite easily, but how do I persist it to a .db file? Most of your intro stuff doesn't mention it at all. How do I create a motherduckin' .duckdb file? Thanks!

    • @motherduckdb
      @motherduckdb  ปีที่แล้ว +2

      Hey there! We actually covered this at 2:42 th-cam.com/video/ZX5FdqzGT1E/w-d-xo.html
      To persist the data through a .db file, you simply need to pass a path while launching DuckDB CLI. So "duckdb mydb.db". You can then load your csv into a table. If you mention that path again, it will load the database if it exists.
      Hope it helps!

    • @offthepathworks9171
      @offthepathworks9171 ปีที่แล้ว

      @@motherduckdb Thanks! Sorry for my duck** yelling. So let's say I use 'duckdb' , create a table, load up my csv, use .open "sample_duck.db", that table is from then on persisted in my "sample_duck.db" file?

    • @motherduckdb
      @motherduckdb  ปีที่แล้ว +1

      @@offthepathworks9171 in order to persist the data, you should .open "sample_duck.db" before creating your table and loading your csv.

    • @offthepathworks9171
      @offthepathworks9171 ปีที่แล้ว

      @@motherduckdb Yes, that was my original point, if I just open duckdb (maybe as a naive first time user) or just wanting to get a quick check, and I load up an csv and convert it to a table I have no way to persist that data to a duck db database from within that session?

    • @motherduckdb
      @motherduckdb  ปีที่แล้ว +5

      @@offthepathworks9171 sorry, was trying to advise on best practices. yes, you can persist in-memory tables after creating them by using the 'ATTACH' syntax. Simply "ATTACH 'mydb.ddb' AS mydb" and then "CREATE TABLE mydb.mytable AS SELECT * FROM memory.mytable"

  • @TheOldarra
    @TheOldarra 3 หลายเดือนก่อน

    How to Install duckdb on a Chromebook ? I did't succeed.

  • @joostschuur
    @joostschuur 2 หลายเดือนก่อน

    None of the whatnow?? 😂

  • @drewv353
    @drewv353 ปีที่แล้ว

    *Promosm*