home / pf

albums_artists

5 rows where artist_id = 4270

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6609 6609 6320 6320 4270 4270
13093 13093 12756 12756 4270 4270
17971 17971 17679 17679 4270 4270
21138 21138 21008 21008 4270 4270
25420 25420 25322 25322 4270 4270

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