component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where component_id = 17857
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 68058 | 68058 | 22528 22528 | 17857 17857 | 1 |
| 68059 | 68059 | 17841 17841 | 17857 17857 | 1 |
| 68060 | 68060 | 22428 22428 | 17857 17857 | 1 |
| 68061 | 68061 | 27325 27325 | 17857 17857 | 1 |
| 68062 | 68062 | 24079 24079 | 17857 17857 | 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)
);