home / pf

albums_artists

5 rows where artist_id = 6079

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
10788 10788 10451 10451 6079 6079
15530 15530 15189 15189 6079 6079
19981 19981 19795 19795 6079 6079
22222 22222 22131 22131 6079 6079
23557 23557 23453 23453 6079 6079

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