home / pf

albums_artists

4 rows where artist_id = 5479

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
9440 9440 9093 9093 5479 5479
12501 12501 12162 12162 5479 5479
25928 25928 25830 25830 5479 5479
26154 26154 26052 26052 5479 5479

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