home / pf

albums_artists

5 rows where artist_id = 5823

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
10217 10217 9878 9878 5823 5823
12562 12562 12222 12222 5823 5823
18918 18918 18677 18677 5823 5823
23680 23680 23574 23574 5823 5823
24452 24452 24341 24341 5823 5823

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