home / pf

albums_artists

4 rows where artist_id = 5280

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
8970 8970 8630 8630 5280 5280
12262 12262 11925 11925 5280 5280
17956 17956 17664 17664 5280 5280
22595 22595 22501 22501 5280 5280

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE TABLE albums_artists (
	album_id integer NOT NULL,
	artist_id integer NOT NULL,
	FOREIGN KEY(artist_id) REFERENCES artists(id),
	FOREIGN KEY(album_id) REFERENCES albums(id),
	UNIQUE(album_id, artist_id)
);
Powered by Datasette · Queries took 49.374ms