component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where mc_id = 12011
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 2308 | 2308 | 12011 12011 | 15569 15569 | 1 |
| 28536 | 28536 | 12011 12011 | 15790 15790 | 1 |
| 42661 | 42661 | 12011 12011 | 13268 13268 | 1 |
| 42894 | 42894 | 12011 12011 | 15633 15633 | 1 |
| 52345 | 52345 | 12011 12011 | 3937 3937 | 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)
);