home / pf

albums_artists

5 rows where artist_id = 3179

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4302 4302 4097 4097 3179 3179
8031 8031 7719 7719 3179 3179
11027 11027 10686 10686 3179 3179
13637 13637 13286 13286 3179 3179
27570 27570 27381 27381 3179 3179

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