home / pf

albums_artists

5 rows where artist_id = 8292

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
16723 16723 16414 16414 8292 8292
18824 18824 18580 18580 8292 8292
20491 20491 20327 20327 8292 8292
20754 20754 20596 20596 8292 8292
21510 21510 21389 21389 8292 8292

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 66.757ms