home / pf

albums_artists

5 rows where artist_id = 705

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
731 731 698 698 705 705
2969 2969 2798 2798 705 705
4078 4078 3879 3879 705 705
8619 8619 8284 8284 705 705
11031 11031 10690 10690 705 705

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