component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where mc_id = 5866
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 418 | 418 | 5866 5866 | 20774 20774 | 1 |
| 2427 | 2427 | 5866 5866 | 16886 16886 | 1 |
| 52195 | 52195 | 5866 5866 | 15542 15542 | 1 |
| 61733 | 61733 | 5866 5866 | 16855 16855 | 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)
);