home / pf

albums_artists

4 rows where artist_id = 4283

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6638 6638 6347 6347 4283 4283
7631 7631 7324 7324 4283 4283
21416 21416 21294 21294 4283 4283
23603 23603 23500 23500 4283 4283

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