home / pf

albums_artists

6 rows where artist_id = 5436

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
9339 9339 8991 8991 5436 5436
15582 15582 15242 15242 5436 5436
17908 17908 17613 17613 5436 5436
20146 20146 19969 19969 5436 5436
22670 22670 22577 22577 5436 5436
22958 22958 22862 22862 5436 5436

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