sample_table_data
Extract a defined number of random rows from a specified Azure Data Explorer table to analyze or test data, with a default sample size of 10.
Instructions
Retrieves a random sample of rows from the specified table in the Azure Data Explorer database. The sample_size parameter controls how many rows to return (default: 10).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sample_size | No | ||
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"sample_size": {
"default": 10,
"title": "Sample Size",
"type": "integer"
},
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"table_name"
],
"title": "sample_table_dataArguments",
"type": "object"
}