component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where component_id = 19324
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 26528 | 26528 | 12625 12625 | 19324 19324 | 1 |
| 26529 | 26529 | 13703 13703 | 19324 19324 | 1 |
| 26530 | 26530 | 12312 12312 | 19324 19324 | 1 |
| 26531 | 26531 | 3723 3723 | 19324 19324 | 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)
);