component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where mc_id = 12163
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 3797 | 3797 | 12163 12163 | 16698 16698 | 1 |
| 5338 | 5338 | 12163 12163 | 18041 18041 | 1 |
| 8413 | 8413 | 12163 12163 | 2259 2259 | 1 |
| 32751 | 32751 | 12163 12163 | 15786 15786 | 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)
);