question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
At what Games did the competitor win a Silver medal in the light heavyweight event?
columns: - name: games type: VARCHAR - name: medal type: VARCHAR - name: event type: VARCHAR table: table_name_54
SELECT games FROM table_name_54 WHERE medal = "silver" AND event = "light heavyweight"
WHen joaqui mendoza is the name how long is the duration?
columns: - name: duration type: VARCHAR - name: name type: VARCHAR table: table_19061741_3
SELECT duration FROM table_19061741_3 WHERE name = "Joaqui Mendoza"
what is the highest ngc number when the declination (j2000) is °25′26″?
columns: - name: ngc_number type: INTEGER - name: declination___j2000__ type: VARCHAR table: table_name_51
SELECT MAX(ngc_number) FROM table_name_51 WHERE declination___j2000__ = "°25′26″"
Which score has a Loss of gubicza (0-1)?
columns: - name: score type: VARCHAR - name: loss type: VARCHAR table: table_name_66
SELECT score FROM table_name_66 WHERE loss = "gubicza (0-1)"
what is the collegiate institution in queens
columns: - name: collegiate_institution type: VARCHAR - name: city type: VARCHAR table: table_18159601_1
SELECT collegiate_institution FROM table_18159601_1 WHERE city = "Queens"
Name the home for 16 april 2008
columns: - name: home type: VARCHAR - name: date type: VARCHAR table: table_name_11
SELECT home FROM table_name_11 WHERE date = "16 april 2008"
When was there a Time of 18:00, and a Set 1 of 22–25?
columns: - name: date type: VARCHAR - name: time type: VARCHAR - name: set_1 type: VARCHAR table: table_name_92
SELECT date FROM table_name_92 WHERE time = "18:00" AND set_1 = "22–25"
For races with an average speed of 113.835 mph, what are the winning race times?
columns: - name: race_time type: VARCHAR - name: average_speed__mph_ type: VARCHAR table: table_17801022_1
SELECT race_time FROM table_17801022_1 WHERE average_speed__mph_ = "113.835"
What was the output with no IR LEDs?
columns: - name: output type: VARCHAR - name: ir_leds type: VARCHAR table: table_name_90
SELECT output FROM table_name_90 WHERE ir_leds = "no"
What is the sum of t (µm), when Technology is MJ?
columns: - name: "t__\xB5m_" type: INTEGER - name: technology type: VARCHAR table: table_name_26
SELECT SUM(t__µm_) FROM table_name_26 WHERE technology = "mj"
How many ties are there where attendance is 11,997?
columns: - name: tie_no type: VARCHAR - name: attendance type: VARCHAR table: table_name_43
SELECT tie_no FROM table_name_43 WHERE attendance = "11,997"
how many areas were in the election in 1912
columns: - name: district type: VARCHAR - name: first_elected type: VARCHAR table: table_1342379_10
SELECT COUNT(district) FROM table_1342379_10 WHERE first_elected = 1912
What Event is at the Time 1:16?
columns: - name: event type: VARCHAR - name: time type: VARCHAR table: table_name_70
SELECT event FROM table_name_70 WHERE time = "1:16"
What is the FCC info of the station with a frequency above 95.3 and an ERP W smaller than 27 in Ocala, Florida?
columns: - name: fcc_info type: VARCHAR - name: city_of_license type: VARCHAR - name: frequency_mhz type: VARCHAR - name: erp_w type: VARCHAR table: table_name_48
SELECT fcc_info FROM table_name_48 WHERE frequency_mhz > 95.3 AND erp_w < 27 AND city_of_license = "ocala, florida"
What team played in front of 28,536 at an away stadium?
columns: - name: away_team type: VARCHAR - name: crowd type: INTEGER table: table_name_34
SELECT away_team AS score FROM table_name_34 WHERE crowd > 28 OFFSET 536
Name the most round for michael goulian
columns: - name: round type: INTEGER - name: winning_pilot type: VARCHAR table: table_20036882_2
SELECT MAX(round) FROM table_20036882_2 WHERE winning_pilot = "Michael Goulian"
With an original artist names Bette Midler, what is the order number?
columns: - name: order__number type: VARCHAR - name: original_artist type: VARCHAR table: table_21501565_1
SELECT COUNT(order__number) FROM table_21501565_1 WHERE original_artist = "Bette Midler"
What is the highest Top-10, when Top-25 is 4, and when Top-5 is greater than 1?
columns: - name: top_10 type: INTEGER - name: top_25 type: VARCHAR - name: top_5 type: VARCHAR table: table_name_62
SELECT MAX(top_10) FROM table_name_62 WHERE top_25 = 4 AND top_5 > 1
Who was the player who played for Hartford Whalers NHL Team?
columns: - name: player type: VARCHAR - name: nhl_team type: VARCHAR table: table_2679061_9
SELECT player FROM table_2679061_9 WHERE nhl_team = "Hartford Whalers"