api_results
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where query_id = 42170
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | query_id | api_id | inchi_id | rank |
|---|---|---|---|---|---|
| 81368 | 81368 | 42170 42170 | PubChem (compound) 1 | 229702 229702 | 1 |
| 410906 | 410906 | 42170 42170 | PubChem (substance) 2 | 229702 229702 | 1 |
| 488642 | 488642 | 42170 42170 | PubChem (substance) 2 | 61707 61707 | 2 |
| 997688 | 997688 | 42170 42170 | CAS Common Chemistry 3 | 63741 63741 | 1 |
| 1200762 | 1200762 | 42170 42170 | Computational Toxicology and Exposure Data 4 | 112596 112596 | 1 |
CREATE TABLE [api_results] (
[query_id] integer,
[api_id] integer,
[inchi_id] integer,
[rank] integer,
FOREIGN KEY (query_id) REFERENCES api_ready_query(query_id),
FOREIGN KEY (api_id) REFERENCES api_services(api_id),
FOREIGN KEY (inchi_id) REFERENCES substances(inchi_id)
);