component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where component_id = 15799
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 85433 | 85433 | 14770 14770 | 15799 15799 | 1 |
| 85434 | 85434 | 14772 14772 | 15799 15799 | 1 |
| 85435 | 85435 | 14774 14774 | 15799 15799 | 1 |
| 85436 | 85436 | 14771 14771 | 15799 15799 | 1 |
| 85437 | 85437 | 14773 14773 | 15799 15799 | 1 |
| 85438 | 85438 | 14775 14775 | 15799 15799 | 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)
);