home / pf

albums_artists

5 rows where artist_id = 3059

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4089 4089 3890 3890 3059 3059
4920 4920 4688 4688 3059 3059
10278 10278 9938 9938 3059 3059
17278 17278 16974 16974 3059 3059
20274 20274 20099 20099 3059 3059

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