media_variant
3 rows where media = 305
This data as json, CSV (advanced)
| id ▼ | media | variant | study_code | study_status | raw_sample |
|---|---|---|---|---|---|
| 7297 | RTL BERLIN KOMBI Simulcast 305 | DS 1 | RMA70000206_ZT | ok | 391.7 |
| 7298 | RTL BERLIN KOMBI Simulcast 305 | Pre-Stream 2 | RMA70000206_ZP | ok | 275.06 |
| 7299 | RTL BERLIN KOMBI Simulcast 305 | In-Stream 3 | RMA70000206_ZI | ok | 332.19 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE media_variant ( id INTEGER NOT NULL, media INTEGER, variant INTEGER, study_code VARCHAR(100), study_status VARCHAR(7), raw_sample INTEGER, PRIMARY KEY (id), UNIQUE (id), FOREIGN KEY(media) REFERENCES media (id), FOREIGN KEY(variant) REFERENCES variant (id) ); CREATE UNIQUE INDEX ix_media_variant_study_code ON media_variant (study_code); CREATE INDEX ix_media_variant_media ON media_variant (media); CREATE INDEX ix_media_variant_variant ON media_variant (variant); CREATE INDEX ix_media_variant_study_status ON media_variant (study_status);