component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where mc_id = 33123
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 2186 | 2186 | 33123 33123 | 18948 18948 | 1 |
| 22971 | 22971 | 33123 33123 | 22157 22157 | 1 |
| 31913 | 31913 | 33123 33123 | 21487 21487 | 1 |
| 67571 | 67571 | 33123 33123 | 21689 21689 | 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)
);