component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where mc_id = 27065
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 11260 | 11260 | 27065 27065 | 21883 21883 | 1 |
| 67257 | 67257 | 27065 27065 | 17712 17712 | 1 |
| 80374 | 80374 | 27065 27065 | 10582 10582 | 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)
);