component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where mc_id = 22575
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 55663 | 55663 | 22575 22575 | 65 65 | 1 |
| 58406 | 58406 | 22575 22575 | 22312 22312 | 7 |
| 58848 | 58848 | 22575 22575 | 10 10 | 24 |
| 66076 | 66076 | 22575 22575 | 22184 22184 | 44 |
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)
);