🤖 AI Summary
To address the accuracy bottleneck in natural language-to-SQL generation caused by semantic gaps, this paper proposes a two-stage approach that leverages high-resource Python programs as an executable intermediary: first, a large language model generates fine-grained, executable Python code capturing precise operational logic; second, SQL queries are synthesized from this Python representation. This work introduces, for the first time, Python as a semantic alignment pivot between natural language and SQL, enabling execution-feedback-driven SQL re-ranking, reward-based validity scoring, and result-consistency verification. Evaluated across multiple benchmarks, our method achieves a 3.20-percentage-point improvement in execution accuracy over the strongest baseline and increases effective efficiency score by 4.55. It significantly enhances generalization to complex queries and improves reasoning efficiency.
📝 Abstract
Text-to-SQL transforms the user queries from natural language to executable SQL programs, enabling non-experts to interact with complex databases. Existing prompt-based methods craft meticulous text guidelines and examples to facilitate SQL generation, but their accuracy is hindered by the large semantic gap between the texts and the low-resource SQL programs. In this work, we propose Pi-SQL, which incorporates the high-resource Python program as a pivot to bridge between the natural language query and SQL program. In particular, Pi-SQL first generates Python programs that provide fine-grained step-by-step guidelines in their code blocks or comments, and then produces an SQL program following the guidance of each Python program.The final SQL program matches the reference Python program's query results and, through selection from candidates generated by different strategies, achieves superior execution speed, with a reward-based valid efficiency score up to 4.55 higher than the best-performing baseline.Extensive experiments demonstrate the effectiveness of Pi-SQL, which improves the execution accuracy of the best-performing baseline by up to 3.20.