get_table_sample
Extract a sample of data from a specified table in Snowflake databases. Define table name and optional row limit to preview data efficiently.
Instructions
Get a sample of data from a table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}