home / pf

albums_artists

6 rows where artist_id = 5897

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
10418 10418 10077 10077 5897 5897
16427 16427 16113 16113 5897 5897
17565 17565 17269 17269 5897 5897
18713 18713 18468 18468 5897 5897
21184 21184 21057 21057 5897 5897
22546 22546 22452 22452 5897 5897

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