component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where mc_id = 34486
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 2213 | 2213 | 34486 34486 | 17067 17067 | 1 |
| 42551 | 42551 | 34486 34486 | 13268 13268 | 1 |
| 59881 | 59881 | 34486 34486 | 22118 22118 | 1 |
| 85383 | 85383 | 34486 34486 | 15735 15735 | 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)
);