home / pf

albums_labels

4 rows where label_id = 2009

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id label_id
7006 7006 6101 6101 Astro Nautico 2009
7208 7208 6273 6273 Astro Nautico 2009
8717 8717 7602 7602 Astro Nautico 2009
10430 10430 9125 9125 Astro Nautico 2009

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE TABLE albums_labels (
	album_id integer NOT NULL,
	label_id integer NOT NULL,
	FOREIGN KEY(album_id) REFERENCES albums(id),
	FOREIGN KEY(label_id) REFERENCES labels(id),
	UNIQUE(album_id,label_id)
);
Powered by Datasette · Queries took 64.57ms