home / pf

albums_artists

5 rows where artist_id = 5847

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
10281 10281 9940 9940 5847 5847
11496 11496 11159 11159 5847 5847
11860 11860 11518 11518 5847 5847
13537 13537 13186 13186 5847 5847
15103 15103 14759 14759 5847 5847

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