home / pf

albums_artists

5 rows where artist_id = 5335

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
9114 9114 8771 8771 5335 5335
10427 10427 10085 10085 5335 5335
11076 11076 10736 10736 5335 5335
11553 11553 11215 11215 5335 5335
13401 13401 13051 13051 5335 5335

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