home / pf

albums_artists

5 rows where artist_id = 4416

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6911 6911 6612 6612 4416 4416
11410 11410 11071 11071 4416 4416
17566 17566 17270 17270 4416 4416
20394 20394 20227 20227 4416 4416
22678 22678 22585 22585 4416 4416

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