3 rows where weekhours = 115

View and edit SQL

Link weekday weekhours
Fr 5 115 115
Mo-So 8 115 115
Mo-Fr 9 115 115

Advanced export

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

CSV options:

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