query_table
Execute SQL queries on Synapse tables to retrieve and analyze structured data through programmatic access to the Synapse data platform.
Instructions
Query a Synapse table.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | ||
table_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"title": "Query",
"type": "string"
},
"table_id": {
"title": "Table Id",
"type": "string"
}
},
"required": [
"table_id",
"query"
],
"type": "object"
}