home / pf

albums_artists

4 rows where artist_id = 959

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1009 1009 953 953 959 959
7119 7119 6821 6821 959 959
11065 11065 10725 10725 959 959
27552 27552 27366 27366 959 959

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