8 rows where spotset_id = 11

View and edit SQL

Link spotset_id timerange_id
Goldbach Germany 11 00-06 Uhr 2
Goldbach Germany 11 06-09 Uhr 11
Goldbach Germany 11 09-12 Uhr 17
Goldbach Germany 11 12-15 Uhr 24
Goldbach Germany 11 15-18 Uhr 29
Goldbach Germany 11 18-21 Uhr 35
Goldbach Germany 11 21-24 Uhr 40
Goldbach Germany 11 ganztägig 44

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)
);