home / pf

albums_artists

3 rows where artist_id = 2926

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3859 3859 3655 3655 2926 2926
5089 5089 4846 4846 2926 2926
13925 13925 13567 13567 2926 2926

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