component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where component_id = 884
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 33410 | 33410 | 17317 17317 | 884 884 | 1 |
| 33411 | 33411 | 17348 17348 | 884 884 | 1 |
| 33412 | 33412 | 22059 22059 | 884 884 | 1 |
| 33413 | 33413 | 27472 27472 | 884 884 | 1 |
| 33414 | 33414 | 25280 25280 | 884 884 | 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)
);