home / pf

albums_artists

4 rows where artist_id = 4313

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6702 6702 6411 6411 4313 4313
9696 9696 9348 9348 4313 4313
12150 12150 11811 11811 4313 4313
13514 13514 13163 13163 4313 4313

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