api_results
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where query_id = 123897
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | query_id | api_id | inchi_id | rank |
|---|---|---|---|---|---|
| 143926 | 143926 | 123897 123897 | PubChem (compound) 1 | 14190 14190 | 1 |
| 497387 | 497387 | 123897 123897 | PubChem (substance) 2 | 14190 14190 | 1 |
| 788088 | 788088 | 123897 123897 | PubChem (substance) 2 | 211117 211117 | 2 |
| 1042990 | 1042990 | 123897 123897 | CAS Common Chemistry 3 | 14190 14190 | 1 |
| 1245926 | 1245926 | 123897 123897 | Computational Toxicology and Exposure Data 4 | 14190 14190 | 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)
);