component_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where component_id = 17699
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | mc_id | component_id | component_frequency |
|---|---|---|---|---|
| 34881 | 34881 | 10104 10104 | 17699 17699 | 1 |
| 34882 | 34882 | 967 967 | 17699 17699 | 1 |
| 34883 | 34883 | 10274 10274 | 17699 17699 | 1 |
| 34884 | 34884 | 22982 22982 | 17699 17699 | 1 |
| 34885 | 34885 | 15031 15031 | 17699 17699 | 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)
);