component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where mc_id = 14
Download this data as a CSV Spreadsheet (All Rows)
Suggested facets: component_frequency
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 7594 | 7594 | 14 14 | 22020 22020 | 1 |
| 8112 | 8112 | 14 14 | 21923 21923 | 1 |
| 23810 | 23810 | 14 14 | 22182 22182 | 12 |
| 28345 | 28345 | 14 14 | 13899 13899 | 1 |
| 66354 | 66354 | 14 14 | 22184 22184 | 24 |
| 91489 | 91489 | 14 14 | 22144 22144 | 12 |
CREATE TABLE [component_index] (
[mc_id] integer,
[component_id] integer,
[component_frequency] integer,
FOREIGN KEY (mc_id) REFERENCES multi_components(mc_id),
FOREIGN KEY (component_id) REFERENCES components(component_id)
);