home / pf

albums_artists

7 rows where artist_id = 675

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
699 699 667 667 675 675
3085 3085 2908 2908 675 675
4417 4417 4204 4204 675 675
5716 5716 5452 5452 675 675
7226 7226 6927 6927 675 675
8563 8563 8230 8230 675 675
9347 9347 8998 8998 675 675

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