home / pf

albums_artists

5 rows where artist_id = 5279

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
8966 8966 8626 8626 5279 5279
11920 11920 11577 11577 5279 5279
15661 15661 15323 15323 5279 5279
19575 19575 19363 19363 5279 5279
21936 21936 21836 21836 5279 5279

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