home / pf

albums_artists

5 rows where artist_id = 6179

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
10996 10996 10654 10654 6179 6179
14413 14413 14055 14055 6179 6179
15473 15473 15133 15133 6179 6179
16201 16201 15878 15878 6179 6179
17988 17988 17697 17697 6179 6179

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