component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where mc_id = 15293
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 301 | 301 | 15293 15293 | 20774 20774 | 1 |
| 4819 | 4819 | 15293 15293 | 2096 2096 | 1 |
| 7112 | 7112 | 15293 15293 | 19202 19202 | 1 |
| 28044 | 28044 | 15293 15293 | 17831 17831 | 1 |
| 53855 | 53855 | 15293 15293 | 19128 19128 | 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)
);