home / pf

albums_artists

5 rows where artist_id = 1369

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1498 1498 1414 1414 1369 1369
2274 2274 2131 2131 1369 1369
2275 2275 2132 2132 1369 1369
5301 5301 5053 5053 1369 1369
26426 26426 26319 26319 1369 1369

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