home / pf

albums_artists

6 rows where artist_id = 9841

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
21066 21066 20927 20927 9841 9841
22087 22087 21990 21990 9841 9841
22501 22501 22405 22405 9841 9841
23099 23099 22998 22998 9841 9841
25237 25237 25133 25133 9841 9841
26135 26135 26032 26032 9841 9841

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