answer
stringlengths
6
3.91k
question
stringlengths
7
766
context
stringlengths
27
7.14k
SELECT COUNT(*) FROM head WHERE age > 56
How many heads of the departments are older than 56 ?
CREATE TABLE head (age INTEGER)
SELECT home_team FROM table_name_77 WHERE away_team = "carlton"
Name the home team for carlton away team
CREATE TABLE table_name_77 ( home_team VARCHAR, away_team VARCHAR )
SELECT COUNT(district) FROM table_1341586_19 WHERE incumbent = "Lindy Boggs"
how many district with incumbent being lindy boggs
CREATE TABLE table_1341586_19 (district VARCHAR, incumbent VARCHAR)
SELECT name, born_state, age FROM head ORDER BY age
List the name, born state and age of the heads of departments ordered by age.
CREATE TABLE head (name VARCHAR, born_state VARCHAR, age VARCHAR)
SELECT "Asia" FROM table_22767 WHERE "Latin America/Caribbean" = '783 (7.5%)'
what will the population of Asia be when Latin America/Caribbean is 783 (7.5%)?
CREATE TABLE table_22767 ( "Year" real, "World" real, "Asia" text, "Africa" text, "Europe" text, "Latin America/Caribbean" text, "Northern America" text, "Oceania" text )
SELECT result FROM table_1341586_19 WHERE candidates = "Billy Tauzin (D) Unopposed"
what's the result with candidates being billy tauzin (d) unopposed
CREATE TABLE table_1341586_19 (result VARCHAR, candidates VARCHAR)
SELECT creation, name, budget_in_billions FROM department
List the creation year, name and budget of each department.
CREATE TABLE department (creation VARCHAR, name VARCHAR, budget_in_billions VARCHAR)
SELECT Sex, COUNT(*) FROM Faculty GROUP BY Sex ORDER BY COUNT(*) DESC
How many faculty members do we have for each gender? Draw a bar chart, order by the Y-axis in descending.
CREATE TABLE Student ( StuID INTEGER, LName VARCHAR(12), Fname VARCHAR(12), Age INTEGER, Sex VARCHAR(1), Major INTEGER, Advisor INTEGER, city_code VARCHAR(3) ) CREATE TABLE Faculty ( FacID INTEGER, Lname VARCHAR(15), Fname VARCHAR(15), Rank VARCHAR(15), Sex VARCHAR(1), Phone INTEGER, Room VARCHAR(5), Building VARCHAR(13) ) CREATE TABLE Faculty_Participates_in ( FacID INTEGER, actid INTEGER ) CREATE TABLE Activity ( actid INTEGER, activity_name varchar(25) ) CREATE TABLE Participates_in ( stuid INTEGER, actid INTEGER )
SELECT COUNT(candidates) FROM table_1341586_19 WHERE result = "Retired to run for U. S. Senate Republican hold"
how many candidates with result being retired to run for u. s. senate republican hold
CREATE TABLE table_1341586_19 (candidates VARCHAR, result VARCHAR)
SELECT MAX(budget_in_billions), MIN(budget_in_billions) FROM department
What are the maximum and minimum budget of the departments?
CREATE TABLE department (budget_in_billions INTEGER)
SELECT week FROM table_14656147_2 WHERE record = "0-1"
List the record of 0-1 from the table?
CREATE TABLE table_14656147_2 ( week VARCHAR, record VARCHAR )
SELECT result FROM table_1341586_19 WHERE district = "Louisiana 2"
what's the result with district being louisiana 2
CREATE TABLE table_1341586_19 (result VARCHAR, district VARCHAR)
SELECT AVG(num_employees) FROM department WHERE ranking BETWEEN 10 AND 15
What is the average number of employees of the departments whose rank is between 10 and 15?
CREATE TABLE department (num_employees INTEGER, ranking INTEGER)
SELECT silver FROM table_name_24 WHERE gold < 12 AND rank < 5 AND bronze = 5
Which silver has a Gold smaller than 12, a Rank smaller than 5, and a Bronze of 5?
CREATE TABLE table_name_24 ( silver VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR )
SELECT candidates FROM table_1341586_19 WHERE first_elected = 1977
who is the the candidates with first elected being 1977
CREATE TABLE table_1341586_19 (candidates VARCHAR, first_elected VARCHAR)
SELECT name FROM head WHERE born_state <> 'California'
What are the names of the heads who are born outside the California state?
CREATE TABLE head (name VARCHAR, born_state VARCHAR)
SELECT "Date" FROM table_47482 WHERE "Company name" = 'samsung electronics co ltd' AND "Hardware Model" = 'gt-i9100'
When did Samsung Electronics Co LTD make the GT-i9100?
CREATE TABLE table_47482 ( "Company name" text, "Hardware Model" text, "Accreditation type" text, "Accreditation level" text, "Date" text )
SELECT result FROM table_1341586_14 WHERE first_elected = 1980
What happened to the incombent who was elected in 1980?
CREATE TABLE table_1341586_14 (result VARCHAR, first_elected VARCHAR)
SELECT DISTINCT T1.creation FROM department AS T1 JOIN management AS T2 ON T1.department_id = T2.department_id JOIN head AS T3 ON T2.head_id = T3.head_id WHERE T3.born_state = 'Alabama'
What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'?
CREATE TABLE department (creation VARCHAR, department_id VARCHAR); CREATE TABLE management (department_id VARCHAR, head_id VARCHAR); CREATE TABLE head (head_id VARCHAR, born_state VARCHAR)
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, flight WHERE (CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'BOSTON' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'DENVER' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code AND flight.to_airport = AIRPORT_SERVICE_1.airport_code) AND flight.departure_time BETWEEN 0 AND 800
what are the early morning flights from BOSTON to DENVER
CREATE TABLE time_interval ( period text, begin_time int, end_time int ) CREATE TABLE flight_leg ( flight_id int, leg_number int, leg_flight int ) CREATE TABLE airline ( airline_code varchar, airline_name text, note text ) CREATE TABLE ground_service ( city_code text, airport_code text, transport_type text, ground_fare int ) CREATE TABLE class_of_service ( booking_class varchar, rank int, class_description text ) CREATE TABLE restriction ( restriction_code text, advance_purchase int, stopovers text, saturday_stay_required text, minimum_stay int, maximum_stay int, application text, no_discounts text ) CREATE TABLE date_day ( month_number int, day_number int, year int, day_name varchar ) CREATE TABLE dual_carrier ( main_airline varchar, low_flight_number int, high_flight_number int, dual_airline varchar, service_name text ) CREATE TABLE compartment_class ( compartment varchar, class_type varchar ) CREATE TABLE equipment_sequence ( aircraft_code_sequence varchar, aircraft_code varchar ) CREATE TABLE flight ( aircraft_code_sequence text, airline_code varchar, airline_flight text, arrival_time int, connections int, departure_time int, dual_carrier text, flight_days text, flight_id int, flight_number int, from_airport varchar, meal_code text, stops int, time_elapsed int, to_airport varchar ) CREATE TABLE month ( month_number int, month_name text ) CREATE TABLE code_description ( code varchar, description text ) CREATE TABLE airport ( airport_code varchar, airport_name text, airport_location text, state_code varchar, country_name varchar, time_zone_code varchar, minimum_connect_time int ) CREATE TABLE state ( state_code text, state_name text, country_name text ) CREATE TABLE food_service ( meal_code text, meal_number int, compartment text, meal_description varchar ) CREATE TABLE city ( city_code varchar, city_name varchar, state_code varchar, country_name varchar, time_zone_code varchar ) CREATE TABLE time_zone ( time_zone_code text, time_zone_name text, hours_from_gmt int ) CREATE TABLE flight_stop ( flight_id int, stop_number int, stop_days text, stop_airport text, arrival_time int, arrival_airline text, arrival_flight_number int, departure_time int, departure_airline text, departure_flight_number int, stop_time int ) CREATE TABLE flight_fare ( flight_id int, fare_id int ) CREATE TABLE days ( days_code varchar, day_name varchar ) CREATE TABLE fare_basis ( fare_basis_code text, booking_class text, class_type text, premium text, economy text, discounted text, night text, season text, basis_days text ) CREATE TABLE fare ( fare_id int, from_airport varchar, to_airport varchar, fare_basis_code text, fare_airline text, restriction_code text, one_direction_cost int, round_trip_cost int, round_trip_required varchar ) CREATE TABLE aircraft ( aircraft_code varchar, aircraft_description varchar, manufacturer varchar, basic_type varchar, engines int, propulsion varchar, wide_body varchar, wing_span int, length int, weight int, capacity int, pay_load int, cruising_speed int, range_miles int, pressurized varchar ) CREATE TABLE airport_service ( city_code varchar, airport_code varchar, miles_distant int, direction varchar, minutes_distant int )
SELECT result FROM table_1341586_14 WHERE incumbent = "Terry L. Bruce"
How did the election end for Terry L. Bruce?
CREATE TABLE table_1341586_14 (result VARCHAR, incumbent VARCHAR)
SELECT born_state FROM head GROUP BY born_state HAVING COUNT(*) >= 3
What are the names of the states where at least 3 heads were born?
CREATE TABLE head (born_state VARCHAR)
SELECT MIN(3 AS _credits) FROM table_148535_2
Name the most 3 credits
CREATE TABLE table_148535_2 ( Id VARCHAR )
SELECT party FROM table_1341586_36 WHERE incumbent = "Tony P. Hall"
What party was Tony P. Hall affiliated with?
CREATE TABLE table_1341586_36 (party VARCHAR, incumbent VARCHAR)
SELECT creation FROM department GROUP BY creation ORDER BY COUNT(*) DESC LIMIT 1
In which year were most departments established?
CREATE TABLE department (creation VARCHAR)
SELECT "Yellow jersey" FROM table_3791 WHERE "Distance (km)" = '125'
What is every yellow jersey entry for the distance 125?
CREATE TABLE table_3791 ( "Year" text, "Stage" real, "Start of stage" text, "Distance (km)" text, "Category of climb" text, "Stage winner" text, "Nationality" text, "Yellow jersey" text, "Bend" real )
SELECT COUNT(first_elected) FROM table_1341586_43 WHERE district = "Tennessee 2"
Name number first elected for tennessee 2?
CREATE TABLE table_1341586_43 (first_elected VARCHAR, district VARCHAR)
SELECT T1.name, T1.num_employees FROM department AS T1 JOIN management AS T2 ON T1.department_id = T2.department_id WHERE T2.temporary_acting = 'Yes'
Show the name and number of employees for the departments managed by heads whose temporary acting value is 'Yes'?
CREATE TABLE management (department_id VARCHAR, temporary_acting VARCHAR); CREATE TABLE department (name VARCHAR, num_employees VARCHAR, department_id VARCHAR)
SELECT years FROM table_name_63 WHERE matches > 158 AND rank > 9 AND goals < 84
In what years was there a rank lower than 9, under 84 goals, and more than 158 matches?
CREATE TABLE table_name_63 ( years VARCHAR, goals VARCHAR, matches VARCHAR, rank VARCHAR )
SELECT candidates FROM table_1341586_43 WHERE first_elected = 1964
Name the candidates in 1964
CREATE TABLE table_1341586_43 (candidates VARCHAR, first_elected VARCHAR)
SELECT COUNT(DISTINCT temporary_acting) FROM management
How many acting statuses are there?
CREATE TABLE management (temporary_acting VARCHAR)
SELECT "10:00" FROM table_43208 WHERE "9:30" = 'flashpoint'
What aired at 10:00 when Flashpoint aired at 9:30?
CREATE TABLE table_43208 ( "8:00" text, "8:30" text, "9:00" text, "9:30" text, "10:00" text )
SELECT COUNT(candidates) FROM table_1341586_44 WHERE incumbent = "Mac Sweeney"
How many districts have Mac Sweeney as incumbent?
CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(*) FROM department WHERE NOT department_id IN (SELECT department_id FROM management)
How many departments are led by heads who are not mentioned?
CREATE TABLE management (department_id VARCHAR); CREATE TABLE department (department_id VARCHAR)
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.insurance = "Government" AND procedures.short_title = "Rt/left heart card cath"
count the number of patients whose insurance is government and procedure short title is rt/left heart card cath?
CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text )
SELECT candidates FROM table_1341586_44 WHERE incumbent = "Henry B. Gonzalez"
Who are all the candidates vying for Henry B. Gonzalez' seat?
CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR)
SELECT DISTINCT T1.age FROM management AS T2 JOIN head AS T1 ON T1.head_id = T2.head_id WHERE T2.temporary_acting = 'Yes'
What are the distinct ages of the heads who are acting?
CREATE TABLE head (age VARCHAR, head_id VARCHAR); CREATE TABLE management (head_id VARCHAR, temporary_acting VARCHAR)
SELECT record FROM table_18904831_5 WHERE high_rebounds = "Dydek (10)"
What was the record of the game in which Dydek (10) did the most high rebounds?
CREATE TABLE table_18904831_5 ( record VARCHAR, high_rebounds VARCHAR )
SELECT candidates FROM table_1341586_44 WHERE incumbent = "Albert Bustamante"
Name all the candidates vying for Albert Bustamante's seat.
CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR)
SELECT T3.born_state FROM department AS T1 JOIN management AS T2 ON T1.department_id = T2.department_id JOIN head AS T3 ON T2.head_id = T3.head_id WHERE T1.name = 'Treasury' INTERSECT SELECT T3.born_state FROM department AS T1 JOIN management AS T2 ON T1.department_id = T2.department_id JOIN head AS T3 ON T2.head_id = T3.head_id WHERE T1.name = 'Homeland Security'
List the states where both the secretary of 'Treasury' department and the secretary of 'Homeland Security' were born.
CREATE TABLE management (department_id VARCHAR, head_id VARCHAR); CREATE TABLE head (born_state VARCHAR, head_id VARCHAR); CREATE TABLE department (department_id VARCHAR, name VARCHAR)
SELECT "Date" FROM table_10130 WHERE "Venue" = 'glenferrie oval'
When was the game played at glenferrie oval?
CREATE TABLE table_10130 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT district FROM table_1341598_10 WHERE incumbent = "Michael Bilirakis"
In what district was the incumbent Michael Bilirakis?
CREATE TABLE table_1341598_10 (district VARCHAR, incumbent VARCHAR)
SELECT T1.department_id, T1.name, COUNT(*) FROM management AS T2 JOIN department AS T1 ON T1.department_id = T2.department_id GROUP BY T1.department_id HAVING COUNT(*) > 1
Which department has more than 1 head at a time? List the id, name and the number of heads.
CREATE TABLE management (department_id VARCHAR); CREATE TABLE department (department_id VARCHAR, name VARCHAR)
SELECT MAX("K 2 O") FROM table_7207 WHERE "Na 2 O" > '1.87' AND "Fe 2 O 3" > '0.07' AND "Objects" = 'ritual disk' AND "Al 2 O 3" < '0.62'
What is the highest K 2 O, when Na 2 O is greater than 1.87, when Fe 2 O 3 is greater than 0.07, when Objects is Ritual Disk, and when Al 2 O 3 is less than 0.62?
CREATE TABLE table_7207 ( "Objects" text, "Date" text, "SiO 2" real, "Al 2 O 3" real, "Fe 2 O 3" real, "K 2 O" real, "Na 2 O" real )
SELECT candidates FROM table_1341598_10 WHERE first_elected = 1980
Who is the candidate in election where the incumbent was first elected in 1980?
CREATE TABLE table_1341598_10 (candidates VARCHAR, first_elected VARCHAR)
SELECT head_id, name FROM head WHERE name LIKE '%Ha%'
Which head's name has the substring 'Ha'? List the id and name.
CREATE TABLE head (head_id VARCHAR, name VARCHAR)
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.icd9_code = "45620" AND lab.fluid = "Blood"
what is the total number of patients diagnosed with icd9 code 45620 who had a blood test.
CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text )
SELECT party FROM table_1341598_10 WHERE incumbent = "Charles Edward Bennett"
What party does incumbent Charles Edward Bennett belong to?
CREATE TABLE table_1341598_10 (party VARCHAR, incumbent VARCHAR)
SELECT COUNT(*) FROM farm
How many farms are there?
CREATE TABLE farm (Id VARCHAR)
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "PNEUMONIA;HUMAN IMMUNODEFIENCY VIRUS;RULE OUT TUBERCULOSIS" AND demographic.dod_year <= "2168.0"
count the number of patients whose primary disease is pneumonia;human immunodefiency virus;rule out tuberculosis and year of death is less than or equal to 2168?
CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text )
SELECT result FROM table_1341598_10 WHERE district = "Florida 18"
What was the result of the election in the Florida 18 district?
CREATE TABLE table_1341598_10 (result VARCHAR, district VARCHAR)
SELECT Total_Horses FROM farm ORDER BY Total_Horses
List the total number of horses on farms in ascending order.
CREATE TABLE farm (Total_Horses VARCHAR)
SELECT "Section" FROM table_72013 WHERE "Position" = '6th'
Which section is in the 6th position?
CREATE TABLE table_72013 ( "Season" text, "Level" text, "Division" text, "Section" text, "Position" text )
SELECT district FROM table_1341598_10 WHERE incumbent = "Lawrence J. Smith"
In what district is the incumbent Lawrence J. Smith?
CREATE TABLE table_1341598_10 (district VARCHAR, incumbent VARCHAR)
SELECT Hosts FROM farm_competition WHERE Theme <> 'Aliens'
What are the hosts of competitions whose theme is not "Aliens"?
CREATE TABLE farm_competition (Hosts VARCHAR, Theme VARCHAR)
SELECT "Area" FROM table_69300 WHERE "Authority" = 'state' AND "Gender" = 'coed' AND "Roll" = '122'
What is the area of the coed school with a state authority and a roll number of 122?
CREATE TABLE table_69300 ( "Name" text, "Years" text, "Gender" text, "Area" text, "Authority" text, "Decile" real, "Roll" real )
SELECT district FROM table_1341598_36 WHERE incumbent = "Del Latta"
where is the district where the incumbent is del latta?
CREATE TABLE table_1341598_36 (district VARCHAR, incumbent VARCHAR)
SELECT Theme FROM farm_competition ORDER BY YEAR
What are the themes of farm competitions sorted by year in ascending order?
CREATE TABLE farm_competition (Theme VARCHAR, YEAR VARCHAR)
SELECT type FROM table_name_1 WHERE location = "amherst, ma"
Which type of institution is in Amherst, MA?
CREATE TABLE table_name_1 ( type VARCHAR, location VARCHAR )
SELECT party FROM table_1341598_36 WHERE district = "Ohio 11"
what is the party for district ohio 11?
CREATE TABLE table_1341598_36 (party VARCHAR, district VARCHAR)
SELECT AVG(Working_Horses) FROM farm WHERE Total_Horses > 5000
What is the average number of working horses of farms with more than 5000 total number of horses?
CREATE TABLE farm (Working_Horses INTEGER, Total_Horses INTEGER)
SELECT "FIS Nordic World Ski Championships" FROM table_21696 WHERE "Winner" = 'Birger Ruud'
What years did Birger Ruud win the FIS Nordic World Ski Championships?
CREATE TABLE table_21696 ( "Winner" text, "Country" text, "Winter Olympics" text, "FIS Nordic World Ski Championships" text, "Holmenkollen" text )
SELECT candidates FROM table_1341598_36 WHERE district = "Ohio 6"
who were the candidates for district ohio 6?
CREATE TABLE table_1341598_36 (candidates VARCHAR, district VARCHAR)
SELECT MAX(Cows), MIN(Cows) FROM farm
What are the maximum and minimum number of cows across all farms.
CREATE TABLE farm (Cows INTEGER)
SELECT COUNT("player") FROM table_203_116 WHERE "birth date" = 1988
how many members of estonia 's men 's national volleyball team were born in 1988 ?
CREATE TABLE table_203_116 ( id number, "no." number, "player" text, "birth date" text, "weight" number, "height" number, "position" text, "current club" text )
SELECT party FROM table_1341598_11 WHERE district = "Georgia 9"
What is the party for District Georgia 9?
CREATE TABLE table_1341598_11 (party VARCHAR, district VARCHAR)
SELECT COUNT(DISTINCT Status) FROM city
How many different statuses do cities have?
CREATE TABLE city (Status VARCHAR)
SELECT no_in_season FROM table_2818164_5 WHERE original_air_date = "February 11, 1988"
What episoe number in the season originally aired on February 11, 1988?
CREATE TABLE table_2818164_5 ( no_in_season VARCHAR, original_air_date VARCHAR )
SELECT district FROM table_1341598_11 WHERE first_elected = 1980
Which district shows a first elected of 1980?
CREATE TABLE table_1341598_11 (district VARCHAR, first_elected VARCHAR)
SELECT Official_Name FROM city ORDER BY Population DESC
List official names of cities in descending order of population.
CREATE TABLE city (Official_Name VARCHAR, Population VARCHAR)
SELECT "Date" FROM table_60686 WHERE "Opponent" = 'adrián menéndez-maceiras'
What date was the match against adri n men ndez-maceiras?
CREATE TABLE table_60686 ( "Date" text, "Tournament" text, "Surface" text, "Opponent" text, "Score" text )
SELECT party FROM table_1341598_11 WHERE incumbent = "Wyche Fowler"
What is the party for the incumbent Wyche Fowler?
CREATE TABLE table_1341598_11 (party VARCHAR, incumbent VARCHAR)
SELECT Official_Name, Status FROM city ORDER BY Population DESC LIMIT 1
List the official name and status of the city with the largest population.
CREATE TABLE city (Official_Name VARCHAR, Status VARCHAR, Population VARCHAR)
SELECT "released" FROM table_203_365 WHERE "released" IN (2004, 2005) GROUP BY "released" ORDER BY COUNT("video title") DESC LIMIT 1
did shoko goto make more films in 2004 or 2005 ?
CREATE TABLE table_203_365 ( id number, "released" text, "video title" text, "company" text, "director" text, "notes" text )
SELECT candidates FROM table_1341598_11 WHERE incumbent = "George Darden"
Who are shown as candidates when George Darden is the incumbent?
CREATE TABLE table_1341598_11 (candidates VARCHAR, incumbent VARCHAR)
SELECT T2.Year, T1.Official_Name FROM city AS T1 JOIN farm_competition AS T2 ON T1.City_ID = T2.Host_city_ID
Show the years and the official names of the host cities of competitions.
CREATE TABLE city (Official_Name VARCHAR, City_ID VARCHAR); CREATE TABLE farm_competition (Year VARCHAR, Host_city_ID VARCHAR)
SELECT "Venue" FROM table_65116 WHERE "Date" = 'february 22, 2003'
What venue listed is dated February 22, 2003?
CREATE TABLE table_65116 ( "Date" text, "Venue" text, "Score" text, "Result" text, "Competition" text )
SELECT district FROM table_1341598_14 WHERE incumbent = "Dan Crane"
What district has Dan Crane as incumbent?
CREATE TABLE table_1341598_14 (district VARCHAR, incumbent VARCHAR)
SELECT T1.Official_Name FROM city AS T1 JOIN farm_competition AS T2 ON T1.City_ID = T2.Host_city_ID GROUP BY T2.Host_city_ID HAVING COUNT(*) > 1
Show the official names of the cities that have hosted more than one competition.
CREATE TABLE farm_competition (Host_city_ID VARCHAR); CREATE TABLE city (Official_Name VARCHAR, City_ID VARCHAR)
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admission_type = "EMERGENCY" AND lab.label = "RBC, CSF"
provide the number of patients whose admission type is emergency and lab test name is rbc, csf?
CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text )
SELECT district FROM table_1341598_39 WHERE incumbent = "Robert W. Edgar"
In which district is Robert W. Edgar the incumbent?
CREATE TABLE table_1341598_39 (district VARCHAR, incumbent VARCHAR)
SELECT T1.Status FROM city AS T1 JOIN farm_competition AS T2 ON T1.City_ID = T2.Host_city_ID GROUP BY T2.Host_city_ID ORDER BY COUNT(*) DESC LIMIT 1
Show the status of the city that has hosted the greatest number of competitions.
CREATE TABLE city (Status VARCHAR, City_ID VARCHAR); CREATE TABLE farm_competition (Host_city_ID VARCHAR)
SELECT DISTINCT course_offering.friday, course_offering.monday, course_offering.saturday, course_offering.sunday, course_offering.thursday, course_offering.tuesday, course_offering.wednesday FROM course INNER JOIN course_offering ON course.course_id = course_offering.course_id INNER JOIN semester ON semester.semester_id = course_offering.semester WHERE course.department = 'POLSCI' AND course.number = 659 AND semester.semester = 'WN' AND semester.year = 2016
How often does the course POLSCI 659 meet ?
CREATE TABLE course ( course_id int, name varchar, department varchar, number varchar, credits varchar, advisory_requirement varchar, enforced_requirement varchar, description varchar, num_semesters int, num_enrolled int, has_discussion varchar, has_lab varchar, has_projects varchar, has_exams varchar, num_reviews int, clarity_score int, easiness_score int, helpfulness_score int ) CREATE TABLE comment_instructor ( instructor_id int, student_id int, score int, comment_text varchar ) CREATE TABLE course_offering ( offering_id int, course_id int, semester int, section_number int, start_time time, end_time time, monday varchar, tuesday varchar, wednesday varchar, thursday varchar, friday varchar, saturday varchar, sunday varchar, has_final_project varchar, has_final_exam varchar, textbook varchar, class_address varchar, allow_audit varchar ) CREATE TABLE instructor ( instructor_id int, name varchar, uniqname varchar ) CREATE TABLE gsi ( course_offering_id int, student_id int ) CREATE TABLE student_record ( student_id int, course_id int, semester int, grade varchar, how varchar, transfer_source varchar, earn_credit varchar, repeat_term varchar, test_id varchar ) CREATE TABLE course_tags_count ( course_id int, clear_grading int, pop_quiz int, group_projects int, inspirational int, long_lectures int, extra_credit int, few_tests int, good_feedback int, tough_tests int, heavy_papers int, cares_for_students int, heavy_assignments int, respected int, participation int, heavy_reading int, tough_grader int, hilarious int, would_take_again int, good_lecture int, no_skip int ) CREATE TABLE requirement ( requirement_id int, requirement varchar, college varchar ) CREATE TABLE program ( program_id int, name varchar, college varchar, introduction varchar ) CREATE TABLE program_requirement ( program_id int, category varchar, min_credit int, additional_req varchar ) CREATE TABLE student ( student_id int, lastname varchar, firstname varchar, program_id int, declare_major varchar, total_credit int, total_gpa float, entered_as varchar, admit_term int, predicted_graduation_semester int, degree varchar, minor varchar, internship varchar ) CREATE TABLE area ( course_id int, area varchar ) CREATE TABLE jobs ( job_id int, job_title varchar, description varchar, requirement varchar, city varchar, state varchar, country varchar, zip int ) CREATE TABLE program_course ( program_id int, course_id int, workload int, category varchar ) CREATE TABLE course_prerequisite ( pre_course_id int, course_id int ) CREATE TABLE semester ( semester_id int, semester varchar, year int ) CREATE TABLE ta ( campus_job_id int, student_id int, location varchar ) CREATE TABLE offering_instructor ( offering_instructor_id int, offering_id int, instructor_id int )
SELECT party FROM table_1341598_39 WHERE incumbent = "Robert W. Edgar"
To which party does Robert W. Edgar belong?
CREATE TABLE table_1341598_39 (party VARCHAR, incumbent VARCHAR)
SELECT T2.Theme FROM city AS T1 JOIN farm_competition AS T2 ON T1.City_ID = T2.Host_city_ID WHERE T1.Population > 1000
Please show the themes of competitions with host cities having populations larger than 1000.
CREATE TABLE city (City_ID VARCHAR, Population INTEGER); CREATE TABLE farm_competition (Theme VARCHAR, Host_city_ID VARCHAR)
SELECT "Couple" FROM table_40395 WHERE "Style" = 'contemporary'
Which couple participated in the Contemporary style of dance?
CREATE TABLE table_40395 ( "Couple" text, "Style" text, "Music" text, "Choreographer(s)" text, "Results" text )
SELECT district FROM table_1341598_44 WHERE incumbent = "Jack Hightower"
What district is incumbent jack hightower from?
CREATE TABLE table_1341598_44 (district VARCHAR, incumbent VARCHAR)
SELECT Status, AVG(Population) FROM city GROUP BY Status
Please show the different statuses of cities and the average population of cities with each status.
CREATE TABLE city (Status VARCHAR, Population INTEGER)
SELECT "Metrical equivalence" FROM table_28772 WHERE "Portuguese name" = 'Linha'
Name the metrical equivalence for linha
CREATE TABLE table_28772 ( "Portuguese name" text, "English name" text, "Subdivides in" text, "Equivalence in Varas" text, "Metrical equivalence" text )
SELECT MIN(first_elected) FROM table_1341598_44 WHERE candidates = "Tom Loeffler (R) 80.6% Joe Sullivan (D) 19.4%"
What year were the election results tom loeffler (r) 80.6% joe sullivan (d) 19.4%?
CREATE TABLE table_1341598_44 (first_elected INTEGER, candidates VARCHAR)
SELECT Status FROM city GROUP BY Status ORDER BY COUNT(*)
Please show the different statuses, ordered by the number of cities that have each.
CREATE TABLE city (Status VARCHAR)
SELECT position FROM table_27132791_3 WHERE college = "SMU"
If the college is SMU, what is the position?
CREATE TABLE table_27132791_3 ( position VARCHAR, college VARCHAR )
SELECT incumbent FROM table_1341598_44 WHERE district = "Texas 22"
What incumbent won the district of texas 22?
CREATE TABLE table_1341598_44 (incumbent VARCHAR, district VARCHAR)
SELECT Status FROM city GROUP BY Status ORDER BY COUNT(*) DESC LIMIT 1
List the most common type of Status across cities.
CREATE TABLE city (Status VARCHAR)
SELECT "Team" FROM table_21876 WHERE "Date" = 'June 27'
What was the represented team on June 27?
CREATE TABLE table_21876 ( "Season" real, "Date" text, "Winning Driver" text, "Car #" real, "Sponsor" text, "Make" text, "Team" text, "Avg Speed" text, "Margin of Victory" text )
SELECT incumbent FROM table_1341604_19 WHERE district = "Louisiana 1"
Who's the incumbent of the Louisiana 1 district?
CREATE TABLE table_1341604_19 (incumbent VARCHAR, district VARCHAR)
SELECT Official_Name FROM city WHERE NOT City_ID IN (SELECT Host_city_ID FROM farm_competition)
List the official names of cities that have not held any competition.
CREATE TABLE farm_competition (Official_Name VARCHAR, City_ID VARCHAR, Host_city_ID VARCHAR); CREATE TABLE city (Official_Name VARCHAR, City_ID VARCHAR, Host_city_ID VARCHAR)
SELECT T2.song FROM music_festival AS T1 JOIN volume AS T2 ON T1.volume = T2.volume_id WHERE T1.result = "Nominated"
Please show the songs that have result 'nominated' at music festivals.
CREATE TABLE artist ( artist_id number, artist text, age number, famous_title text, famous_release_date text ) CREATE TABLE music_festival ( id number, music_festival text, date_of_ceremony text, category text, volume number, result text ) CREATE TABLE volume ( volume_id number, volume_issue text, issue_date text, weeks_on_top number, song text, artist_id number )
SELECT candidates FROM table_1341604_19 WHERE district = "Louisiana 4"
Who were the candidates in the Louisiana 4 district?
CREATE TABLE table_1341604_19 (candidates VARCHAR, district VARCHAR)
SELECT Status FROM city WHERE Population > 1500 INTERSECT SELECT Status FROM city WHERE Population < 500
Show the status shared by cities with population bigger than 1500 and smaller than 500.
CREATE TABLE city (Status VARCHAR, Population INTEGER)

Overview

This dataset is build from b-mc2/sql-create-context, Clinton/Text-to-sql-v1 and knowrohit07/know_sql.

A total of 148368 examples consist of natural language queries, SQL CREATE TABLE statements, and SQL Query answering the question using the CREATE statement as context.

Next Step

  • Further augment the data by converting queries and CREATE TABLE statements into different SQL dialects.
  • Support other informative contexts beyond CREATE TABLE.
Downloads last month
5
Edit dataset card