home / pf

albums_artists

4 rows where artist_id = 3040

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4051 4051 3851 3851 3040 3040
12576 12576 12236 12236 3040 3040
13720 13720 13366 13366 3040 3040
14004 14004 13650 13650 3040 3040

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