api_results
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where query_id = 123766
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | query_id | api_id | inchi_id | rank |
|---|---|---|---|---|---|
| 143775 | 143775 | 123766 123766 | PubChem (compound) 1 | 13797 13797 | 1 |
| 497199 | 497199 | 123766 123766 | PubChem (substance) 2 | 13797 13797 | 1 |
| 788005 | 788005 | 123766 123766 | PubChem (substance) 2 | 166807 166807 | 2 |
| 1042882 | 1042882 | 123766 123766 | CAS Common Chemistry 3 | 13797 13797 | 1 |
| 1245812 | 1245812 | 123766 123766 | Computational Toxicology and Exposure Data 4 | 13797 13797 | 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)
);