api_results
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where query_id = 42587
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | query_id | api_id | inchi_id | rank |
|---|---|---|---|---|---|
| 82113 | 82113 | 42587 42587 | PubChem (compound) 1 | 112985 112985 | 1 |
| 411973 | 411973 | 42587 42587 | PubChem (substance) 2 | 112985 112985 | 1 |
| 739345 | 739345 | 42587 42587 | PubChem (substance) 2 | 65096 65096 | 2 |
| 998192 | 998192 | 42587 42587 | CAS Common Chemistry 3 | 65096 65096 | 1 |
| 1201295 | 1201295 | 42587 42587 | Computational Toxicology and Exposure Data 4 | 112985 112985 | 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)
);