home / pf

albums_artists

5 rows where artist_id = 8276

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
16666 16666 16356 16356 8276 8276
20805 20805 20648 20648 8276 8276
22528 22528 22434 22434 8276 8276
23237 23237 23133 23133 8276 8276
24308 24308 24196 24196 8276 8276

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