generate_sample_queries
Generate sample SQL queries for Oracle Database tables to facilitate data exploration and analysis.
Instructions
Generate sample SQL queries for a given table to help with exploration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | No | Schema owner (optional) | |
table_name | Yes | Name of the table to generate queries for |
Input Schema (JSON Schema)
{
"properties": {
"owner": {
"default": null,
"description": "Schema owner (optional)",
"type": "string"
},
"table_name": {
"description": "Name of the table to generate queries for",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}