home / pf

albums_artists

5 rows where artist_id = 145

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
150 150 145 145 145 145
2529 2529 2377 2377 145 145
10011 10011 9666 9666 145 145
13873 13873 13516 13516 145 145
17425 17425 17131 17131 145 145

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.4ms