home / pf

albums_artists

5 rows where artist_id = 4119

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6226 6226 5946 5946 4119 4119
8593 8593 8260 8260 4119 4119
11806 11806 11465 11465 4119 4119
15630 15630 15292 15292 4119 4119
26676 26676 26554 26554 4119 4119

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