Papers with Text-to-SQL

35 papers
DAC: Decomposed Automation Correction for Text-to-SQL (2025.findings-emnlp)

Copied to clipboard

Challenge: Existing methods to improve text-to-SQL performance are hard to detect errors in SQL directly.
Approach: They propose to use decomposed correction to improve text-to-SQL performance . they first detect errors based on decompose subtasks, then use it to correct them .
Outcome: The proposed method improves text-to-SQL performance by 1.4% compared with previous methods .
Leveraging Explicit Lexico-logical Alignments in Text-to-SQL Parsing (2022.acl-short)

Copied to clipboard

Challenge: Text-to-SQL parsing aims to parse natural language questions into SQL queries . current attention-based approaches can only model alignments at the token level .
Approach: They propose a method to leverage explicit lexico-logical alignments by identifying possible phrase-level alignments and injecting them as additional contexts into the parsing procedure.
Outcome: The proposed approach improves performance by 3.4% on Squall.
PG-GSQL: Pointer-Generator Network with Guide Decoding for Cross-Domain Context-Dependent Text-to-SQL Generation (2020.coling-main)

Copied to clipboard

Challenge: Existing approaches to text-to-SQL generation depend on interaction history and current utterances.
Approach: They propose an encoder-decoder model based on interaction-level encoder to capture historical information of SQL query and reuse the previous SQL query tokens.
Outcome: The proposed model outperforms the previous state-of-the-art model on the SParC benchmark . it achieves 34.0% question matching accuracy and 19.0% interaction matching accuracy .
Understanding the Effects of Noise in Text-to-SQL: An Examination of the BIRD-Bench Benchmark (2024.acl-short)

Copied to clipboard

Challenge: BIRD-Bench was created to model dirty and noisy database values, but it was not created to contain noise and errors in the questions and gold SQL queries.
Approach: They analysed the distribution and types of noise in the widely used BIRD-Bench benchmark and the impact of noise on models.
Outcome: The BIRD-Bench benchmark contains ambiguous questions and syntactical errors, but it was not designed to contain noise and errors in the questions and gold SQL queries.
SQLPrompt: In-Context Text-to-SQL with Minimal Labeled Data (2023.findings-emnlp)

Copied to clipboard

Challenge: Text-to-SQL aims to automate the process of generating SQL queries on a database from natural language text.
Approach: They propose a method to improve few-shot prompting capabilities of Text-to-SQL for Large Language Models (LLMs) they propose 'SQlPrompt' which aims to diversify the SQL proposals during consistency selection with different prompt designs and foundation models.
Outcome: The proposed method outperforms previous approaches for in-context learning with zero labeled data by a large margin, closing the gap with finetuning state-of-the-art with thousands of labeles.
ReFSQL: A Retrieval-Augmentation Framework for Text-to-SQL Generation (2023.findings-emnlp)

Copied to clipboard

Challenge: Existing methods that align natural language with SQL Language underestimate inherent structural characteristics of SQL and lead to structure errors.
Approach: They propose a retrieval-argument framework that aligns natural language with SQL Language and trains one encoder-decoder-based model to fit all questions.
Outcome: The proposed framework improves accuracy and robustness of text-to-SQL generation on five datasets.
Divide, Link, and Conquer: Recall-oriented Schema Linking for NL-to-SQL via Question Decomposition (2025.emnlp-industry)

Copied to clipboard

Challenge: Open-source LLMs often depend on large proprietary models, which introduce serious privacy concerns.
Approach: They propose a plug-and-play framework that improves SQL generation for smaller LLMs . they propose to apply question decomposition at the schema linking stage rather than during SQL generation .
Outcome: The proposed framework improves schema linking recall by 25.1% and execution accuracy by 8.2% on the BIRD benchmark.
SynTQA: Synergistic Table-based Question Answering via Mixture of Text-to-SQL and E2E TQA (2024.findings-emnlp)

Copied to clipboard

Challenge: Text-to-SQL parsing and end-to end question answering have yet to be compared and their synergy remains unexplored.
Approach: They propose a Synergistic Table-based Question Answering approach that integrates different models via answer selection.
Outcome: The proposed approach improves on multiple benchmarks and on large scale datasets.
Dialect-SQL: An Adaptive Framework for Bridging the Dialect Gap in Text-to-SQL (2025.emnlp-main)

Copied to clipboard

Challenge: Existing Text-to-SQL research focuses on specific database systems, limiting adaptability to different dialects.
Approach: They propose a framework that employs Object Relational Mapping (ORM) code as an intermediate language to bridge this gap.
Outcome: The proposed framework outperforms existing methods that generate SQL queries directly.
Recent Advances in Text-to-SQL: A Survey of What We Have and What We Expect (2022.coling-1)

Copied to clipboard

Challenge: text-to-SQL is a language processing and database-based language processing (NLP) task is to convert natural utterances into SQL queries and its practical application is to build natural language interfaces to database systems.
Approach: They propose to conduct a systematic survey of text-to-SQL to examine the challenges and potential future directions.
Outcome: The proposed system converts natural utterances into SQL queries and is a representative task in semantic parsing.
Beyond Read-Only: Crafting a Comprehensive Chinese Text-to-SQL Dataset for Database Manipulation and Query (2024.findings-naacl)

Copied to clipboard

Challenge: Current research focuses mainly on read operations and ignores other aspects of database operations such as create, update, and delete operations.
Approach: They propose a large-scale cross-domain single-table CRUD operations Chinese Text-to-SQL dataset . the dataset contains 10,000 question/SQl pairs involving 625 tables from different domains .
Outcome: The proposed method achieves 67.08% and 83.8% exact set matching accuracy under read and delete operations, but only 49.6% and 61.8% under create and update operations.
CORES: Code-Oriented Reasoning for Complex Text-to-SQL and Generalizable TableQA (2026.findings-acl)

Copied to clipboard

Challenge: Text-to-SQL models struggle with complex analytical tasks such as generating simple SQL queries.
Approach: They propose a text-to-sql model that leverages Python as a procedural reasoning pivot to enhance both complex SQL generation and tabular reasoning.
Outcome: The proposed model outperforms baseline models on six text-to-SQL benchmarks by 6.44% on average while maintaining good capability on three tableQA benchmarks.
Gen-SQL: Efficient Text-to-SQL By Bridging Natural Language Question And Database Schema With Pseudo-Schema (2025.coling-main)

Copied to clipboard

Challenge: Recent studies have shifted paradigms and leveraged Large Language Models (LLMs) to tackle the challenging task of Text-to-SQL.
Approach: They propose a framework that leverages large language models to generate SQL queries . they exploit prior knowledge from the LLM to enhance embedding-based retriever .
Outcome: The proposed method improves embedding-based retriever and reduces cost.
Decoupled Dialogue Modeling and Semantic Parsing for Multi-Turn Text-to-SQL (2021.findings-acl)

Copied to clipboard

Challenge: Recent work on Text-to-SQL for multi-turn dialogue has attracted great interest . current approaches mostly employ end-to end models and face data sparsity problems .
Approach: They propose a decoupled multi-turn text-to-SQL framework where dialogue context is explicitly solved by an utterance rewrite model and a single-turn Text-toSQl parser are proposed.
Outcome: The proposed method outperforms existing models on SParC and CoSQL datasets without annotated in-domain data.
Boosting Text-to-SQL through Multi-grained Error Identification (2025.coling-main)

Copied to clipboard

Challenge: Existing methods for error identification often overlook validation of generated results . text-to-SQL is a technology that converts natural language questions into executable SQL queries .
Approach: They propose to integrate a multi-grained error identification method into existing methods to detect SQL errors.
Outcome: The proposed method can be integrated as a plugin into various methods, providing effective error identification and correction capabilities.
JOLT-SQL: Joint Loss Tuning of Text-to-SQL with Confusion-aware Noisy Schema Sampling (2025.emnlp-main)

Copied to clipboard

Challenge: Recent advances in Large Language Models have improved Text-to-SQL methods . however, they still face challenges such as complex multi-stage pipelines and poor robustness to noisy schema information.
Approach: They propose a single-stage SFT framework that optimizes schema linking and SQL generation via a unified loss.
Outcome: Experiments on the Spider and BIRD benchmarks show that JOLT-SQL achieves state-of-the-art execution accuracy among comparable-size open-source models.
Bidirectional Semantic Enhancement for Schema Routing Across Large-Scale Databases (2026.findings-acl)

Copied to clipboard

Challenge: Existing methods relying on unidirectional query expansion fail to bridge lexical mismatches and graph-based approaches struggle to navigate schemas when explicit structural links are missing.
Approach: They propose a retrieval framework that bridges the semantic gap between user queries and vague schema definitions by performing online generative query expansion.
Outcome: The proposed retrieval framework bridges the semantic gap between user queries and vague schema definitions by enriching table schemas offline and performing online generative query expansion.
ShadowGNN: Graph Projection Neural Network for Text-to-SQL Parser (2021.naacl-main)

Copied to clipboard

Challenge: Existing semantic parsing models struggle to adapt to unseen database schemas . a new architecture, ShadowGNN, processes schemas at abstract and semantic levels .
Approach: They propose a new architecture which processes schemas at abstract and semantic levels.
Outcome: The proposed architecture outperforms state-of-the-art models on a text-to-sql benchmark . it uses domain-independent representations to extract logical linking between question and schema .
Enhancing Text-to-SQL Capabilities of Large Language Models through Tailored Promptings (2024.lrec-main)

Copied to clipboard

Challenge: Large language models with prompting have achieved encouraging results on many natural language processing tasks due to the absence of task-tailored promptings.
Approach: They propose three promptings specifically designed for Text-to-SQL: SL-prompt, CC-promped, and SL+CC prompt.
Outcome: The proposed promptings achieve execution accuracy of 86.2% and test-suite accuracy of 76% . the granularity of schema linking and the order of clause generation have great impact on performance, which are considered little in previous research.
Mistake Notebook Learning: Batch-Clustered Failures for Training-Free Agent Adaptation (2026.findings-acl)

Copied to clipboard

Challenge: Mistake Notebook Learning (MNL) is a new memory framework for large language model agents . it allows agents to distill shared error patterns into structured "mistake notes"
Approach: They propose a new memory framework that enables agents to self-curate generalizable guidance from batch-clustered failures.
Outcome: The proposed framework achieves competitive performance compared to existing memory mechanisms.
An Exploratory Study on Model Compression for Text-to-SQL (2023.findings-acl)

Copied to clipboard

Challenge: Text-to-SQL translates user queries into SQL statements that can retrieve relevant answers from relational databases.
Approach: They propose to apply model compression techniques to sketch-based and sequence-to-sequence Text-toSQL models.
Outcome: The proposed models have higher inference efficiency and respond better to model compression than sequence-to-sequence models.
DCG-SQL: Enhancing In-Context Learning for Text-to-SQL with Deep Contextual Schema Link Graph (2025.acl-long)

Copied to clipboard

Challenge: Existing methods for Text-to-SQL show little improvement compared to random selections . Existing approaches rely on intrinsic capabilities of hyper-scaled LLMs, not useful demonstrations.
Approach: They propose a novel approach to effectively retrieving demonstrations and generating SQL queries by linking a question and its database schema items.
Outcome: The proposed method shows consistent improvements in performance and efficiency across hyper-scaled LLMs and small LLM.
Uncovering and Categorizing Social Biases in Text-to-SQL (2023.acl-long)

Copied to clipboard

Challenge: Existing Text-to-SQL models are trained on clean, neutral datasets, such as Spider and WikiSQl, but these models contain social bias at different rates.
Approach: They propose to use data to map natural language utterances to SQL queries.
Outcome: The proposed model can contain social bias at different rates in the downstream Text-to-SQL task.
Investigating the Impact of Data Contamination of Large Language Models in Text-to-SQL translation (2024.findings-acl)

Copied to clipboard

Challenge: Large Language Models (LLMs) understand textual description to generate code in zero-shot scenarios, but there is a possibility that this ability may be influenced by having seen target textual descriptions and the related code.
Approach: They propose a method to detect Data Contamination in Large Language Models (LLMs) and analyze their results on Termite and Spider Datasets to investigate their method.
Outcome: The proposed method detects data contamination in GPTs and analyzes its performance on unfamiliar datasets.
SQL-ASTRA: Alleviating Sparse Feedback in Agentic SQL via Column-Set Matching and Trajectory Aggregation (2026.findings-acl)

Copied to clipboard

Challenge: Agentic SQL is a framework for multiturn agent learning, but it is limited to single-turn paradigms.
Approach: They propose a framework that provides a universal two-tiered reward mechanism for credit assignment . they propose 'Aggregated Trajectory Reward' to resolve multi-turn credit assignment.
Outcome: The proposed framework outperforms SOTA Arctic-Text2SQL-R1-7B on BIRD and Spider 2.0 using identical models.
SAFE-SQL: Self-Augmented In-Context Learning with Fine-grained Example Selection for Text-to-SQL (2025.emnlp-main)

Copied to clipboard

Challenge: Text-to-SQL aims to convert natural language questions into executable SQL queries.
Approach: They propose a framework that generates and filters self-augmented examples for SQL generation . using self-generated examples, they surpass previous zero-shot and few-shot frameworks .
Outcome: The proposed framework surpasses the previous zero-shot and few-shot frameworks, achieving higher execution accuracy.
Optimizing Reasoning for Text-to-SQL with Execution Feedback (2025.findings-acl)

Copied to clipboard

Challenge: Large language models excel in many reasoning tasks, but their ability to leverage Chain-of-Thought (CoT) reasoning remains underexplored.
Approach: They propose a framework that iteratively optimizes open-source LLMs by combining CoT reasoning with off-policy and on-poly DPO, relying solely on execution accuracy as feedback.
Outcome: The proposed framework improves execution accuracy on BIRD and Spider datasets.
EXPO-SQL: Execution-based Clause-level Policy Optimization for Text-to-SQL (2026.findings-acl)

Copied to clipboard

Challenge: Existing RL methods assign query-level rewards to all clauses, treating correct and incorrect clauses equally.
Approach: They propose a method which provides fine-grained supervision through clause-level rewards.
Outcome: Experiments on widely-used Text-to-SQL benchmarks show that EXPO-SqL outperforms existing methods by fine-grained clause-level learning.
Toward Structured Knowledge Reasoning: Contrastive Retrieval-Augmented Generation on Experience (2025.findings-acl)

Copied to clipboard

Challenge: Large language models struggle to infer implicit relationships embedded in tabular formats . authors introduce a framework that builds experience memory representations and enhances generalization through contrastive In-Context Learning (ICL).
Approach: They propose a framework that builds experience memory representations and enhances generalization through contrastive In-Context Learning to simulate human-like knowledge transfer.
Outcome: Experiments on Text-to-SQL and TableQA show CoRE significantly improves performance . it achieves gains of 3.44% and 4.24%, with up to 17.2% on challenging tasks .
Knowledge Base Construction for Knowledge-Augmented Text-to-SQL (2025.findings-acl)

Copied to clipboard

Challenge: Existing approaches to translate natural language queries into SQL statements are limited in their parametric knowledge of the database schemas.
Approach: They propose to construct a knowledge base for text-to-SQL, a foundational source of knowledge, from which we retrieve and generate the necessary knowledge for given queries.
Outcome: The proposed approach outperforms baselines on multiple text-to-SQL datasets and shows that it is practical and reliable.
Pi-SQL: Enhancing Text-to-SQL with Fine-Grained Guidance from Pivot Programming Languages (2025.findings-emnlp)

Copied to clipboard

Challenge: 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.
Approach: They propose to use Python as a pivot to bridge between natural language query and SQL program.
Outcome: The proposed method improves the execution accuracy of the best-performing baseline by up to 3.20.
SQL-Trail: Multi-Turn Reinforcement Learning with Interleaved Feedback for Text-to-SQL (2026.acl-long)

Copied to clipboard

Challenge: Recent large language models (LLMs) have significantly improved Text-to-SQL generation, but a gap remains between AI systems and human experts on challenging benchmarks such as BIRD-Sql.
Approach: They propose a multi-turn reinforcement learning agentic framework for Text-to-SQL that uses execution feedback to iteratively refine its predictions.
Outcome: The proposed framework outperforms proprietary systems on 7B and 14B models by **5% on average, underscoring the effectiveness of interactive, agentic workflows for robust Text-to-SQL generation.
ReSQL: Self-Improving Framework for Reasoning-Aware Text-to-SQL Dataset Generation (2026.findings-acl)

Copied to clipboard

Challenge: Experimental results show that ReSQL significantly improves execution accuracy and self-correction ability over strong baselines.
Approach: They propose a framework that generates and learns from its own error-reasoning dataset . it allows models to internalize robust error-reference patterns and apply them to unseen queries .
Outcome: The proposed framework improves execution accuracy and self-correction ability over strong baselines.
REaR : Retrieve, Expand and Refine for Effective Multitable Retrieval (2026.acl-long)

Copied to clipboard

Challenge: REaR is retriever-agnostic and improves dense/ sparse retrievers on complex table QA datasets.
Approach: a new framework separates semantic relevance from structural joinability for efficient multi-table retrieval. adam scott and eric liu introduce REaR, a three-stage, LLM-free framework.
Outcome: a new framework improves retrieval quality and performance on complex table QA datasets . it separates semantic relevance from structural joinability and prunes weakly related candidates . the framework is retriever-agnostic and delivers performance competitive with state-of-the-art LLM-augmented retrieval systems .

What is GenGO?

GenGO is an NLP powered publication search system. It currenctly indexes 30k+ papers from ACL Anthology, and implements multi-aspect summarization, semantic search, and more!

Information

About
Limitations