4 rows where weekdays_id = 5

View and edit SQL

Link spotset_id weekdays_id
Ströer (3) 23 Ø Woche gesamt Mo-Sa 5
Ströer (4) 24 Ø Woche gesamt Mo-Sa 5
Ströer (10) 54 Ø Woche gesamt Mo-Sa 5
Ströer (11) 55 Ø Woche gesamt Mo-Sa 5

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