example_prompt = PromptTemplate.from_template( "Questions: {input}\nSQL query: {query}" ) 3.创建模板: mssql_prompt = FewShotPromptTemplate( examples = examples, example_prompt = example_prompt, prefix = "Given an input question, first create a syntactically correct **mysql** query to ru...