7 rows where timerange = 2

View and edit SQL

Link timerange weekhours
01-02 Uhr 2 1 1
01-02 Uhr 2 25 25
01-02 Uhr 2 49 49
01-02 Uhr 2 73 73
01-02 Uhr 2 97 97
01-02 Uhr 2 121 121
01-02 Uhr 2 145 145

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