home / pf

albums_artists

4 rows where artist_id = 1515

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1689 1689 1592 1592 1515 1515
3164 3164 2986 2986 1515 1515
5869 5869 5602 5602 1515 1515
11812 11812 11471 11471 1515 1515

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