Talk to Your Data Table in Your Own Words

Our natural language interface allows non-technical users to obtain easy access your company's data without using a structured query language. Users simply ask for what they want in their own words.
The queries originate from users at your website. We provide an SQL output, which is used to query your data table. You also have the option to upload your data table to our system. The communication between your website and our system is seamless and occurs in the background. Simply place our API link in your webpage. More Information


Demonstration
The following sample data table is used to demonstrate the natural language query system.
You can view the data in the data table, query the data table in natural language, see the generated SQL, and verify the results in the data table.
Some sample questions are included to show the variety of questions that can be handled.
Company Employee Table
This sample data table contains employee data, such as, employee name, email address, phone number, address, work site, department, date of hire, salary, date of birth, etc. View Database
Sample Questions SQL Results
Show me all employees in New York? SELECT hrx.fname, hrx.lname FROM nlp.hrx where hrx.work_site = 'new york' Limit 30;
Show me the name, phone number and hire date of all employees who were hired before 12/24/1999, SELECT hrx.lname, hrx.fname, hrx.work_phone, hrx.hire_date FROM nlp.hrx where hrx.hire_date<'1999-12-24' Limit 30;
How many children does Thomas Axen have? SELECT hrx.number_of_children FROM nlp.hrx where hrx.fname = 'thomas' AND hrx.lname = 'axen';
What is the phone number and home address of Vazwer Mizpol? SELECT hrx.work_phone, hrx.home_address FROM nlp.hrx where hrx.fname = 'vazwer' AND hrx.lname = 'mizpol';
Type your question below in your own words.