media_variant
3 rows where media = 295
This data as json, CSV (advanced)
| id ▼ | media | variant | study_code | study_status | raw_sample |
|---|---|---|---|---|---|
| 7057 | RTL BERLIN KOMBI Simulcast 295 | DS 1 | RMA70000206_ZT | ok | 274.43 |
| 7058 | RTL BERLIN KOMBI Simulcast 295 | Pre-Stream 2 | RMA70000206_ZP | ok | 183.6 |
| 7059 | RTL BERLIN KOMBI Simulcast 295 | In-Stream 3 | RMA70000206_ZI | ok | 228.09 |
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 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); CREATE UNIQUE INDEX ix_media_variant_study_code ON media_variant (study_code);