query_data
Execute SQL queries safely with full schema awareness to interact with databases. Use get_schema() to analyze the database structure before querying.
Instructions
Execute SQL queries safely. Use get_schema() first to understand the database structure.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sql | Yes |
Input Schema (JSON Schema)
{
"properties": {
"sql": {
"title": "Sql",
"type": "string"
}
},
"required": [
"sql"
],
"title": "query_dataArguments",
"type": "object"
}