component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where mc_id = 5168
Download this data as a CSV Spreadsheet (All Rows)
Suggested facets: component_frequency
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 10413 | 10413 | 5168 5168 | 575 575 | 1 |
| 16484 | 16484 | 5168 5168 | 22157 22157 | 2 |
| 50872 | 50872 | 5168 5168 | 21921 21921 | 1 |
| 57867 | 57867 | 5168 5168 | 21627 21627 | 1 |
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)
);