home / pf

albums_artists

4 rows where artist_id = 10111

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
21964 21964 21864 21864 10111 10111
21965 21965 21865 21865 10111 10111
22297 22297 22207 22207 10111 10111
24505 24505 24387 24387 10111 10111

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