component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where component_id = 3926
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 73457 | 73457 | 15849 15849 | 3926 3926 | 1 |
| 73458 | 73458 | 15848 15848 | 3926 3926 | 1 |
| 73459 | 73459 | 9044 9044 | 3926 3926 | 1 |
| 73460 | 73460 | 15534 15534 | 3926 3926 | 1 |
| 73461 | 73461 | 7771 7771 | 3926 3926 | 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)
);