component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where mc_id = 1728
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 461 | 461 | 1728 1728 | 20774 20774 | 1 |
| 2379 | 2379 | 1728 1728 | 19129 19129 | 1 |
| 30247 | 30247 | 1728 1728 | 3431 3431 | 1 |
| 52245 | 52245 | 1728 1728 | 15542 15542 | 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)
);