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 |
|---|---|---|---|---|---|---|---|
| 136 | ARD MEDIA West-Kombi | HZAR13 | 138 | Klassik 2 | Kombination 3 | West 3 | |
| 137 | Deutsches Städte-Network (DSN) Total | MA90091061 | 139 | Konvergenz 1 | Kombination 3 | West 3 | |
| 138 | Deutsches Städte-Network (DSN) | HZROLP | 140 | Klassik 2 | Kombination 3 | West 3 | |
| 139 | Deutsches Städte-Network (DSN) Online Audio | MA70001028 | 141 | Online-Audio 3 | Kombination 3 | West 3 | |
| 140 | RMS WEST KOMBI | HZRWP9 | 142 | 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_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");
CREATE INDEX ix_media_publisher ON media (publisher);
CREATE INDEX ix_media_audio_type ON media (audio_type);