component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where mc_id = 36288
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 30228 | 30228 | 36288 36288 | 15788 15788 | 1 |
| 87172 | 87172 | 36288 36288 | 17804 17804 | 1 |
| 88183 | 88183 | 36288 36288 | 19044 19044 | 1 |
| 93333 | 93333 | 36288 36288 | 22332 22332 | 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)
);