3 rows where spotset_id = 11

View and edit SQL

Link spotset_id frequency_id
Goldbach Germany 11 11 11
Goldbach Germany 11 22 22
Goldbach Germany 11 26 26

Advanced export

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

CSV options:

CREATE TABLE spotset_frequencies (
	spotset_id INTEGER NOT NULL, 
	frequency_id INTEGER NOT NULL, 
	PRIMARY KEY (spotset_id, frequency_id), 
	FOREIGN KEY(spotset_id) REFERENCES spotset (id), 
	FOREIGN KEY(frequency_id) REFERENCES frequency (id)
);