gensql
Generate SQL queries from natural language descriptions for PostgreSQL, MySQL, and SQLite databases to streamline database interactions.
Instructions
【SQL 生成器】根据描述生成 SQL 查询语句
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | 需求描述 | |
| dialect | No | 数据库类型:postgres, mysql, sqlite(默认 postgres) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "需求描述",
"type": "string"
},
"dialect": {
"description": "数据库类型:postgres, mysql, sqlite(默认 postgres)",
"type": "string"
}
},
"required": [],
"type": "object"
}