home / pf

albums_artists

4 rows where artist_id = 5330

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
9107 9107 8767 8767 5330 5330
12894 12894 12551 12551 5330 5330
21213 21213 21087 21087 5330 5330
24958 24958 24849 24849 5330 5330

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