home / pf

albums_artists

4 rows where artist_id = 103

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
108 108 106 106 103 103
3233 3233 3050 3050 103 103
6914 6914 6615 6615 103 103
8341 8341 8018 8018 103 103

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