5 rows where spotset_id = 56

View and edit SQL

Link spotset_id weekdays_id
Ströer (12) 56 Sa 1
Ströer (12) 56 So 2
Ströer (12) 56 Ø Werktag Mo-Fr 3
Ströer (12) 56 Ø Woche gesamt Mo-Fr 4
Ströer (12) 56 Ø Woche gesamt Mo-So 7

Advanced export

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

CSV options:

CREATE TABLE spotset_weekdays (
	spotset_id INTEGER NOT NULL, 
	weekdays_id INTEGER NOT NULL, 
	PRIMARY KEY (spotset_id, weekdays_id), 
	FOREIGN KEY(spotset_id) REFERENCES spotset (id), 
	FOREIGN KEY(weekdays_id) REFERENCES weekday (id)
);