component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where mc_id = 16211
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 60 | 60 | 16211 16211 | 20705 20705 | 1 |
| 1957 | 1957 | 16211 16211 | 13365 13365 | 1 |
| 4210 | 4210 | 16211 16211 | 16700 16700 | 1 |
| 5124 | 5124 | 16211 16211 | 20708 20708 | 1 |
| 26345 | 26345 | 16211 16211 | 20717 20717 | 1 |
| 39940 | 39940 | 16211 16211 | 22156 22156 | 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)
);