media
5 rows where area = 3
This data as json, CSV (advanced)
Suggested facets: audio_type
| id ▼ | title | study_code | order | audio_type | combi_type | area | publisher |
|---|---|---|---|---|---|---|---|
| 132 | ARD MEDIA West-Kombi | HZAR14 | 134 | Klassik 2 | Kombination 3 | West 3 | |
| 133 | Deutsches Städte-Network (DSN) Total | MA90091061 | 135 | Konvergenz 1 | Kombination 3 | West 3 | |
| 134 | Deutsches Städte-Network (DSN) | HZROLP | 136 | Klassik 2 | Kombination 3 | West 3 | |
| 135 | Deutsches Städte-Network (DSN) Online Audio | MA70001028 | 137 | Online-Audio 3 | Kombination 3 | West 3 | |
| 136 | RMS WEST KOMBI | HZRWPA | 138 | Klassik 2 | Kombination 3 | West 3 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE media (
id INTEGER NOT NULL,
title VARCHAR(250),
study_code VARCHAR(100),
"order" INTEGER,
audio_type INTEGER,
combi_type INTEGER,
area INTEGER,
publisher INTEGER,
PRIMARY KEY (id),
UNIQUE (id),
FOREIGN KEY(audio_type) REFERENCES audio_type (id),
FOREIGN KEY(combi_type) REFERENCES combi_type (id),
FOREIGN KEY(area) REFERENCES area (id),
FOREIGN KEY(publisher) REFERENCES publisher (id)
);
CREATE INDEX ix_media_publisher ON media (publisher);
CREATE INDEX ix_media_audio_type ON media (audio_type);
CREATE INDEX ix_media_area ON media (area);
CREATE INDEX ix_media_combi_type ON media (combi_type);
CREATE UNIQUE INDEX ix_media_study_code ON media (study_code);
CREATE INDEX ix_media_order ON media ("order");