home / pf

albums_artists

5 rows where artist_id = 6908

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
12775 12775 12433 12433 6908 6908
15949 15949 15610 15610 6908 6908
16257 16257 15935 15935 6908 6908
18639 18639 18389 18389 6908 6908
22176 22176 22082 22082 6908 6908

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