component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where mc_id = 29303
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 1751 | 1751 | 29303 29303 | 20488 20488 | 1 |
| 5581 | 5581 | 29303 29303 | 20382 20382 | 1 |
| 30112 | 30112 | 29303 29303 | 756 756 | 1 |
| 56128 | 56128 | 29303 29303 | 817 817 | 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)
);