Public
Edited
Oct 17, 2023
8 forks
1 star
Insert cell
Insert cell
chinook.db
SELECT name FROM sqlite_schema
Insert cell
chinook.db
SELECT * FROM albums
Insert cell
chinook.db
SELECT * FROM artists
Insert cell
chinook.db
SELECT * FROM tracks
Insert cell
Insert cell
db = DuckDBClient.of({
albums:albumsFile,
artists:artistsFile,
tracks:tracksFile
})
Insert cell
db
SELECT tracks.Name AS song,Title,artists.Name AS band
FROM tracks INNER JOIN albums
ON tracks.AlbumId = albums.AlbumId
INNER JOIN artists
ON albums.ArtistId = artists.ArtistId
Insert cell
db
SELECT tracks.Name AS song,Title,artists.Name AS band
FROM tracks INNER JOIN albums
ON tracks.AlbumId = albums.AlbumId
INNER JOIN artists
ON albums.ArtistId = artists.ArtistId
WHERE Milliseconds = (
SELECT max(Milliseconds)
FROM tracks
)
Insert cell
db
SELECT tracks.Name AS song,Title,artists.Name AS band
FROM tracks INNER JOIN albums
ON tracks.AlbumId = albums.AlbumId
INNER JOIN artists
ON albums.ArtistId = artists.ArtistId
WHERE band = 'Rush' AND Milliseconds < ALL(
SELECT Milliseconds
FROM tracks INNER JOIN albums
ON tracks.AlbumId = albums.AlbumId
INNER JOIN artists
ON albums.ArtistId = artists.ArtistId
WHERE artists.Name = 'Soundgarden'
)
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more