read_data
Execute SELECT queries on MSSQL databases to retrieve data from tables. Use SQL queries starting with SELECT to fetch records without destructive operations, with built-in security measures.
Instructions
Executes a SELECT query on an MSSQL Database table. The query must start with SELECT and cannot contain any destructive SQL operations for security reasons.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | SQL SELECT query to execute (must start with SELECT and cannot contain destructive operations). Example: SELECT * FROM movies WHERE genre = 'comedy' |