DBCopilot: Natural Language Querying over Massive Databases via Schema Routing
Tianshu Wang, Xiaoyang Chen, Hongyu Lin, Xianpei Han, Le Sun, Hao Wang, Zhenyu Zeng
TL;DR
DBCopilot tackles natural language querying over massive databases by decoupling schema routing from SQL generation. It introduces a compact copilot router built on a differentiable search index to map NL questions to target databases and tables, and uses a relation-aware, DFS-serialized schema graph to enable end-to-end routing. A reverse schema-to-question data synthesis pipeline trains the router without manual labeling, while various prompt strategies guide LLM-based SQL generation from routed schemata. Experimental results show significant gains in routing recall and end-to-end execution accuracy, demonstrating scalable NL2SQL performance on large, real-world schemata with minimal manual intervention.
Abstract
The development of Natural Language Interfaces to Databases (NLIDBs) has been greatly advanced by the advent of large language models (LLMs), which provide an intuitive way to translate natural language (NL) questions into Structured Query Language (SQL) queries. While significant progress has been made in LLM-based NL2SQL, existing approaches face several challenges in real-world scenarios of natural language querying over massive databases. In this paper, we present DBCopilot, a framework that addresses these challenges by employing a compact and flexible copilot model for routing over massive databases. Specifically, DBCopilot decouples schema-agnostic NL2SQL into schema routing and SQL generation. This framework utilizes a single lightweight differentiable search index to construct semantic mappings for massive database schemata, and navigates natural language questions to their target databases and tables in a relation-aware joint retrieval manner. The routed schemata and questions are then fed into LLMs for effective SQL generation. Furthermore, DBCopilot introduces a reverse schema-to-question generation paradigm that can automatically learn and adapt the router over massive databases without manual intervention. Experimental results verify that DBCopilot is a scalable and effective solution for schema-agnostic NL2SQL, providing a significant advance in handling natural language querying over massive databases for NLIDBs.
