home / pf

albums_artists

6 rows where artist_id = 10389

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
22813 22813 22722 22722 10389 10389
22992 22992 22895 22895 10389 10389
25129 25129 25024 25024 10389 10389
25877 25877 25779 25779 10389 10389
26194 26194 26092 26092 10389 10389
26304 26304 26202 26202 10389 10389

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