home / pf

albums_artists

4 rows where artist_id = 2969

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3935 3935 3733 3733 2969 2969
11212 11212 10874 10874 2969 2969
20530 20530 20368 20368 2969 2969
23611 23611 23508 23508 2969 2969

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