2 rows where weekhours = 156

View and edit SQL

Link weekday weekhours
So 7 156 156
Mo-So 8 156 156

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