api_results
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where query_id = 2128
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | query_id | api_id | inchi_id | rank |
|---|---|---|---|---|---|
| 4096 | 4096 | 2128 2128 | PubChem (compound) 1 | 30972 30972 | 1 |
| 301243 | 301243 | 2128 2128 | PubChem (substance) 2 | 30972 30972 | 1 |
| 695488 | 695488 | 2128 2128 | PubChem (substance) 2 | 221775 221775 | 2 |
| 941118 | 941118 | 2128 2128 | CAS Common Chemistry 3 | 30972 30972 | 1 |
| 1138389 | 1138389 | 2128 2128 | Computational Toxicology and Exposure Data 4 | 30972 30972 | 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)
);