show_create_table
Retrieve SQL schema of a specified table in Alibaba Cloud RDS using instance ID, region, database, and table names for accurate database management.
Instructions
show create table db_name.table_name
Args:
dbinstance_id (str): The ID of the RDS instance.
region_id(str): the region id of instance.
db_name(str): the db name for table.
table_name(str): the table name.
Returns:
the sql result.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
db_name | Yes | ||
dbinstance_id | Yes | ||
region_id | Yes | ||
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"db_name": {
"title": "Db Name",
"type": "string"
},
"dbinstance_id": {
"title": "Dbinstance Id",
"type": "string"
},
"region_id": {
"title": "Region Id",
"type": "string"
},
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"region_id",
"dbinstance_id",
"db_name",
"table_name"
],
"title": "show_create_tableArguments",
"type": "object"
}