api_results
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where query_id = 10466
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | query_id | api_id | inchi_id | rank |
|---|---|---|---|---|---|
| 19878 | 19878 | 10466 10466 | PubChem (compound) 1 | 187872 187872 | 1 |
| 323858 | 323858 | 10466 10466 | PubChem (substance) 2 | 187872 187872 | 1 |
| 324000 | 324000 | 10466 10466 | PubChem (substance) 2 | 76724 76724 | 2 |
| 952952 | 952952 | 10466 10466 | CAS Common Chemistry 3 | 76724 76724 | 1 |
| 1152277 | 1152277 | 10466 10466 | Computational Toxicology and Exposure Data 4 | 125509 125509 | 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)
);