api_results
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where query_id = 230101
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | query_id | api_id | inchi_id | rank |
|---|---|---|---|---|---|
| 8422 | 8422 | 230101 230101 | PubChem (compound) 1 | 50406 50406 | 1 |
| 307144 | 307144 | 230101 230101 | PubChem (substance) 2 | 50406 50406 | 1 |
| 698363 | 698363 | 230101 230101 | PubChem (substance) 2 | 281019 281019 | 2 |
| 944396 | 944396 | 230101 230101 | CAS Common Chemistry 3 | 50406 50406 | 1 |
| 1142176 | 1142176 | 230101 230101 | Computational Toxicology and Exposure Data 4 | 50406 50406 | 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)
);