component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where mc_id = 30139
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 371 | 371 | 30139 30139 | 20774 20774 | 1 |
| 28132 | 28132 | 30139 30139 | 17831 17831 | 1 |
| 28288 | 28288 | 30139 30139 | 18035 18035 | 1 |
| 52056 | 52056 | 30139 30139 | 15542 15542 | 1 |
| 63587 | 63587 | 30139 30139 | 2882 2882 | 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)
);