I’ve been working on a tool called ChatYourDB — it lets you interact with your database using natural language instead of writing SQL queries.
The idea is simple:
You type a question like “Show me all users who signed up last week”, and the tool translates it into an actual SQL query and runs it on your database.
It’s useful for:
People who don’t know SQL but need access to data
Teams who want to save time on writing and debugging queries
Making data more accessible across an organization
It currently supports MS SQL Server, PostgreSQL and MySQL databases