home / pf

albums_artists

5 rows where artist_id = 10163

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
22156 22156 22062 22062 10163 10163
23488 23488 23382 23382 10163 10163
24111 24111 24001 24001 10163 10163
24710 24710 24589 24589 10163 10163
26338 26338 26232 26232 10163 10163

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