7 rows where timerange = 21

View and edit SQL

Link timerange weekhours
20-21 Uhr 21 20 20
20-21 Uhr 21 44 44
20-21 Uhr 21 68 68
20-21 Uhr 21 92 92
20-21 Uhr 21 116 116
20-21 Uhr 21 140 140
20-21 Uhr 21 164 164

Advanced export

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

CSV options:

CREATE TABLE timerange_weekhours (
	timerange INTEGER NOT NULL, 
	weekhours INTEGER NOT NULL, 
	PRIMARY KEY (timerange, weekhours), 
	FOREIGN KEY(timerange) REFERENCES timerange (id), 
	FOREIGN KEY(weekhours) REFERENCES weekhour (id)
);