component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where mc_id = 10062
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 9959 | 9959 | 10062 10062 | 17788 17788 | 1 |
| 58978 | 58978 | 10062 10062 | 10 10 | 1 |
| 69453 | 69453 | 10062 10062 | 17789 17789 | 1 |
| 87113 | 87113 | 10062 10062 | 17791 17791 | 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)
);