component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where component_id = 3222
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 1494 | 1494 | 13560 13560 | 3222 3222 | 1 |
| 1495 | 1495 | 28733 28733 | 3222 3222 | 1 |
| 1496 | 1496 | 11512 11512 | 3222 3222 | 1 |
| 1497 | 1497 | 4676 4676 | 3222 3222 | 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)
);