api_results
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where query_id = 23098
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | query_id | api_id | inchi_id | rank |
|---|---|---|---|---|---|
| 51386 | 51386 | 23098 23098 | PubChem (compound) 1 | 112959 112959 | 1 |
| 332390 | 332390 | 23098 23098 | PubChem (substance) 2 | 21969 21969 | 1 |
| 368564 | 368564 | 23098 23098 | PubChem (substance) 2 | 112959 112959 | 2 |
| 975599 | 975599 | 23098 23098 | CAS Common Chemistry 3 | 37230 37230 | 1 |
| 1178356 | 1178356 | 23098 23098 | Computational Toxicology and Exposure Data 4 | 37230 37230 | 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)
);