component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where mc_id = 30155
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 7559 | 7559 | 30155 30155 | 22020 22020 | 1 |
| 8010 | 8010 | 30155 30155 | 21923 21923 | 1 |
| 36842 | 36842 | 30155 30155 | 22139 22139 | 1 |
| 61831 | 61831 | 30155 30155 | 22170 22170 | 1 |
| 66266 | 66266 | 30155 30155 | 22184 22184 | 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)
);