home / pf

albums_artists

6 rows where artist_id = 1022

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1080 1080 1024 1024 1022 1022
4672 4672 4455 4455 1022 1022
22875 22875 22780 22780 1022 1022
25071 25071 24966 24966 1022 1022
25187 25187 25082 25082 1022 1022
26329 26329 26224 26224 1022 1022

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.123ms