This project demonstrates an end-to-end application using Google Gemini Pro to convert natural language text into SQL queries and retrieve data from an SQL database. By leveraging generative AI, we simplify querying databases for users unfamiliar with SQL syntax, enabling seamless interaction with structured data.
student.db
) is created with the following schema:
CREATE TABLE student (
name TEXT,
class TEXT,
section TEXT,
marks INTEGER
);
INSERT INTO student VALUES ('Krish', 'Data Science', 'A', 90);
SELECT AVG(marks) FROM student;
conda create -n text_to_sql python=3.9
conda activate text_to_sql
pip install -r requirements.txt
.env
file:
GOOGLE_API_KEY=your_google_api_key
python sql_setup.py
streamlit run app.py
sql_setup.py
)app.py
)You are an expert in converting English questions into SQL queries.
The SQL database has the following schema: name, class, section, marks.
Example Input: "Tell me all students in the Data Science class."
Example Output: `SELECT * FROM student WHERE class = 'Data Science';`
.env
.generate_content
function.sqlite3
library.Input Question | Generated SQL Query | Output |
---|---|---|
“Tell me all student names.” | SELECT name FROM student; |
Krish, Sudhanshu, Darius |
“Provide the average marks of all students.” | SELECT AVG(marks) FROM student; |
92.0 |
“Provide the student name with the highest marks.” | SELECT name, MAX(marks) FROM student; |
Sudhanshu |
“Show the marks of students in class A.” | SELECT name, marks FROM student WHERE section='A'; |
Krish: 90, Darius: 86 |