home / pf

albums_artists

4 rows where artist_id = 1084

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1159 1159 1090 1090 1084 1084
3008 3008 2835 2835 1084 1084
6393 6393 6103 6103 1084 1084
7689 7689 7383 7383 1084 1084

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