text
stringlengths
776
20.1k
### Task Generate a SQL query to answer the following question: `How many people speak Gujarati in Gujarat?` ### 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 language_stats (state BIGINT, language_...
### Task Generate a SQL query to answer the following question: `Which state has the largest number of Odia speakers?` ### 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 language_stats (state BIGINT,...
### Task Generate a SQL query to answer the following question: `How many people in Assam speak Assamese?` ### 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 language_stats (state BIGINT, language_id...
### Task Generate a SQL query to answer the following question: `Count the number of Kannada speakers in rural areas of Karnataka.` ### 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...
### Task Generate a SQL query to answer the following question: `Which state has the most people speaking Konkani?` ### 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 language_stats (state BIGINT, la...
### Task Generate a SQL query to answer the following question: `How many women are literate among the Muslim population in 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 number of literate Hindu 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...
### Task Generate a SQL query to answer the following question: `How many Christians in Kerala are currently working?` ### 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...
### Task Generate a SQL query to answer the following question: `Find the total number of illiterate Jains in Rajasthan.` ### 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 religion has the lowest female literacy rate in Uttar Pradesh?` ### 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: `How many Sikh men live in rural Punjab?` ### 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 language_stats (state BIGINT, language_id ...
### Task Generate a SQL query to answer the following question: `Which state has the highest number of Buddhists living in cities?` ### 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 languages (id BI...
### Task Generate a SQL query to answer the following question: `How many people speak Maithili in Bihar?` ### 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 language_stats (state BIGINT, language_id...
### Task Generate a SQL query to answer the following question: `Which state has the most Santali speakers?` ### 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 language_stats (state BIGINT, language_...
### Task Generate a SQL query to answer the following question: `How many people list English as their language 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 language_stats (sta...
### Task Generate a SQL query to answer the following question: `What is the total number of Kashmiri speakers in Jammu & Kashmir?` ### 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 language_stats (...
### Task Generate a SQL query to answer the following question: `How many Nepali speakers live in Sikkim?` ### 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 language_stats (state BIGINT, language_id...
### Task Generate a SQL query to answer the following question: `Which state has the largest Sindhi-speaking population?` ### 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 language_stats (state BIGI...
### Task Generate a SQL query to answer the following question: `How many Dogri speakers are there in 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 language_stats (state BIGINT, language...
### Task Generate a SQL query to answer the following question: `In which state is the gender gap in literacy the highest for Muslims?` ### 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_st...
### Task Generate a SQL query to answer the following question: `Which state has the highest percentage of working women among Christians?` ### 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 educatio...
### Task Generate a SQL query to answer the following question: `How many Buddhist children (0-6) are there 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 language_stats (state B...
### Task Generate a SQL query to answer the following question: `Which state has the largest population of illiterate 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 B...
### Task Generate a SQL query to answer the following question: `Which state has the largest population of illiterate 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...
### Task Generate a SQL query to answer the following question: `How many Hindus live in the urban areas of West Bengal?` ### 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: `How many Muslims live in the rural areas of Bihar?` ### 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_a...
### Task Generate a SQL query to answer the following question: `Which state has the most Jain 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 languages (id BIGINT PRIMARY KEY, name TEXT); C...
### Task Generate a SQL query to answer the following question: `Which state has the most Sikh 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 languages (id BIGINT PRIMARY KEY, name TEXT);...
### Task Generate a SQL query to answer the following question: `How many people speak Sanskrit in 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 language_stats (state BIGINT, language_id...
### Task Generate a SQL query to answer the following question: `Which state has the highest number of Tulu speakers?` ### 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 language_stats (state BIGINT,...
### Task Generate a SQL query to answer the following question: `Compare the number of Hindi speakers in rural vs urban Madhya Pradesh.` ### 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 language_st...
### Task Generate a SQL query to answer the following question: `Which religious group has the highest workforce participation in 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_...
### Task Generate a SQL query to answer the following question: `How many women are non-workers among the Sikh population in Punjab?` ### 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_stat...
### Task Generate a SQL query to answer the following question: `Which state has the highest number of literate Buddhist 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 (stat...
### Task Generate a SQL query to answer the following question: `How many people speak Bodo in Assam?` ### 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 language_stats (state BIGINT, language_id BIG...
### Task Generate a SQL query to answer the following question: `Which state has the most Manipuri speakers?` ### 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 language_stats (state BIGINT, language...
### Task Generate a SQL query to answer the following question: `How many people speak Mizo in Mizoram?` ### 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 language_stats (state BIGINT, language_id B...
### Task Generate a SQL query to answer the following question: `Which state has the largest population of Khasi speakers?` ### 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 language_stats (state BI...
### Task Generate a SQL query to answer the following question: `How many Garo speakers live in Meghalaya?` ### 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 language_stats (state BIGINT, language_i...
### Task Generate a SQL query to answer the following question: `Which state has the most Bhili/Bhilodi speakers?` ### 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 language_stats (state BIGINT, lan...
### Task Generate a SQL query to answer the following question: `How many Gondi speakers are there in Chhattisgarh?` ### 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 language_stats (state BIGINT, l...
### Task Generate a SQL query to answer the following question: `Which state has the highest number of Kurukh/Oraon speakers?` ### 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 language_stats (state...
### Task Generate a SQL query to answer the following question: `How many people speak Mundari in Jharkhand?` ### 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 state has the most Ho speakers?` ### 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 language_stats (state BIGINT, language_id BI...
### Task Generate a SQL query to answer the following question: `How many Khandeshi speakers are there 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 language_stats (state BIGINT...
### Task Generate a SQL query to answer the following question: `Which religious community has the most people living 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 languages (id...
### Task Generate a SQL query to answer the following question: `Which religious community is the most urbanized in 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 languages (id BIGINT PRI...
### Task Generate a SQL query to answer the following question: `How many Jain women are literate in Gujarat?` ### 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 number of Christian 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 languages (id BIGINT PRIMARY ...
### Task Generate a SQL query to answer the following question: `How many Muslim men are illiterate in Bihar?` ### 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: `What is the overall literacy rate 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 education_stats (state BIGINT, n...
### Task Generate a SQL query to answer the following question: `Calculate the literacy rate for Uttar Pradesh.` ### 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: `Compare the average literacy rate between urban and rural areas across 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 crop...
### Task Generate a SQL query to answer the following question: `Which state has the highest overall 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, ...
### Task Generate a SQL query to answer the following question: `Which state has the lowest overall 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: `Is the literacy rate higher for women or men 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 education_stats (state BIG...
### Task Generate a SQL query to answer the following question: `What is the literacy rate for women 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 education_stats (state BIGINT, ...
### Task Generate a SQL query to answer the following question: `What is the literacy rate for men in Bihar?` ### 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 literacy rate in rural Rajasthan?` ### 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 urban 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, no...
### Task Generate a SQL query to answer the following question: `What is the total illiterate population in 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 (state BIGINT, n...
### Task Generate a SQL query to answer the following question: `Which state has the highest number of illiterate people?` ### 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 state has the highest number of literate people?` ### 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 worker population ratio 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 education_stats (state BIGINT,...
### Task Generate a SQL query to answer the following question: `What is the worker population ratio 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 education_stats (state BIGINT, no_o...
### Task Generate a SQL query to answer the following question: `Which state has the highest worker population ratio?` ### 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...
### Task Generate a SQL query to answer the following question: `Which state has the lowest worker population ratio?` ### 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,...
### Task Generate a SQL query to answer the following question: `How many main workers are there in Uttar Pradesh?` ### 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: `How many marginal workers are there in Bihar?` ### 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: `What is the total number of main workers in 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 (state BIGINT, ...
### Task Generate a SQL query to answer the following question: `What is the total number of non-workers in 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 (state BIGINT, n...
### Task Generate a SQL query to answer the following question: `Is the worker population ratio higher in urban or 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 TE...
### Task Generate a SQL query to answer the following question: `What is the literacy rate in Karnataka?` ### 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_house...
### Task Generate a SQL query to answer the following question: `What is the literacy rate in Gujarat?` ### 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_househo...
### Task Generate a SQL query to answer the following question: `Which state has the largest gap between male and female literacy 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_...
### Task Generate a SQL query to answer the following question: `What is the literacy rate in rural Odisha?` ### 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_ho...
### Task Generate a SQL query to answer the following question: `What is the literacy rate in urban Delhi?` ### 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 literacy rate in Madhya Pradesh?` ### 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: `What is the worker population ratio 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 education_stats (state BIGINT, ...
### Task Generate a SQL query to answer the following question: `What is the worker population ratio in Gujarat?` ### 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: `Which state has the highest count of main workers?` ### 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, ...
### Task Generate a SQL query to answer the following question: `Which state has the highest count of marginal workers?` ### 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 count of non-workers?` ### 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 female worker population ratio 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 education_stats (state ...
### Task Generate a SQL query to answer the following question: `What is the male worker population ratio in Uttar Pradesh?` ### 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 ...
### Task Generate a SQL query to answer the following question: `What is the literacy rate in Andhra Pradesh?` ### 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: `What is the literacy rate in Telangana?` ### 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_house...
### Task Generate a SQL query to answer the following question: `Which state has the highest male 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, no_...
### 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 worker population ratio in Karnataka?` ### 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 worker population ratio in Andhra Pradesh?` ### 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: `How many people are working (main + marginal) in 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 (state BIG...
### Task Generate a SQL query to answer the following question: `What is the total number of non-working people in 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 (state BI...
### Task Generate a SQL query to answer the following question: `What is the total number of marginal workers 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 education_stats (stat...
### Task Generate a SQL query to answer the following question: `What is the total number of main workers 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 education_stats (state BIG...
### Task Generate a SQL query to answer the following question: `What is the literacy rate in Punjab?` ### 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_househol...
### Task Generate a SQL query to answer the following question: `What is the literacy rate in Haryana?` ### 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_househo...
### Task Generate a SQL query to answer the following question: `Which state has the highest urban 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 BIG...
### Task Generate a SQL query to answer the following question: `Which state has the highest rural male 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 BIGIN...
### Task Generate a SQL query to answer the following question: `What is the worker population ratio in Rajasthan?` ### 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...