By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
World of SoftwareWorld of SoftwareWorld of Software
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Search
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
Reading: This is how DuckDB | Computer Week
Share
Sign In
Notification Show More
Font ResizerAa
World of SoftwareWorld of Software
Font ResizerAa
  • Software
  • Mobile
  • Computing
  • Gadget
  • Gaming
  • Videos
Search
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Have an existing account? Sign In
Follow US
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
World of Software > News > This is how DuckDB | Computer Week
News

This is how DuckDB | Computer Week

News Room
Last updated: 2026/06/27 at 9:48 PM
News Room Published 27 June 2026
Share
This is how DuckDB | Computer Week
SHARE

Query data with DuckDB

Once you’ve loaded data into DuckDB, you can query it using SQL expressions. The format does not differ from “normal” queries:

SELECT * FROM users WHERE ID>1000 ORDER BY Name DESC LIMIT 5;

If you want to use a client API for DuckDB queries, there are two options: You can pass SQL strings via the API – or use the client’s relational interface to build data queries programmatically. Specifically, this could look like this in Python with a JSON file:

import duckdb

file = duckdb.read_json("users.json")

file.select("*").filter("ID>1000").order("Name").limit(5)

In the case of Python, you also have the option of using the PySpark API to query DuckDB directly. It should be noted that the implementation does not (yet) support the full range of functions.

DuckDB’s SQL dialect also contains some analytics-related additional elements. For example, if you only want to query a subset of data within a table, you can do this using the SAMPLE clause. The resulting query runs significantly faster, but may also be less accurate. In addition, DuckDB also supports, among other things:

  • the PIVOT-Keyword to create corresponding tables,

  • Window functions as well

  • QUALIFY-Clauses to filter these.

DuckDB-Extensions

As mentioned earlier, DuckDB is not limited to the built-in data formats and behaviors. It is also possible to integrate various addons via the Extension API. For example, extensions are available for:

This article originally appeared at our sister publication Infoworld.com.

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Twitter Email Print
Share
What do you think?
Love0
Sad0
Happy0
Sleepy0
Angry0
Dead0
Wink0
Previous Article By letter: US government lifts ban on Claude Mythos By letter: US government lifts ban on Claude Mythos
Next Article NASA seeks space tug to sink ISS NASA seeks space tug to sink ISS
Leave a comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

248.1k Like
69.1k Follow
134k Pin
54.3k Follow

Latest News

GPT-5.6: OpenAI promises more performance with less token consumption
GPT-5.6: OpenAI promises more performance with less token consumption
Software
The hidden price of AI: Tech industry is buying gas turbines en masse
The hidden price of AI: Tech industry is buying gas turbines en masse
Gadget
China is diverting its largest rivers thousands of kilometers away. The price to pay is a huge environmental mystery
China is diverting its largest rivers thousands of kilometers away. The price to pay is a huge environmental mystery
Gaming
where to watch the free match live HD? 🔴
where to watch the free match live HD? 🔴
Mobile

You Might also Like

Large Language Model Tutorial: 5 Ways to Run LLMs Locally
News

Large Language Model Tutorial: 5 Ways to Run LLMs Locally

13 Min Read
Is fast charging harmful to the cell phone battery?
News

Is fast charging harmful to the cell phone battery?

4 Min Read
Your Android phone has an expiration date: here’s how to find out
News

Your Android phone has an expiration date: here’s how to find out

3 Min Read
The blind spot of European industry
News

The blind spot of European industry

9 Min Read
//

World of Software is your one-stop website for the latest tech news and updates, follow us now to get the news that matters to you.

Quick Link

  • Privacy Policy
  • Terms of use
  • Advertise
  • Contact

Topics

  • Computing
  • Software
  • Press Release
  • Trending

Sign Up for Our Newsletter

Subscribe to our newsletter to get our newest articles instantly!

World of SoftwareWorld of Software
Follow US
Copyright © All Rights Reserved. World of Software.
Welcome Back!

Sign in to your account

Lost your password?