home / pf

albums_artists

5 rows where artist_id = 156

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
161 161 156 156 156 156
706 706 673 673 156 156
1768 1768 1668 1668 156 156
2490 2490 2339 2339 156 156
27173 27173 27013 27013 156 156

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