text stringlengths 776 20.1k |
|---|
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of fully vaccinated children (12-23 months)?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABL... |
### Task
Generate a SQL query to answer the following question:
`Which state has the lowest percentage of fully vaccinated children?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_sta... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest prevalence of stunting in children under 5?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare... |
### Task
Generate a SQL query to answer the following question:
`Which state has the lowest prevalence of wasting in children under 5?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_s... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of underweight children?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (... |
### Task
Generate a SQL query to answer the following question:
`Which states have a higher percentage of underweight children than stunted children?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TAB... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of institutional births?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (... |
### Task
Generate a SQL query to answer the following question:
`Which states have institutional birth rates below 50%?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGI... |
### Task
Generate a SQL query to answer the following question:
`What is the average rate of institutional births in rural India?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of mothers who received at least 4 antenatal care visits?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT)... |
### Task
Generate a SQL query to answer the following question:
`Which states have antenatal care coverage below 30%?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIGIN... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of children breastfed within one hour of birth?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE T... |
### Task
Generate a SQL query to answer the following question:
`Is obesity more common in urban or rural India?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIGINT, tr... |
### Task
Generate a SQL query to answer the following question:
`Which state has the largest gap in obesity rates between men and women?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_... |
### Task
Generate a SQL query to answer the following question:
`Which states have more women with high blood sugar than men?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (sta... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of women using hygienic methods during menstruation?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CRE... |
### Task
Generate a SQL query to answer the following question:
`Which states have less than 50% of women using hygienic menstrual methods?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthc... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of households using clean fuel for cooking?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE... |
### Task
Generate a SQL query to answer the following question:
`Which states have poor access to clean cooking fuel (below 20%)?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats ... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of households with electricity?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_... |
### Task
Generate a SQL query to answer the following question:
`Which states have less than 80% electricity coverage?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIGI... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of households with improved sanitation?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE hea... |
### Task
Generate a SQL query to answer the following question:
`Which state has the lowest access to improved drinking water?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (st... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest female literacy rate?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGINT, n... |
### Task
Generate a SQL query to answer the following question:
`What is the literacy gap between men and women in rural India?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (st... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of women married before age 18?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_... |
### Task
Generate a SQL query to answer the following question:
`Which states have child marriage rates above 20%?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGINT, n... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of men married before age 21?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_st... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest total fertility rate?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGINT, n... |
### Task
Generate a SQL query to answer the following question:
`Which states have a fertility rate below 2.0?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGINT, no_of... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest adolescent fertility rate (15-19 years)?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_sta... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of women who have ever used the internet?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE h... |
### Task
Generate a SQL query to answer the following question:
`Which state has the biggest digital divide between men and women regarding internet usage?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREA... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of women owning a house or land?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of women with a bank account?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_st... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of women with a mobile phone?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_st... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of women who have experienced domestic violence?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE ... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest tobacco use among men?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIGINT,... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest tobacco use among women?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIGIN... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest alcohol consumption among men?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state... |
### Task
Generate a SQL query to answer the following question:
`Which states have alcohol consumption among men above 30%?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of children with diarrhoea in the last 2 weeks?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE T... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of children with fever or ARI symptoms?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE hea... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of children receiving an adequate diet?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE hea... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of registered pregnancies receiving a Mother and Child Protection Card?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY K... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of C-section deliveries in private facilities?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TA... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of C-section deliveries in public facilities?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TAB... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of women with comprehensive HIV knowledge?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE ... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of men with comprehensive HIV knowledge?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE he... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of households with health insurance?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE health... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest female anaemia percentage?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIG... |
### Task
Generate a SQL query to answer the following question:
`Which state has the lowest male anaemia percentage?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIGINT... |
### Task
Generate a SQL query to answer the following question:
`What is the average vaccination rate across all states?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIG... |
### Task
Generate a SQL query to answer the following question:
`Which states have vaccination rates below 70%?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGINT, no_o... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest obesity rate?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGINT, no_of_hou... |
### Task
Generate a SQL query to answer the following question:
`Which state has the lowest obesity rate?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGINT, no_of_hous... |
### Task
Generate a SQL query to answer the following question:
`Which states have diabetes rates above 10%?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGINT, no_of_h... |
### Task
Generate a SQL query to answer the following question:
`What is the average diabetes rate in urban areas?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE crop_stats (crop TEXT, normal_ar... |
### Task
Generate a SQL query to answer the following question:
`What is the average diabetes rate in rural areas?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE crop_stats (crop TEXT, normal_ar... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest hypertension rate?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGINT, no_o... |
### Task
Generate a SQL query to answer the following question:
`What is the average hypertension rate across all states?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BI... |
### Task
Generate a SQL query to answer the following question:
`Which states have hypertension rates above the national average?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (... |
### Task
Generate a SQL query to answer the following question:
`What is the average female anaemia rate in rural areas?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE crop_stats (crop TEXT, nor... |
### Task
Generate a SQL query to answer the following question:
`What is the average female anaemia rate in urban areas?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE crop_stats (crop TEXT, nor... |
### Task
Generate a SQL query to answer the following question:
`Which states have male anaemia rates higher than female anaemia rates?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_s... |
### Task
Generate a SQL query to answer the following question:
`Which state has the biggest gap between female and male anaemia?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats ... |
### Task
Generate a SQL query to answer the following question:
`Which states have obesity rates above diabetes rates?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGIN... |
### Task
Generate a SQL query to answer the following question:
`Which state has the lowest vaccination rate?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGINT, no_of_... |
### Task
Generate a SQL query to answer the following question:
`Which states have vaccination rates above 90%?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGINT, no_o... |
### Task
Generate a SQL query to answer the following question:
`Which states have higher hypertension rates in rural areas than urban areas?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE crop_... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest combined anaemia burden?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIGIN... |
### Task
Generate a SQL query to answer the following question:
`Which states have obesity rates below 5%?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGINT, no_of_hou... |
### Task
Generate a SQL query to answer the following question:
`What is the average obesity rate in urban areas?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE crop_stats (crop TEXT, normal_are... |
### Task
Generate a SQL query to answer the following question:
`What is the average obesity rate in rural areas?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE crop_stats (crop TEXT, normal_are... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest vaccination rate in rural areas?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE crop_stats (crop TEXT... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest vaccination rate in urban areas?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE crop_stats (crop TEXT... |
### Task
Generate a SQL query to answer the following question:
`Which states have female anaemia rates above 50%?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGINT, n... |
### Task
Generate a SQL query to answer the following question:
`Which states have male anaemia rates below 20%?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGINT, no_... |
### Task
Generate a SQL query to answer the following question:
`How many children in rural Bihar are fully vaccinated?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIG... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest number of people suffering from high blood pressure?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE h... |
### Task
Generate a SQL query to answer the following question:
`How many people in rural Uttar Pradesh have high blood pressure?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats ... |
### Task
Generate a SQL query to answer the following question:
`How many women in Kerala are anaemic?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIGINT, tru_id BIGIN... |
### Task
Generate a SQL query to answer the following question:
`How many children in urban Maharashtra are fully vaccinated?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (sta... |
### Task
Generate a SQL query to answer the following question:
`How many people in urban Rajasthan are obese?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIGINT, tru_... |
### Task
Generate a SQL query to answer the following question:
`How many children in rural Odisha have not received any vaccines?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats... |
### Task
Generate a SQL query to answer the following question:
`How many people in Punjab suffer from diabetes?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIGINT, tr... |
### Task
Generate a SQL query to answer the following question:
`How many children in Bihar are underweight?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIGINT, tru_id... |
### Task
Generate a SQL query to answer the following question:
`How many people live with diabetes in Kerala?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIGINT, tru_... |
### Task
Generate a SQL query to answer the following question:
`Is high blood pressure more common in cities or villages in Tamil Nadu?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare... |
### Task
Generate a SQL query to answer the following question:
`How many women are anaemic in Maharashtra?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIGINT, tru_id ... |
### Task
Generate a SQL query to answer the following question:
`Which states have the most underweight children?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE healthcare_stats (state BIGINT, t... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of literate women?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state B... |
### Task
Generate a SQL query to answer the following question:
`Which state has the lowest percentage of literate men?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE education_stats (state BIGI... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of women with 10 or more years of schooling?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABL... |
### Task
Generate a SQL query to answer the following question:
`Which state has the lowest percentage of women with 10 or more years of schooling?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of men with 10 or more years of schooling?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE ... |
### Task
Generate a SQL query to answer the following question:
`Which state has the lowest percentage of men with 10 or more years of schooling?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE e... |
### Task
Generate a SQL query to answer the following question:
`What is the average female literacy rate in urban areas?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE crop_stats (crop TEXT, no... |
### Task
Generate a SQL query to answer the following question:
`What is the average male literacy rate in rural areas?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE crop_stats (crop TEXT, norm... |
### Task
Generate a SQL query to answer the following question:
`Which state has the highest percentage of children attending pre-primary school?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE age_groups (id BIGINT PRIMARY KEY, name TEXT);
CREATE TABLE e... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.