2 rows where weekhours = 123

View and edit SQL

Link timerange weekhours
03-04 Uhr 4 123 123
00-24 Uhr 25 123 123

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