home / pf

albums_artists

5 rows where artist_id = 7262

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
13814 13814 13458 13458 7262 7262
17430 17430 17137 17137 7262 7262
19485 19485 19271 19271 7262 7262
20372 20372 20204 20204 7262 7262
20764 20764 20606 20606 7262 7262

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.167ms