home / pf

albums_artists

7 rows where artist_id = 3123

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4202 4202 4000 4000 3123 3123
11523 11523 11186 11186 3123 3123
14359 14359 14000 14000 3123 3123
17903 17903 17608 17608 3123 3123
19059 19059 18832 18832 3123 3123
20173 20173 19996 19996 3123 3123
26395 26395 26289 26289 3123 3123

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