7 rows where timerange = 19

View and edit SQL

Link timerange weekhours
18-19 Uhr 19 18 18
18-19 Uhr 19 42 42
18-19 Uhr 19 66 66
18-19 Uhr 19 90 90
18-19 Uhr 19 114 114
18-19 Uhr 19 138 138
18-19 Uhr 19 162 162

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