home / pf

albums_artists

5 rows where artist_id = 6373

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
11446 11446 11108 11108 6373 6373
14833 14833 14481 14481 6373 6373
18353 18353 18078 18078 6373 6373
21612 21612 21498 21498 6373 6373
23370 23370 23268 23268 6373 6373

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