component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where mc_id = 6478
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 3234 | 3234 | 6478 6478 | 15627 15627 | 1 |
| 29682 | 29682 | 6478 6478 | 21655 21655 | 1 |
| 31396 | 31396 | 6478 6478 | 18441 18441 | 1 |
| 32681 | 32681 | 6478 6478 | 2197 2197 | 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)
);