home / pf

albums_artists

4 rows where artist_id = 6899

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
12742 12742 12403 12403 6899 6899
17966 17966 17674 17674 6899 6899
20355 20355 20187 20187 6899 6899
22611 22611 22518 22518 6899 6899

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