home / pf

albums_artists

5 rows where artist_id = 313

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
320 320 306 306 313 313
13945 13945 13588 13588 313 313
16930 16930 16622 16622 313 313
20034 20034 19852 19852 313 313
23806 23806 23696 23696 313 313

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