home / pf

albums_artists

7 rows where artist_id = 404

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
413 413 395 395 404 404
1475 1475 1391 1391 404 404
1691 1691 1593 1593 404 404
2957 2957 2786 2786 404 404
5000 5000 4763 4763 404 404
7625 7625 7318 7318 404 404
16104 16104 15776 15776 404 404

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