question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
Which 2002 has a 2009 of 2r?
columns: - name: Id type: VARCHAR table: table_name_96
SELECT 2002 FROM table_name_96 WHERE 2009 = "2r"
What is under segment C when s cuckoo clock is under segment B?
columns: - name: segment_c type: VARCHAR - name: segment_b type: VARCHAR table: table_name_22
SELECT segment_c FROM table_name_22 WHERE segment_b = "s cuckoo clock"
What is the highest grid that tetsuya harada rode in?
columns: - name: grid type: INTEGER - name: rider type: VARCHAR table: table_name_71
SELECT MAX(grid) FROM table_name_71 WHERE rider = "tetsuya harada"
What is the Nationality that shows 4 as the ranking?
columns: - name: nationality type: VARCHAR - name: ranking type: VARCHAR table: table_name_57
SELECT nationality FROM table_name_57 WHERE ranking = 4
What is the launch date odds of winning 1 in 4.54?
columns: - name: launch_date type: VARCHAR - name: odds_of_winning type: VARCHAR table: table_name_2
SELECT launch_date FROM table_name_2 WHERE odds_of_winning = "1 in 4.54"
Who was the visiting team who played at the hubert h. humphrey metrodome stadium?
columns: - name: visiting_team type: VARCHAR - name: stadium type: VARCHAR table: table_name_67
SELECT visiting_team FROM table_name_67 WHERE stadium = "hubert h. humphrey metrodome"
What is the score of the home team, bath city?
columns: - name: score type: VARCHAR - name: home_team type: VARCHAR table: table_name_16
SELECT score FROM table_name_16 WHERE home_team = "bath city"
Which Total has a Set 1 of 25–22?
columns: - name: total type: VARCHAR - name: set_1 type: VARCHAR table: table_name_12
SELECT total FROM table_name_12 WHERE set_1 = "25–22"
Name the high rebounds for march 15
columns: - name: high_rebounds type: VARCHAR - name: date type: VARCHAR table: table_17432028_1
SELECT high_rebounds FROM table_17432028_1 WHERE date = "March 15"
What is the earliest year of the Honda Engine with a finish of 4?
columns: - name: year type: INTEGER - name: engine type: VARCHAR - name: finish type: VARCHAR table: table_name_53
SELECT MIN(year) FROM table_name_53 WHERE engine = "honda" AND finish = 4
Which 30-day Pass has a Base Fare of $3?
columns: - name: day_pass type: VARCHAR - name: base_fares type: VARCHAR table: table_name_74
SELECT 30 - day_pass FROM table_name_74 WHERE base_fares = "$3"
What is the venue for the friendly competition at Dreisamstadion, Freiburg?
columns: - name: score type: VARCHAR - name: competition type: VARCHAR - name: venue type: VARCHAR table: table_name_52
SELECT score FROM table_name_52 WHERE competition = "friendly" AND venue = "dreisamstadion, freiburg"
What is the highest rank for a nation with 26 golds and over 17 silvers?
columns: - name: rank type: INTEGER - name: gold type: VARCHAR - name: silver type: VARCHAR table: table_name_39
SELECT MAX(rank) FROM table_name_39 WHERE gold = 26 AND silver > 17
How many times was william m. colmer winstead first elected?
columns: - name: first_elected type: VARCHAR - name: incumbent type: VARCHAR table: table_1342218_24
SELECT COUNT(first_elected) FROM table_1342218_24 WHERE incumbent = "William M. Colmer"
What team plays at Spartak, Mogilev?
columns: - name: team type: VARCHAR - name: venue type: VARCHAR table: table_name_26
SELECT team FROM table_name_26 WHERE venue = "spartak, mogilev"
What Club Established in 2010 has a League of MHL?
columns: - name: club type: VARCHAR - name: league type: VARCHAR - name: established type: VARCHAR table: table_name_13
SELECT club FROM table_name_13 WHERE league = "mhl" AND established = 2010
Name the year for open cup did not qualify and national final
columns: - name: year type: VARCHAR - name: open_cup type: VARCHAR - name: playoffs type: VARCHAR table: table_2553861_1
SELECT COUNT(year) FROM table_2553861_1 WHERE open_cup = "Did not qualify" AND playoffs = "National Final"
What is the percentage of Judaism associated with Christianity at 2.51%?
columns: - name: judaism type: VARCHAR - name: christianity type: VARCHAR table: table_name_2
SELECT judaism FROM table_name_2 WHERE christianity = "2.51%"
Who is the owner with the branding fox fm?
columns: - name: owner type: VARCHAR - name: branding type: VARCHAR table: table_name_48
SELECT owner FROM table_name_48 WHERE branding = "fox fm"
How many regions had 153 women prison inmates?
columns: - name: incarceration_rate_total type: VARCHAR - name: prison_inmates_women type: VARCHAR table: table_25042332_31
SELECT COUNT(incarceration_rate_total) FROM table_25042332_31 WHERE prison_inmates_women = 153
What is the championsleague when the total was greater than 1, the coppa italia was more than 2, and the Serie A was 1?
columns: - name: champions_league type: INTEGER - name: coppa_italia type: VARCHAR - name: serie_a type: VARCHAR - name: total type: VARCHAR table: table_name_40
SELECT SUM(champions_league) FROM table_name_40 WHERE serie_a = 1 AND total > 1 AND coppa_italia > 2
Name the age 30-39 and age 10-19 380
columns: - name: age_30_39 type: VARCHAR - name: age_10_19 type: VARCHAR table: table_169693_1
SELECT age_30_39 FROM table_169693_1 WHERE age_10_19 = 380
Which Season has a Skip of Eve Muirhead with a thirs of Jackie Lockhart (e/o) Kelly Wood (w)?
columns: - name: season type: VARCHAR - name: skip type: VARCHAR - name: third type: VARCHAR table: table_name_79
SELECT season FROM table_name_79 WHERE skip = "eve muirhead" AND third = "jackie lockhart (e/o) kelly wood (w)"
what year was the first elected incumbant Sidney R. Yates?
columns: - name: first_elected type: VARCHAR - name: incumbent type: VARCHAR table: table_1341690_13
SELECT first_elected FROM table_1341690_13 WHERE incumbent = "Sidney R. Yates"
What's the value for utah when texas is humphrey?
columns: - name: utah type: VARCHAR - name: texas type: VARCHAR table: table_name_80
SELECT utah FROM table_name_80 WHERE texas = "humphrey"
What is sSpec Number, when Frequency is 1 GHZ?
columns: - name: sspec_number type: VARCHAR - name: frequency type: VARCHAR table: table_name_98
SELECT sspec_number FROM table_name_98 WHERE frequency = "1 ghz"
What is the Margin in 1953 when Patty Berg was Runner(s)-up?
columns: - name: margin type: VARCHAR - name: runner_s__up type: VARCHAR - name: year type: VARCHAR table: table_name_29
SELECT margin FROM table_name_29 WHERE runner_s__up = "patty berg" AND year = 1953
What is the FCC info for the call sign with a frequency MHz of 101.3, a ERP W over 10, and a Facility ID smaller than 87027?
columns: - name: fcc_info type: VARCHAR - name: facility_id type: VARCHAR - name: frequency_mhz type: VARCHAR - name: erp_w type: VARCHAR table: table_name_52
SELECT fcc_info FROM table_name_52 WHERE frequency_mhz = 101.3 AND erp_w > 10 AND facility_id < 87027
what is november 3 when june 10-11 is june 10, 1964?
columns: - name: november_3 type: VARCHAR - name: june_10_11 type: VARCHAR table: table_25355392_2
SELECT november_3 FROM table_25355392_2 WHERE june_10_11 = "June 10, 1964"
What was nominated for the Best Movie category?
columns: - name: work type: VARCHAR - name: category type: VARCHAR table: table_name_54
SELECT work FROM table_name_54 WHERE category = "best movie"
Which Telugu తెలుగు has a Tamil தமிழ் of pūsam பூசம்?
columns: - name: "telugu_\u0C24\u0C46\u0C32\u0C41\u0C17\u0C41" type: VARCHAR - name: "tamil_\u0BA4\u0BAE\u0BBF\u0BB4\u0BCD" type: VARCHAR table: table_name_52
SELECT telugu_తెలుగు FROM table_name_52 WHERE tamil_தமிழ் = "pūsam பூசம்"
What position is played by the player from the Chicago Cubs?
columns: - name: position type: VARCHAR - name: team type: VARCHAR table: table_name_8
SELECT position FROM table_name_8 WHERE team = "chicago cubs"
What is the Location of the Event on March 30, 2008?
columns: - name: location type: VARCHAR - name: date type: VARCHAR table: table_name_73
SELECT location FROM table_name_73 WHERE date = "march 30, 2008"
What is the geographical region for hometown Imbert?
columns: - name: geographical_regions type: VARCHAR - name: hometown type: VARCHAR table: table_name_1
SELECT geographical_regions FROM table_name_1 WHERE hometown = "imbert"
What is the location attendance of the game with A. Horford (10) as the highest rebounds and J. Johnson (21) as the highest points?
columns: - name: location_attendance type: VARCHAR - name: high_rebounds type: VARCHAR - name: high_points type: VARCHAR table: table_name_49
SELECT location_attendance FROM table_name_49 WHERE high_rebounds = "a. horford (10)" AND high_points = "j. johnson (21)"
What is Howard Payne University's total enrollment?
columns: - name: total_enrollment type: VARCHAR - name: institution_name type: VARCHAR table: table_name_67
SELECT total_enrollment FROM table_name_67 WHERE institution_name = "howard payne university"
Which Played is the highest one that has an Against smaller than 18, and Points smaller than 10?
columns: - name: played type: INTEGER - name: against type: VARCHAR - name: points type: VARCHAR table: table_name_92
SELECT MAX(played) FROM table_name_92 WHERE against < 18 AND points < 10
When less than 37 points are scored, what's the lowest Pct % found?
columns: - name: pct__percentage type: INTEGER - name: points type: INTEGER table: table_name_90
SELECT MIN(pct__percentage) FROM table_name_90 WHERE points < 37
Which district has the incumbent Wilbur Mills and a re-elected result?
columns: - name: district type: VARCHAR - name: result type: VARCHAR - name: incumbent type: VARCHAR table: table_1342218_5
SELECT district FROM table_1342218_5 WHERE result = "Re-elected" AND incumbent = "Wilbur Mills"
What visitor has Ottawa as a home and a date of April 26?
columns: - name: visitor type: VARCHAR - name: home type: VARCHAR - name: date type: VARCHAR table: table_name_20
SELECT visitor FROM table_name_20 WHERE home = "ottawa" AND date = "april 26"
What is the total number played with a difference of 22 and less than 34 against?
columns: - name: played type: VARCHAR - name: difference type: VARCHAR - name: against type: VARCHAR table: table_name_76
SELECT COUNT(played) FROM table_name_76 WHERE difference = "22" AND against < 34
Can you tell me the Score that has the Date of 05 dec?
columns: - name: score type: VARCHAR - name: date type: VARCHAR table: table_name_28
SELECT score FROM table_name_28 WHERE date = "05 dec"
What was the resolution for the match that ended by Submission (armbar)?
columns: - name: res type: VARCHAR - name: method type: VARCHAR table: table_name_91
SELECT res FROM table_name_91 WHERE method = "submission (armbar)"
If Arthur Albert is the director, what is the maximum series number?
columns: - name: series__number type: INTEGER - name: directed_by type: VARCHAR table: table_17356106_1
SELECT MAX(series__number) FROM table_17356106_1 WHERE directed_by = "Arthur Albert"
What position does the winner from Ohio State with 412 points play?
columns: - name: position type: VARCHAR - name: school type: VARCHAR - name: points type: VARCHAR table: table_name_38
SELECT position FROM table_name_38 WHERE school = "ohio state" AND points = "412"
What was the Home team's score when the Venue was mcg?
columns: - name: home_team type: VARCHAR - name: venue type: VARCHAR table: table_name_95
SELECT home_team AS score FROM table_name_95 WHERE venue = "mcg"
Which Year has an Expenditure of 55, and an Income smaller than 36.2?
columns: - name: year type: INTEGER - name: expenditure type: VARCHAR - name: income type: VARCHAR table: table_name_7
SELECT MIN(year) FROM table_name_7 WHERE expenditure = 55 AND income < 36.2
What was the score when she was a runner-up?
columns: - name: score type: VARCHAR - name: outcome type: VARCHAR table: table_name_38
SELECT score FROM table_name_38 WHERE outcome = "runner-up"
Name the F. Goals with tries of 0 0 and games of 05 5
columns: - name: tries type: VARCHAR - name: games type: VARCHAR table: table_name_18
SELECT F.goals FROM table_name_18 WHERE tries = "0 0" AND games = "05 5"
What's the rank in West Virginia when the overweight adult was 66.8%?
columns: - name: obesity_rank type: VARCHAR - name: overweight__incl_obese__adults type: VARCHAR - name: state_and_district_of_columbia type: VARCHAR table: table_name_87
SELECT obesity_rank FROM table_name_87 WHERE overweight__incl_obese__adults = "66.8%" AND state_and_district_of_columbia = "west virginia"
Which category won the Sundance Film Festival award in 1998?
columns: - name: category type: VARCHAR - name: award type: VARCHAR - name: result type: VARCHAR - name: year type: VARCHAR table: table_name_95
SELECT category FROM table_name_95 WHERE result = "won" AND year = 1998 AND award = "sundance film festival"
to the Latin of f, y, u/v/w?
columns: - name: greek type: VARCHAR - name: latin type: VARCHAR table: table_name_63
SELECT greek FROM table_name_63 WHERE latin = "f, y, u/v/w"
What was the attendance of the Florida vs. Montreal game?
columns: - name: attendance type: INTEGER - name: home type: VARCHAR - name: visitor type: VARCHAR table: table_name_46
SELECT AVG(attendance) FROM table_name_46 WHERE home = "florida" AND visitor = "montreal"
how many callsigns are for the branding telemundo 47
columns: - name: callsign type: VARCHAR - name: branding type: VARCHAR table: table_1979203_1
SELECT COUNT(callsign) FROM table_1979203_1 WHERE branding = "Telemundo 47"
What is the molecular target of the organism that has a disease area of antiviral?
columns: - name: molecular_target type: VARCHAR - name: disease_area type: VARCHAR table: table_name_45
SELECT molecular_target FROM table_name_45 WHERE disease_area = "antiviral"
How many executions in persona have a number with known sentences of 2 (1543–1544)?
columns: - name: executions_in_persona type: VARCHAR - name: "number_of_autos_da_f\xE9_with_known_sentences" type: VARCHAR table: table_name_92
SELECT executions_in_persona FROM table_name_92 WHERE number_of_autos_da_fé_with_known_sentences = "2 (1543–1544)"
What is the number of losses for the game with a win % of 71.43%, and No Result is more than 0?
columns: - name: losses type: INTEGER - name: win__percentage type: VARCHAR - name: no_result type: VARCHAR table: table_name_23
SELECT SUM(losses) FROM table_name_23 WHERE win__percentage = "71.43%" AND no_result > 0
What is the rank for 1961?
columns: - name: rank type: VARCHAR - name: year type: VARCHAR table: table_name_33
SELECT rank FROM table_name_33 WHERE year = "1961"
What is the 1998 value with A in 1995, A in 1993, and 1r in 1996?
columns: - name: Id type: VARCHAR table: table_name_4
SELECT 1998 FROM table_name_4 WHERE 1995 = "a" AND 1993 = "a" AND 1996 = "1r"
Who directed the film Gomorra?
columns: - name: director_s_ type: VARCHAR - name: film_title_used_in_nomination type: VARCHAR table: table_18994724_1
SELECT director_s_ FROM table_18994724_1 WHERE film_title_used_in_nomination = "Gomorra"
What was the winning score of the Buy.com Siouxland Open?
columns: - name: winning_score type: VARCHAR - name: tournament type: VARCHAR table: table_name_57
SELECT winning_score FROM table_name_57 WHERE tournament = "buy.com siouxland open"
When they were 2-32 what did they score?
columns: - name: score type: VARCHAR - name: record type: VARCHAR table: table_name_71
SELECT score FROM table_name_71 WHERE record = "2-32"
What album is 4:53 long?
columns: - name: album type: VARCHAR - name: length type: VARCHAR table: table_name_74
SELECT album FROM table_name_74 WHERE length = "4:53"
Who is the candidate that was first elected in 1914?
columns: - name: candidates type: VARCHAR - name: first_elected type: VARCHAR table: table_1341973_11
SELECT candidates FROM table_1341973_11 WHERE first_elected = 1914
For the Republican party what are the names of the incumbents?
columns: - name: incumbent type: VARCHAR - name: party type: VARCHAR table: table_1342149_42
SELECT incumbent FROM table_1342149_42 WHERE party = "Republican"
What was the aggregate for the match with a team 2 of Kenya?
columns: - name: agg type: VARCHAR - name: team_2 type: VARCHAR table: table_name_60
SELECT agg FROM table_name_60 WHERE team_2 = "kenya"
Who was the opponent that led to a 10-13 record?
columns: - name: opponent type: VARCHAR - name: record type: VARCHAR table: table_name_38
SELECT opponent FROM table_name_38 WHERE record = "10-13"
What was the Home team in Tie no 16?
columns: - name: home_team type: VARCHAR - name: tie_no type: VARCHAR table: table_name_90
SELECT home_team FROM table_name_90 WHERE tie_no = "16"
How many times is the shot volume (cm3) less than 172.76?
columns: - name: shot_diameter__cm_ type: VARCHAR - name: shot_volume__cm_3__ type: INTEGER table: table_name_37
SELECT COUNT(shot_diameter__cm_) FROM table_name_37 WHERE shot_volume__cm_3__ < 172.76
What is the lowest week number for the game that was at milwaukee county stadium?
columns: - name: week type: INTEGER - name: game_site type: VARCHAR table: table_name_18
SELECT MIN(week) FROM table_name_18 WHERE game_site = "milwaukee county stadium"
Did the round 8 race get reported
columns: - name: report type: VARCHAR - name: rd type: VARCHAR table: table_15511178_3
SELECT report FROM table_15511178_3 WHERE rd = 8
What is the language of the television service cartello promozionale sky hd?
columns: - name: language type: VARCHAR - name: television_service type: VARCHAR table: table_name_50
SELECT language FROM table_name_50 WHERE television_service = "cartello promozionale sky hd"
What's the record of game 67?
columns: - name: record type: VARCHAR - name: game type: VARCHAR table: table_name_42
SELECT record FROM table_name_42 WHERE game = 67
What were the January (°F) temperatures in the Corner Brook location?
columns: - name: "january__\xB0f_" type: VARCHAR - name: location type: VARCHAR table: table_21980_1
SELECT january__°f_ FROM table_21980_1 WHERE location = "Corner Brook"
Name the date with resultof w 35-7
columns: - name: date type: VARCHAR - name: result type: VARCHAR table: table_name_22
SELECT date FROM table_name_22 WHERE result = "w 35-7"
What place is listed in the 2002-2003 season for the City of Aveiro?
columns: - name: city type: VARCHAR table: table_name_20
SELECT 2002 AS _2003_season FROM table_name_20 WHERE city = "aveiro"
How many ships for the nation with grand total of 20?
columns: - name: s_motor_ship___s_naval_trawler type: VARCHAR - name: grand_total type: VARCHAR table: table_name_13
SELECT s_motor_ship___s_naval_trawler FROM table_name_13 WHERE grand_total = 20
I want the lowest Grid for Rolf Stommelen
columns: - name: grid type: INTEGER - name: driver type: VARCHAR table: table_name_48
SELECT MIN(grid) FROM table_name_48 WHERE driver = "rolf stommelen"
What is the team of winner Dick Johnson?
columns: - name: team type: VARCHAR - name: winner type: VARCHAR table: table_name_55
SELECT team FROM table_name_55 WHERE winner = "dick johnson"
Private/Catholic school's minimum enrollment is?
columns: - name: enrollment type: INTEGER - name: affiliation type: VARCHAR table: table_16403890_1
SELECT MIN(enrollment) FROM table_16403890_1 WHERE affiliation = "Private/Catholic"
What is the theme where the original artist is Noemi feat. Fiorella Mannoia?
columns: - name: theme type: VARCHAR - name: original_artist type: VARCHAR table: table_25374338_1
SELECT theme FROM table_25374338_1 WHERE original_artist = "Noemi feat. Fiorella Mannoia"
What term did hon ralph hunt serve in office?
columns: - name: term_in_office type: VARCHAR - name: member type: VARCHAR table: table_name_9
SELECT term_in_office FROM table_name_9 WHERE member = "hon ralph hunt"
Which Record label has an Album of tera roop?
columns: - name: record_label type: VARCHAR - name: album type: VARCHAR table: table_name_84
SELECT record_label FROM table_name_84 WHERE album = "tera roop"
Name the high rebounds for record 7-1
columns: - name: high_rebounds type: VARCHAR - name: record type: VARCHAR table: table_18894744_5
SELECT high_rebounds FROM table_18894744_5 WHERE record = "7-1"
Name the national for rimutaka
columns: - name: national type: VARCHAR - name: electorate type: VARCHAR table: table_20217811_1
SELECT national FROM table_20217811_1 WHERE electorate = "Rimutaka"
What is Replaced By, when Date of Vacancy is "23 February 2009"?
columns: - name: replaced_by type: VARCHAR - name: date_of_vacancy type: VARCHAR table: table_name_68
SELECT replaced_by FROM table_name_68 WHERE date_of_vacancy = "23 february 2009"
Who has a total of 272?
columns: - name: player type: VARCHAR - name: total type: VARCHAR table: table_name_46
SELECT player FROM table_name_46 WHERE total = 272
What was the injured entry for Venezuela?
columns: - name: injured type: VARCHAR - name: country type: VARCHAR table: table_name_16
SELECT injured FROM table_name_16 WHERE country = "venezuela"
Who is second on the team with Euan Byers at lead?
columns: - name: second type: VARCHAR - name: lead type: VARCHAR table: table_name_38
SELECT second FROM table_name_38 WHERE lead = "euan byers"
What Call sign shows an ERP W of 80?
columns: - name: call_sign type: VARCHAR - name: erp_w type: VARCHAR table: table_name_93
SELECT call_sign FROM table_name_93 WHERE erp_w = 80
What was the result when incumbent Fred E. Busbey was elected?
columns: - name: result type: VARCHAR - name: incumbent type: VARCHAR table: table_1342013_12
SELECT result FROM table_1342013_12 WHERE incumbent = "Fred E. Busbey"
How many years are there where the the under-15 is Arturo Salazar Martinez and the under-19 is Moises Galvez?
columns: - name: year type: VARCHAR - name: under_15 type: VARCHAR - name: under_19 type: VARCHAR table: table_26368963_1
SELECT COUNT(year) FROM table_26368963_1 WHERE under_15 = "Arturo Salazar Martinez" AND under_19 = "Moises Galvez"
Name the district for reason for change being died july 4, 1939
columns: - name: district type: VARCHAR - name: reason_for_change type: VARCHAR table: table_2160008_4
SELECT district FROM table_2160008_4 WHERE reason_for_change = "Died July 4, 1939"
what team's score is 101?
columns: - name: team type: VARCHAR - name: score type: VARCHAR table: table_name_42
SELECT team FROM table_name_42 WHERE score = "101"
What is the country for the score 72-63-71-68=274?
columns: - name: country type: VARCHAR - name: score type: VARCHAR table: table_28498999_3
SELECT country FROM table_28498999_3 WHERE score = 72 - 63 - 71 - 68 = 274
Name the team for record 3-2
columns: - name: team type: VARCHAR - name: record type: VARCHAR table: table_22654073_6
SELECT team FROM table_22654073_6 WHERE record = "3-2"
What is the name of the player who is a height of 182?
columns: - name: player type: VARCHAR - name: height type: VARCHAR table: table_name_84
SELECT player FROM table_name_84 WHERE height = 182
What is the highest Psychological Dependence, when Pleasure is less than 2.3, when Drug is "Cannabis", and when Physical Dependence is less than 0.8?
columns: - name: psychological_dependence type: INTEGER - name: physical_dependence type: VARCHAR - name: pleasure type: VARCHAR - name: drug type: VARCHAR table: table_name_55
SELECT MAX(psychological_dependence) FROM table_name_55 WHERE pleasure < 2.3 AND drug = "cannabis" AND physical_dependence < 0.8
Which Sleeves have a Back of Unknown?
columns: - name: sleeves type: VARCHAR - name: back type: VARCHAR table: table_name_72
SELECT sleeves FROM table_name_72 WHERE back = "unknown"
Name the landesliga nord for freier tus regensburg
columns: - name: landesliga_nord type: VARCHAR - name: landesliga_mitte type: VARCHAR table: table_20181270_3
SELECT landesliga_nord FROM table_20181270_3 WHERE landesliga_mitte = "Freier TuS Regensburg"