home / pf

albums_artists

4 rows where artist_id = 2513

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3143 3143 2965 2965 2513 2513
3506 3506 3309 3309 2513 2513
8637 8637 8302 8302 2513 2513
9552 9552 9207 9207 2513 2513

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