Using MotherDuck UI
Login
To log in to MotherDuck UI, please go to app.motherduck.com. You will be redirected to our web UI.
Main Window
Executing a sample query
After you log in, run the following SQL query:
SELECT
country_name, city, pm25_concentration AS pm25_pollution
FROM sample_data.who.ambient_air_quality
WHERE year=2019 AND pm25_concentration IS NOT NULL
ORDER BY pm25_pollution ASC
This query accesses the Sample Data Database which is attached by default.
MotherDuck executes this query in the cloud. Query results are saved into your browser into an interactive panel for fast data exploration with data sorting, filtering, and pivoting.
You can also click the Expand button on the top right of each cell to expand the editor and results area.
Diving into your data with Column Explorer
Exploring tables or resultsets
The Column Explorer allows you to see stats on either a selected table or the resultset from the selected notebook cell.