mysql_preview_table
Retrieve a sample of rows from any table, optionally ordered, to quickly inspect data without writing SQL queries.
Instructions
Preview first N rows from a table with optional ordering. Use this to quickly inspect sample data without writing SQL.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max rows to return | |
| table | Yes | Table name | |
| orderBy | No | Optional ORDER BY clause of the form 'column [ASC|DESC]' | |
| database | Yes | Database (schema) name |