home / pf

albums_artists

5 rows where artist_id = 5155

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
8661 8661 8326 8326 5155 5155
12650 12650 12310 12310 5155 5155
16828 16828 16519 16519 5155 5155
17399 17399 17105 17105 5155 5155
19249 19249 19030 19030 5155 5155

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