4 rows where timerange_id = 42

View and edit SQL

Link spotset_id timerange_id
mcR&D 34 22-24 Uhr 42
mcR&D (1) 35 22-24 Uhr 42
mcR&D (2) 72 22-24 Uhr 42
mcR&D (3) 73 22-24 Uhr 42

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE spotset_timeranges (
	spotset_id INTEGER NOT NULL, 
	timerange_id INTEGER NOT NULL, 
	PRIMARY KEY (spotset_id, timerange_id), 
	FOREIGN KEY(spotset_id) REFERENCES spotset (id), 
	FOREIGN KEY(timerange_id) REFERENCES time_range (id)
);