component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
7 rows where component_id = 17790
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 68354 | 68354 | 23473 23473 | 17790 17790 | 1 |
| 68355 | 68355 | 16736 16736 | 17790 17790 | 1 |
| 68356 | 68356 | 16643 16643 | 17790 17790 | 1 |
| 68357 | 68357 | 33030 33030 | 17790 17790 | 1 |
| 68358 | 68358 | 8655 8655 | 17790 17790 | 1 |
| 68359 | 68359 | 22435 22435 | 17790 17790 | 1 |
| 68360 | 68360 | 34149 34149 | 17790 17790 | 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)
);