component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where mc_id = 28085
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 4303 | 4303 | 28085 28085 | 20207 20207 | 1 |
| 9761 | 9761 | 28085 28085 | 74 74 | 1 |
| 37499 | 37499 | 28085 28085 | 22259 22259 | 1 |
| 55931 | 55931 | 28085 28085 | 7061 7061 | 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)
);