export_table_data
Export data from a SQL Server table to JSON or CSV, with optional WHERE clause filtering and row limits for controlled data extraction.
Instructions
Export table data to JSON or CSV format
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of rows to export (default: 1000) | |
| format | Yes | Export format | |
| schema | No | Schema name (default: dbo) | |
| tableName | Yes | Name of the table | |
| whereClause | No | Optional WHERE clause to filter data |