question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
How many Wins have a Top 5 smaller than 0?
CREATE TABLE table_name_57 (wins INTEGER, top_5 INTEGER)
SELECT SUM(wins) FROM table_name_57 WHERE top_5 < 0
### Context: CREATE TABLE table_name_57 (wins INTEGER, top_5 INTEGER) ### Question: How many Wins have a Top 5 smaller than 0? ### Answer: SELECT SUM(wins) FROM table_name_57 WHERE top_5 < 0
Which Top 10 has a Top 5 larger than 1, and a Year of 2003, and Poles larger than 0?
CREATE TABLE table_name_15 (top_10 INTEGER, poles VARCHAR, top_5 VARCHAR, year VARCHAR)
SELECT AVG(top_10) FROM table_name_15 WHERE top_5 > 1 AND year = 2003 AND poles > 0
### Context: CREATE TABLE table_name_15 (top_10 INTEGER, poles VARCHAR, top_5 VARCHAR, year VARCHAR) ### Question: Which Top 10 has a Top 5 larger than 1, and a Year of 2003, and Poles larger than 0? ### Answer: SELECT AVG(top_10) FROM table_name_15 WHERE top_5 > 1 AND year = 2003 AND poles > 0
How many Top 10s have Wins larger than 0, and Poles larger than 0?
CREATE TABLE table_name_35 (top_10 VARCHAR, wins VARCHAR, poles VARCHAR)
SELECT COUNT(top_10) FROM table_name_35 WHERE wins > 0 AND poles > 0
### Context: CREATE TABLE table_name_35 (top_10 VARCHAR, wins VARCHAR, poles VARCHAR) ### Question: How many Top 10s have Wins larger than 0, and Poles larger than 0? ### Answer: SELECT COUNT(top_10) FROM table_name_35 WHERE wins > 0 AND poles > 0
What is the Established date of the Ontario Provincial Junior A Hockey League with more than 1 Championship?
CREATE TABLE table_name_58 (established VARCHAR, league VARCHAR, championships VARCHAR)
SELECT COUNT(established) FROM table_name_58 WHERE league = "ontario provincial junior a hockey" AND championships > 1
### Context: CREATE TABLE table_name_58 (established VARCHAR, league VARCHAR, championships VARCHAR) ### Question: What is the Established date of the Ontario Provincial Junior A Hockey League with more than 1 Championship? ### Answer: SELECT COUNT(established) FROM table_name_58 WHERE league = "ontario provincial junior a hockey" AND championships > 1
What Venue has more than 1 Championship and was Established after 1957?
CREATE TABLE table_name_4 (venue VARCHAR, championships VARCHAR, established VARCHAR)
SELECT venue FROM table_name_4 WHERE championships = 1 AND established > 1957
### Context: CREATE TABLE table_name_4 (venue VARCHAR, championships VARCHAR, established VARCHAR) ### Question: What Venue has more than 1 Championship and was Established after 1957? ### Answer: SELECT venue FROM table_name_4 WHERE championships = 1 AND established > 1957
With less than 1 Championship, what es the Established date of the Niagara Rugby Union League?
CREATE TABLE table_name_40 (established INTEGER, championships VARCHAR, league VARCHAR)
SELECT SUM(established) FROM table_name_40 WHERE championships < 1 AND league = "niagara rugby union"
### Context: CREATE TABLE table_name_40 (established INTEGER, championships VARCHAR, league VARCHAR) ### Question: With less than 1 Championship, what es the Established date of the Niagara Rugby Union League? ### Answer: SELECT SUM(established) FROM table_name_40 WHERE championships < 1 AND league = "niagara rugby union"
What is the Established date of the Brian Timmis Stadium?
CREATE TABLE table_name_57 (established VARCHAR, venue VARCHAR)
SELECT COUNT(established) FROM table_name_57 WHERE venue = "brian timmis stadium"
### Context: CREATE TABLE table_name_57 (established VARCHAR, venue VARCHAR) ### Question: What is the Established date of the Brian Timmis Stadium? ### Answer: SELECT COUNT(established) FROM table_name_57 WHERE venue = "brian timmis stadium"
What is the junior type with an intake of 60 and a DCSF number less than 3386 with the smallest Ofsted number?
CREATE TABLE table_name_62 (ofsted_number INTEGER, dcsf_number VARCHAR, intake VARCHAR, type VARCHAR)
SELECT MIN(ofsted_number) FROM table_name_62 WHERE intake = 60 AND type = "junior" AND dcsf_number < 3386
### Context: CREATE TABLE table_name_62 (ofsted_number INTEGER, dcsf_number VARCHAR, intake VARCHAR, type VARCHAR) ### Question: What is the junior type with an intake of 60 and a DCSF number less than 3386 with the smallest Ofsted number? ### Answer: SELECT MIN(ofsted_number) FROM table_name_62 WHERE intake = 60 AND type = "junior" AND dcsf_number < 3386
Which Record has a Game smaller than 19, and Points smaller than 19, and a Score of 4–6?
CREATE TABLE table_name_24 (record VARCHAR, score VARCHAR, game VARCHAR, points VARCHAR)
SELECT record FROM table_name_24 WHERE game < 19 AND points < 19 AND score = "4–6"
### Context: CREATE TABLE table_name_24 (record VARCHAR, score VARCHAR, game VARCHAR, points VARCHAR) ### Question: Which Record has a Game smaller than 19, and Points smaller than 19, and a Score of 4–6? ### Answer: SELECT record FROM table_name_24 WHERE game < 19 AND points < 19 AND score = "4–6"
How many games have a Record of 7–6–3, and Points smaller than 17?
CREATE TABLE table_name_74 (game VARCHAR, record VARCHAR, points VARCHAR)
SELECT COUNT(game) FROM table_name_74 WHERE record = "7–6–3" AND points < 17
### Context: CREATE TABLE table_name_74 (game VARCHAR, record VARCHAR, points VARCHAR) ### Question: How many games have a Record of 7–6–3, and Points smaller than 17? ### Answer: SELECT COUNT(game) FROM table_name_74 WHERE record = "7–6–3" AND points < 17
Which Points have an Opponent of vancouver canucks, and a November smaller than 11?
CREATE TABLE table_name_42 (points INTEGER, opponent VARCHAR, november VARCHAR)
SELECT AVG(points) FROM table_name_42 WHERE opponent = "vancouver canucks" AND november < 11
### Context: CREATE TABLE table_name_42 (points INTEGER, opponent VARCHAR, november VARCHAR) ### Question: Which Points have an Opponent of vancouver canucks, and a November smaller than 11? ### Answer: SELECT AVG(points) FROM table_name_42 WHERE opponent = "vancouver canucks" AND november < 11
which Record is on March of 12
CREATE TABLE table_name_53 (record VARCHAR, march VARCHAR)
SELECT record FROM table_name_53 WHERE march = 12
### Context: CREATE TABLE table_name_53 (record VARCHAR, march VARCHAR) ### Question: which Record is on March of 12 ### Answer: SELECT record FROM table_name_53 WHERE march = 12
What is the number of March that has 25-10-9 record and a Game more than 44?
CREATE TABLE table_name_94 (march VARCHAR, record VARCHAR, game VARCHAR)
SELECT COUNT(march) FROM table_name_94 WHERE record = "25-10-9" AND game > 44
### Context: CREATE TABLE table_name_94 (march VARCHAR, record VARCHAR, game VARCHAR) ### Question: What is the number of March that has 25-10-9 record and a Game more than 44? ### Answer: SELECT COUNT(march) FROM table_name_94 WHERE record = "25-10-9" AND game > 44
Which Game has a Record of 27-11-10?
CREATE TABLE table_name_19 (game INTEGER, record VARCHAR)
SELECT AVG(game) FROM table_name_19 WHERE record = "27-11-10"
### Context: CREATE TABLE table_name_19 (game INTEGER, record VARCHAR) ### Question: Which Game has a Record of 27-11-10? ### Answer: SELECT AVG(game) FROM table_name_19 WHERE record = "27-11-10"
What is the Speed when Construction begun in 2010, and an Expected start of revenue services of 2015?
CREATE TABLE table_name_3 (speed VARCHAR, construction_begun VARCHAR, expected_start_of_revenue_services VARCHAR)
SELECT speed FROM table_name_3 WHERE construction_begun = "2010" AND expected_start_of_revenue_services = 2015
### Context: CREATE TABLE table_name_3 (speed VARCHAR, construction_begun VARCHAR, expected_start_of_revenue_services VARCHAR) ### Question: What is the Speed when Construction begun in 2010, and an Expected start of revenue services of 2015? ### Answer: SELECT speed FROM table_name_3 WHERE construction_begun = "2010" AND expected_start_of_revenue_services = 2015
What is the length when the expected start of revenue is more than 2017?
CREATE TABLE table_name_62 (length VARCHAR, expected_start_of_revenue_services INTEGER)
SELECT length FROM table_name_62 WHERE expected_start_of_revenue_services > 2017
### Context: CREATE TABLE table_name_62 (length VARCHAR, expected_start_of_revenue_services INTEGER) ### Question: What is the length when the expected start of revenue is more than 2017? ### Answer: SELECT length FROM table_name_62 WHERE expected_start_of_revenue_services > 2017
What was the undecided with Roy Barnes at 47%?
CREATE TABLE table_name_22 (undecided VARCHAR, roy_barnes VARCHAR)
SELECT undecided FROM table_name_22 WHERE roy_barnes = "47%"
### Context: CREATE TABLE table_name_22 (undecided VARCHAR, roy_barnes VARCHAR) ### Question: What was the undecided with Roy Barnes at 47%? ### Answer: SELECT undecided FROM table_name_22 WHERE roy_barnes = "47%"
What is the DuBose Porter with Roy Barnes at 54%?
CREATE TABLE table_name_16 (dubose_porter VARCHAR, roy_barnes VARCHAR)
SELECT dubose_porter FROM table_name_16 WHERE roy_barnes = "54%"
### Context: CREATE TABLE table_name_16 (dubose_porter VARCHAR, roy_barnes VARCHAR) ### Question: What is the DuBose Porter with Roy Barnes at 54%? ### Answer: SELECT dubose_porter FROM table_name_16 WHERE roy_barnes = "54%"
What series episode has deli meats under segment B?
CREATE TABLE table_name_98 (series_ep VARCHAR, segment_b VARCHAR)
SELECT series_ep FROM table_name_98 WHERE segment_b = "deli meats"
### Context: CREATE TABLE table_name_98 (series_ep VARCHAR, segment_b VARCHAR) ### Question: What series episode has deli meats under segment B? ### Answer: SELECT series_ep FROM table_name_98 WHERE segment_b = "deli meats"
Which After 1 year has an After 3 years of 80%?
CREATE TABLE table_name_40 (after_1_year VARCHAR, after_3_years VARCHAR)
SELECT after_1_year FROM table_name_40 WHERE after_3_years = "80%"
### Context: CREATE TABLE table_name_40 (after_1_year VARCHAR, after_3_years VARCHAR) ### Question: Which After 1 year has an After 3 years of 80%? ### Answer: SELECT after_1_year FROM table_name_40 WHERE after_3_years = "80%"
What position does Alexei Lazarenko have?
CREATE TABLE table_name_62 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_62 WHERE player = "alexei lazarenko"
### Context: CREATE TABLE table_name_62 (position VARCHAR, player VARCHAR) ### Question: What position does Alexei Lazarenko have? ### Answer: SELECT position FROM table_name_62 WHERE player = "alexei lazarenko"
What college did Jamie Butt go to?
CREATE TABLE table_name_78 (college_junior_club_team__league_ VARCHAR, player VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_78 WHERE player = "jamie butt"
### Context: CREATE TABLE table_name_78 (college_junior_club_team__league_ VARCHAR, player VARCHAR) ### Question: What college did Jamie Butt go to? ### Answer: SELECT college_junior_club_team__league_ FROM table_name_78 WHERE player = "jamie butt"
What school did Alexander Korobolin go to?
CREATE TABLE table_name_27 (college_junior_club_team__league_ VARCHAR, player VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_27 WHERE player = "alexander korobolin"
### Context: CREATE TABLE table_name_27 (college_junior_club_team__league_ VARCHAR, player VARCHAR) ### Question: What school did Alexander Korobolin go to? ### Answer: SELECT college_junior_club_team__league_ FROM table_name_27 WHERE player = "alexander korobolin"
Who has a round less than 9 and a position of G?
CREATE TABLE table_name_65 (player VARCHAR, position VARCHAR, round VARCHAR)
SELECT player FROM table_name_65 WHERE position = "g" AND round < 9
### Context: CREATE TABLE table_name_65 (player VARCHAR, position VARCHAR, round VARCHAR) ### Question: Who has a round less than 9 and a position of G? ### Answer: SELECT player FROM table_name_65 WHERE position = "g" AND round < 9
Name the sum of cuts with wins less than 2, top-25 more than 7 and top-10 less than 2
CREATE TABLE table_name_80 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR, top_25 VARCHAR)
SELECT SUM(cuts_made) FROM table_name_80 WHERE wins < 2 AND top_25 > 7 AND top_10 < 2
### Context: CREATE TABLE table_name_80 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR, top_25 VARCHAR) ### Question: Name the sum of cuts with wins less than 2, top-25 more than 7 and top-10 less than 2 ### Answer: SELECT SUM(cuts_made) FROM table_name_80 WHERE wins < 2 AND top_25 > 7 AND top_10 < 2
What was the score that led to an 11-16 record?
CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_77 WHERE record = "11-16"
### Context: CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR) ### Question: What was the score that led to an 11-16 record? ### Answer: SELECT score FROM table_name_77 WHERE record = "11-16"
Who took the loss on May 20?
CREATE TABLE table_name_52 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_52 WHERE date = "may 20"
### Context: CREATE TABLE table_name_52 (loss VARCHAR, date VARCHAR) ### Question: Who took the loss on May 20? ### Answer: SELECT loss FROM table_name_52 WHERE date = "may 20"
What was the attendance of the game that lasted 3:55?
CREATE TABLE table_name_1 (att VARCHAR, time VARCHAR)
SELECT att FROM table_name_1 WHERE time = "3:55"
### Context: CREATE TABLE table_name_1 (att VARCHAR, time VARCHAR) ### Question: What was the attendance of the game that lasted 3:55? ### Answer: SELECT att FROM table_name_1 WHERE time = "3:55"
What was the date of the game in which Holt (4-4) took the loss?
CREATE TABLE table_name_36 (date VARCHAR, loss VARCHAR)
SELECT date FROM table_name_36 WHERE loss = "holt (4-4)"
### Context: CREATE TABLE table_name_36 (date VARCHAR, loss VARCHAR) ### Question: What was the date of the game in which Holt (4-4) took the loss? ### Answer: SELECT date FROM table_name_36 WHERE loss = "holt (4-4)"
What was the date when the pitcher was Jason Marquis and the length was 410'?
CREATE TABLE table_name_69 (date VARCHAR, pitcher VARCHAR, length VARCHAR)
SELECT date FROM table_name_69 WHERE pitcher = "jason marquis" AND length = "410'"
### Context: CREATE TABLE table_name_69 (date VARCHAR, pitcher VARCHAR, length VARCHAR) ### Question: What was the date when the pitcher was Jason Marquis and the length was 410'? ### Answer: SELECT date FROM table_name_69 WHERE pitcher = "jason marquis" AND length = "410'"
What number home run was in the 8th inning and went 410'?
CREATE TABLE table_name_3 (number VARCHAR, inning VARCHAR, length VARCHAR)
SELECT number FROM table_name_3 WHERE inning = "8th" AND length = "410'"
### Context: CREATE TABLE table_name_3 (number VARCHAR, inning VARCHAR, length VARCHAR) ### Question: What number home run was in the 8th inning and went 410'? ### Answer: SELECT number FROM table_name_3 WHERE inning = "8th" AND length = "410'"
Which Max 1-min wind mph (km/h) that has Dates active on september22– september28?
CREATE TABLE table_name_26 (max_1_min_wind_mph__km_h_ VARCHAR, dates_active VARCHAR)
SELECT max_1_min_wind_mph__km_h_ FROM table_name_26 WHERE dates_active = "september22– september28"
### Context: CREATE TABLE table_name_26 (max_1_min_wind_mph__km_h_ VARCHAR, dates_active VARCHAR) ### Question: Which Max 1-min wind mph (km/h) that has Dates active on september22– september28? ### Answer: SELECT max_1_min_wind_mph__km_h_ FROM table_name_26 WHERE dates_active = "september22– september28"
Which Min press has none Death and seven Storm names?
CREATE TABLE table_name_68 (min_press___mbar__ VARCHAR, deaths VARCHAR, storm_name VARCHAR)
SELECT min_press___mbar__ FROM table_name_68 WHERE deaths = "none" AND storm_name = "seven"
### Context: CREATE TABLE table_name_68 (min_press___mbar__ VARCHAR, deaths VARCHAR, storm_name VARCHAR) ### Question: Which Min press has none Death and seven Storm names? ### Answer: SELECT min_press___mbar__ FROM table_name_68 WHERE deaths = "none" AND storm_name = "seven"
What is the cost of 972 Min Press caused 52 death?
CREATE TABLE table_name_36 (damage__millions_usd__ VARCHAR, min_press___mbar__ VARCHAR, deaths VARCHAR)
SELECT damage__millions_usd__ FROM table_name_36 WHERE min_press___mbar__ = "972" AND deaths = "52"
### Context: CREATE TABLE table_name_36 (damage__millions_usd__ VARCHAR, min_press___mbar__ VARCHAR, deaths VARCHAR) ### Question: What is the cost of 972 Min Press caused 52 death? ### Answer: SELECT damage__millions_usd__ FROM table_name_36 WHERE min_press___mbar__ = "972" AND deaths = "52"
What is the active Date that has a 65 (100) Max 1-min wind?
CREATE TABLE table_name_28 (dates_active VARCHAR, max_1_min_wind_mph__km_h_ VARCHAR)
SELECT dates_active FROM table_name_28 WHERE max_1_min_wind_mph__km_h_ = "65 (100)"
### Context: CREATE TABLE table_name_28 (dates_active VARCHAR, max_1_min_wind_mph__km_h_ VARCHAR) ### Question: What is the active Date that has a 65 (100) Max 1-min wind? ### Answer: SELECT dates_active FROM table_name_28 WHERE max_1_min_wind_mph__km_h_ = "65 (100)"
What is the Class AA in the 2010-11 school year with a class AAA of Giddings?
CREATE TABLE table_name_7 (class_aA VARCHAR, class_aAA VARCHAR, giddings VARCHAR, school_year VARCHAR)
SELECT class_aA FROM table_name_7 WHERE class_aAA = giddings AND school_year = "2010-11"
### Context: CREATE TABLE table_name_7 (class_aA VARCHAR, class_aAA VARCHAR, giddings VARCHAR, school_year VARCHAR) ### Question: What is the Class AA in the 2010-11 school year with a class AAA of Giddings? ### Answer: SELECT class_aA FROM table_name_7 WHERE class_aAA = giddings AND school_year = "2010-11"
What is the Class AA of the school year 2009-10 with a class AAA of Giddings?
CREATE TABLE table_name_95 (class_aA VARCHAR, class_aAA VARCHAR, giddings VARCHAR, school_year VARCHAR)
SELECT class_aA FROM table_name_95 WHERE class_aAA = giddings AND school_year = "2009-10"
### Context: CREATE TABLE table_name_95 (class_aA VARCHAR, class_aAA VARCHAR, giddings VARCHAR, school_year VARCHAR) ### Question: What is the Class AA of the school year 2009-10 with a class AAA of Giddings? ### Answer: SELECT class_aA FROM table_name_95 WHERE class_aAA = giddings AND school_year = "2009-10"
What is the class AAA of the 1993-94 school year with a class AAAAA of Duncanville?
CREATE TABLE table_name_58 (class_aAA VARCHAR, class_aAAAA VARCHAR, duncanville VARCHAR, school_year VARCHAR)
SELECT class_aAA FROM table_name_58 WHERE class_aAAAA = duncanville AND school_year = "1993-94"
### Context: CREATE TABLE table_name_58 (class_aAA VARCHAR, class_aAAAA VARCHAR, duncanville VARCHAR, school_year VARCHAR) ### Question: What is the class AAA of the 1993-94 school year with a class AAAAA of Duncanville? ### Answer: SELECT class_aAA FROM table_name_58 WHERE class_aAAAA = duncanville AND school_year = "1993-94"
Who was the visiting team on May 7?
CREATE TABLE table_name_55 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_55 WHERE date = "may 7"
### Context: CREATE TABLE table_name_55 (visitor VARCHAR, date VARCHAR) ### Question: Who was the visiting team on May 7? ### Answer: SELECT visitor FROM table_name_55 WHERE date = "may 7"
Who had a Qualifying 2 time over 58.669 for Team Australia?
CREATE TABLE table_name_68 (name VARCHAR, qual_2 VARCHAR, team VARCHAR)
SELECT name FROM table_name_68 WHERE qual_2 > 58.669 AND team = "team australia"
### Context: CREATE TABLE table_name_68 (name VARCHAR, qual_2 VARCHAR, team VARCHAR) ### Question: Who had a Qualifying 2 time over 58.669 for Team Australia? ### Answer: SELECT name FROM table_name_68 WHERE qual_2 > 58.669 AND team = "team australia"
Which qualifying 1 time has a best under 58.669 and a qualifying 2 time under 57.897?
CREATE TABLE table_name_50 (qual_1 VARCHAR, best VARCHAR, qual_2 VARCHAR)
SELECT qual_1 FROM table_name_50 WHERE best < 58.669 AND qual_2 < 57.897
### Context: CREATE TABLE table_name_50 (qual_1 VARCHAR, best VARCHAR, qual_2 VARCHAR) ### Question: Which qualifying 1 time has a best under 58.669 and a qualifying 2 time under 57.897? ### Answer: SELECT qual_1 FROM table_name_50 WHERE best < 58.669 AND qual_2 < 57.897
Which team has a qualifying 2 time under 59.612 and a best of 59.14?
CREATE TABLE table_name_58 (team VARCHAR, qual_2 VARCHAR, best VARCHAR)
SELECT team FROM table_name_58 WHERE qual_2 < 59.612 AND best = 59.14
### Context: CREATE TABLE table_name_58 (team VARCHAR, qual_2 VARCHAR, best VARCHAR) ### Question: Which team has a qualifying 2 time under 59.612 and a best of 59.14? ### Answer: SELECT team FROM table_name_58 WHERE qual_2 < 59.612 AND best = 59.14
Which Lungchang has a Halang of ʒɯ², and a Rera of ʒo²?
CREATE TABLE table_name_85 (lungchang VARCHAR, halang VARCHAR, rera VARCHAR)
SELECT lungchang FROM table_name_85 WHERE halang = "ʒɯ²" AND rera = "ʒo²"
### Context: CREATE TABLE table_name_85 (lungchang VARCHAR, halang VARCHAR, rera VARCHAR) ### Question: Which Lungchang has a Halang of ʒɯ², and a Rera of ʒo²? ### Answer: SELECT lungchang FROM table_name_85 WHERE halang = "ʒɯ²" AND rera = "ʒo²"
Which Tikhak has a Yonguk of wu¹ti¹?
CREATE TABLE table_name_77 (tikhak VARCHAR, yonguk VARCHAR)
SELECT tikhak FROM table_name_77 WHERE yonguk = "wu¹ti¹"
### Context: CREATE TABLE table_name_77 (tikhak VARCHAR, yonguk VARCHAR) ### Question: Which Tikhak has a Yonguk of wu¹ti¹? ### Answer: SELECT tikhak FROM table_name_77 WHERE yonguk = "wu¹ti¹"
Which Yonguk has a Halang of ran¹?
CREATE TABLE table_name_35 (yonguk VARCHAR, halang VARCHAR)
SELECT yonguk FROM table_name_35 WHERE halang = "ran¹"
### Context: CREATE TABLE table_name_35 (yonguk VARCHAR, halang VARCHAR) ### Question: Which Yonguk has a Halang of ran¹? ### Answer: SELECT yonguk FROM table_name_35 WHERE halang = "ran¹"
Which Halang has a Rera of ʒo²?
CREATE TABLE table_name_6 (halang VARCHAR, rera VARCHAR)
SELECT halang FROM table_name_6 WHERE rera = "ʒo²"
### Context: CREATE TABLE table_name_6 (halang VARCHAR, rera VARCHAR) ### Question: Which Halang has a Rera of ʒo²? ### Answer: SELECT halang FROM table_name_6 WHERE rera = "ʒo²"
Which Muklom has a Halang of wɯ¹cʰi¹?
CREATE TABLE table_name_23 (muklom VARCHAR, halang VARCHAR)
SELECT muklom FROM table_name_23 WHERE halang = "wɯ¹cʰi¹"
### Context: CREATE TABLE table_name_23 (muklom VARCHAR, halang VARCHAR) ### Question: Which Muklom has a Halang of wɯ¹cʰi¹? ### Answer: SELECT muklom FROM table_name_23 WHERE halang = "wɯ¹cʰi¹"
Which Hakhun has a Tikhak of ʒu²?
CREATE TABLE table_name_11 (hakhun VARCHAR, tikhak VARCHAR)
SELECT hakhun FROM table_name_11 WHERE tikhak = "ʒu²"
### Context: CREATE TABLE table_name_11 (hakhun VARCHAR, tikhak VARCHAR) ### Question: Which Hakhun has a Tikhak of ʒu²? ### Answer: SELECT hakhun FROM table_name_11 WHERE tikhak = "ʒu²"
What is the location of Tamagaki station with an l stop?
CREATE TABLE table_name_14 (location VARCHAR, stop VARCHAR, station VARCHAR)
SELECT location FROM table_name_14 WHERE stop = "l" AND station = "tamagaki"
### Context: CREATE TABLE table_name_14 (location VARCHAR, stop VARCHAR, station VARCHAR) ### Question: What is the location of Tamagaki station with an l stop? ### Answer: SELECT location FROM table_name_14 WHERE stop = "l" AND station = "tamagaki"
What is the station with a number greater than 9 and a distance of 16.4 km?
CREATE TABLE table_name_10 (station VARCHAR, number VARCHAR, distance__km_ VARCHAR)
SELECT station FROM table_name_10 WHERE number > 9 AND distance__km_ = 16.4
### Context: CREATE TABLE table_name_10 (station VARCHAR, number VARCHAR, distance__km_ VARCHAR) ### Question: What is the station with a number greater than 9 and a distance of 16.4 km? ### Answer: SELECT station FROM table_name_10 WHERE number > 9 AND distance__km_ = 16.4
What is the Japanese name of the station with a number 3?
CREATE TABLE table_name_98 (japanese VARCHAR, number VARCHAR)
SELECT japanese FROM table_name_98 WHERE number = 3
### Context: CREATE TABLE table_name_98 (japanese VARCHAR, number VARCHAR) ### Question: What is the Japanese name of the station with a number 3? ### Answer: SELECT japanese FROM table_name_98 WHERE number = 3
What is the distance of Kawage station?
CREATE TABLE table_name_19 (distance__km_ INTEGER, station VARCHAR)
SELECT SUM(distance__km_) FROM table_name_19 WHERE station = "kawage"
### Context: CREATE TABLE table_name_19 (distance__km_ INTEGER, station VARCHAR) ### Question: What is the distance of Kawage station? ### Answer: SELECT SUM(distance__km_) FROM table_name_19 WHERE station = "kawage"
Which station has a number less than 5 and an l stop?
CREATE TABLE table_name_43 (station VARCHAR, number VARCHAR, stop VARCHAR)
SELECT station FROM table_name_43 WHERE number < 5 AND stop = "l"
### Context: CREATE TABLE table_name_43 (station VARCHAR, number VARCHAR, stop VARCHAR) ### Question: Which station has a number less than 5 and an l stop? ### Answer: SELECT station FROM table_name_43 WHERE number < 5 AND stop = "l"
Name the visitor for detroit on february 24
CREATE TABLE table_name_55 (visitor VARCHAR, home VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_55 WHERE home = "detroit" AND date = "february 24"
### Context: CREATE TABLE table_name_55 (visitor VARCHAR, home VARCHAR, date VARCHAR) ### Question: Name the visitor for detroit on february 24 ### Answer: SELECT visitor FROM table_name_55 WHERE home = "detroit" AND date = "february 24"
What is the highest listed year for the partner of Marcel Granollers and a hard surface?
CREATE TABLE table_name_28 (year INTEGER, partner VARCHAR, surface VARCHAR)
SELECT MAX(year) FROM table_name_28 WHERE partner = "marcel granollers" AND surface = "hard"
### Context: CREATE TABLE table_name_28 (year INTEGER, partner VARCHAR, surface VARCHAR) ### Question: What is the highest listed year for the partner of Marcel Granollers and a hard surface? ### Answer: SELECT MAX(year) FROM table_name_28 WHERE partner = "marcel granollers" AND surface = "hard"
What is the listed surface for the Championship of Toronto that had a runner-up outcome?
CREATE TABLE table_name_56 (surface VARCHAR, outcome VARCHAR, championship VARCHAR)
SELECT surface FROM table_name_56 WHERE outcome = "runner-up" AND championship = "toronto"
### Context: CREATE TABLE table_name_56 (surface VARCHAR, outcome VARCHAR, championship VARCHAR) ### Question: What is the listed surface for the Championship of Toronto that had a runner-up outcome? ### Answer: SELECT surface FROM table_name_56 WHERE outcome = "runner-up" AND championship = "toronto"
What time was the game during week 5?
CREATE TABLE table_name_14 (time___et__ VARCHAR, week VARCHAR)
SELECT time___et__ FROM table_name_14 WHERE week = 5
### Context: CREATE TABLE table_name_14 (time___et__ VARCHAR, week VARCHAR) ### Question: What time was the game during week 5? ### Answer: SELECT time___et__ FROM table_name_14 WHERE week = 5
Which City has a Series of Tamra's oc wedding?
CREATE TABLE table_name_23 (city VARCHAR, series VARCHAR)
SELECT city FROM table_name_23 WHERE series = "tamra's oc wedding"
### Context: CREATE TABLE table_name_23 (city VARCHAR, series VARCHAR) ### Question: Which City has a Series of Tamra's oc wedding? ### Answer: SELECT city FROM table_name_23 WHERE series = "tamra's oc wedding"
What is the average number of points for a difference of 55 and an against less than 47?
CREATE TABLE table_name_99 (points INTEGER, difference VARCHAR, against VARCHAR)
SELECT AVG(points) FROM table_name_99 WHERE difference = "55" AND against < 47
### Context: CREATE TABLE table_name_99 (points INTEGER, difference VARCHAR, against VARCHAR) ### Question: What is the average number of points for a difference of 55 and an against less than 47? ### Answer: SELECT AVG(points) FROM table_name_99 WHERE difference = "55" AND against < 47
What is the highest lost that has an against greater than 60, points less than 61 and an 18 drawn?
CREATE TABLE table_name_9 (lost INTEGER, drawn VARCHAR, against VARCHAR, points VARCHAR)
SELECT MAX(lost) FROM table_name_9 WHERE against > 60 AND points < 61 AND drawn > 18
### Context: CREATE TABLE table_name_9 (lost INTEGER, drawn VARCHAR, against VARCHAR, points VARCHAR) ### Question: What is the highest lost that has an against greater than 60, points less than 61 and an 18 drawn? ### Answer: SELECT MAX(lost) FROM table_name_9 WHERE against > 60 AND points < 61 AND drawn > 18
What is the Name of the Historic House of the 18th Century?
CREATE TABLE table_name_79 (name VARCHAR, type VARCHAR, date VARCHAR)
SELECT name FROM table_name_79 WHERE type = "historic house" AND date = "18th century"
### Context: CREATE TABLE table_name_79 (name VARCHAR, type VARCHAR, date VARCHAR) ### Question: What is the Name of the Historic House of the 18th Century? ### Answer: SELECT name FROM table_name_79 WHERE type = "historic house" AND date = "18th century"
What is the Type of castle from the 14th Century which Condition is preserved?
CREATE TABLE table_name_72 (type VARCHAR, date VARCHAR, condition VARCHAR)
SELECT type FROM table_name_72 WHERE date = "14th century" AND condition = "preserved"
### Context: CREATE TABLE table_name_72 (type VARCHAR, date VARCHAR, condition VARCHAR) ### Question: What is the Type of castle from the 14th Century which Condition is preserved? ### Answer: SELECT type FROM table_name_72 WHERE date = "14th century" AND condition = "preserved"
What is the Name of the private Castle of the 16th century which is occupied?
CREATE TABLE table_name_26 (name VARCHAR, date VARCHAR, ownership VARCHAR, condition VARCHAR)
SELECT name FROM table_name_26 WHERE ownership = "private" AND condition = "occupied" AND date = "16th century"
### Context: CREATE TABLE table_name_26 (name VARCHAR, date VARCHAR, ownership VARCHAR, condition VARCHAR) ### Question: What is the Name of the private Castle of the 16th century which is occupied? ### Answer: SELECT name FROM table_name_26 WHERE ownership = "private" AND condition = "occupied" AND date = "16th century"
What is the Date of the castle with a Historic Scotland Ownership?
CREATE TABLE table_name_38 (date VARCHAR, ownership VARCHAR)
SELECT date FROM table_name_38 WHERE ownership = "historic scotland"
### Context: CREATE TABLE table_name_38 (date VARCHAR, ownership VARCHAR) ### Question: What is the Date of the castle with a Historic Scotland Ownership? ### Answer: SELECT date FROM table_name_38 WHERE ownership = "historic scotland"
What is the Date of the Fortified House?
CREATE TABLE table_name_39 (date VARCHAR, type VARCHAR)
SELECT date FROM table_name_39 WHERE type = "fortified house"
### Context: CREATE TABLE table_name_39 (date VARCHAR, type VARCHAR) ### Question: What is the Date of the Fortified House? ### Answer: SELECT date FROM table_name_39 WHERE type = "fortified house"
What is the Date of the Courtyard Castle?
CREATE TABLE table_name_16 (date VARCHAR, type VARCHAR)
SELECT date FROM table_name_16 WHERE type = "courtyard castle"
### Context: CREATE TABLE table_name_16 (date VARCHAR, type VARCHAR) ### Question: What is the Date of the Courtyard Castle? ### Answer: SELECT date FROM table_name_16 WHERE type = "courtyard castle"
What is the highest lost that has 6 for points?
CREATE TABLE table_name_63 (lost INTEGER, points VARCHAR)
SELECT MAX(lost) FROM table_name_63 WHERE points = 6
### Context: CREATE TABLE table_name_63 (lost INTEGER, points VARCHAR) ### Question: What is the highest lost that has 6 for points? ### Answer: SELECT MAX(lost) FROM table_name_63 WHERE points = 6
How many losses have points less than 3, with a drawn greater than 0?
CREATE TABLE table_name_20 (lost INTEGER, points VARCHAR, drawn VARCHAR)
SELECT SUM(lost) FROM table_name_20 WHERE points < 3 AND drawn > 0
### Context: CREATE TABLE table_name_20 (lost INTEGER, points VARCHAR, drawn VARCHAR) ### Question: How many losses have points less than 3, with a drawn greater than 0? ### Answer: SELECT SUM(lost) FROM table_name_20 WHERE points < 3 AND drawn > 0
Which Margin of victory has a Runner(s)-up of buddy gardner?
CREATE TABLE table_name_1 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT margin_of_victory FROM table_name_1 WHERE runner_s__up = "buddy gardner"
### Context: CREATE TABLE table_name_1 (margin_of_victory VARCHAR, runner_s__up VARCHAR) ### Question: Which Margin of victory has a Runner(s)-up of buddy gardner? ### Answer: SELECT margin_of_victory FROM table_name_1 WHERE runner_s__up = "buddy gardner"
Which Date has a Winning score of –14 (66-64-68-68=266)?
CREATE TABLE table_name_93 (date VARCHAR, winning_score VARCHAR)
SELECT date FROM table_name_93 WHERE winning_score = –14(66 - 64 - 68 - 68 = 266)
### Context: CREATE TABLE table_name_93 (date VARCHAR, winning_score VARCHAR) ### Question: Which Date has a Winning score of –14 (66-64-68-68=266)? ### Answer: SELECT date FROM table_name_93 WHERE winning_score = –14(66 - 64 - 68 - 68 = 266)
Which Tournament has a Winning score of e (72-69-71-68=280)?
CREATE TABLE table_name_15 (tournament VARCHAR, winning_score VARCHAR)
SELECT tournament FROM table_name_15 WHERE winning_score = E(72 - 69 - 71 - 68 = 280)
### Context: CREATE TABLE table_name_15 (tournament VARCHAR, winning_score VARCHAR) ### Question: Which Tournament has a Winning score of e (72-69-71-68=280)? ### Answer: SELECT tournament FROM table_name_15 WHERE winning_score = E(72 - 69 - 71 - 68 = 280)
Which Margin of victory has a Runner(s)-up of dave barr?
CREATE TABLE table_name_1 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT margin_of_victory FROM table_name_1 WHERE runner_s__up = "dave barr"
### Context: CREATE TABLE table_name_1 (margin_of_victory VARCHAR, runner_s__up VARCHAR) ### Question: Which Margin of victory has a Runner(s)-up of dave barr? ### Answer: SELECT margin_of_victory FROM table_name_1 WHERE runner_s__up = "dave barr"
Which Margin of victory has a Runner(s)-up of mark o'meara?
CREATE TABLE table_name_19 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT margin_of_victory FROM table_name_19 WHERE runner_s__up = "mark o'meara"
### Context: CREATE TABLE table_name_19 (margin_of_victory VARCHAR, runner_s__up VARCHAR) ### Question: Which Margin of victory has a Runner(s)-up of mark o'meara? ### Answer: SELECT margin_of_victory FROM table_name_19 WHERE runner_s__up = "mark o'meara"
In round 9 what was the nationality?
CREATE TABLE table_name_98 (nationality VARCHAR, round VARCHAR)
SELECT nationality FROM table_name_98 WHERE round = "9"
### Context: CREATE TABLE table_name_98 (nationality VARCHAR, round VARCHAR) ### Question: In round 9 what was the nationality? ### Answer: SELECT nationality FROM table_name_98 WHERE round = "9"
In round 3 what was the position?
CREATE TABLE table_name_83 (position VARCHAR, round VARCHAR)
SELECT position FROM table_name_83 WHERE round = "3"
### Context: CREATE TABLE table_name_83 (position VARCHAR, round VARCHAR) ### Question: In round 3 what was the position? ### Answer: SELECT position FROM table_name_83 WHERE round = "3"
Who has a nationality of Czech Republic and a position of right wing?
CREATE TABLE table_name_49 (player VARCHAR, position VARCHAR, nationality VARCHAR)
SELECT player FROM table_name_49 WHERE position = "right wing" AND nationality = "czech republic"
### Context: CREATE TABLE table_name_49 (player VARCHAR, position VARCHAR, nationality VARCHAR) ### Question: Who has a nationality of Czech Republic and a position of right wing? ### Answer: SELECT player FROM table_name_49 WHERE position = "right wing" AND nationality = "czech republic"
What is the highest winning pct from a team with wins less than 22, losses greater than 4, ties less than 2 and games started greater than 11?
CREATE TABLE table_name_92 (winning_pct INTEGER, wins VARCHAR, games_started VARCHAR, losses VARCHAR, ties VARCHAR)
SELECT MAX(winning_pct) FROM table_name_92 WHERE losses > 4 AND ties < 2 AND games_started > 11 AND wins < 22
### Context: CREATE TABLE table_name_92 (winning_pct INTEGER, wins VARCHAR, games_started VARCHAR, losses VARCHAR, ties VARCHAR) ### Question: What is the highest winning pct from a team with wins less than 22, losses greater than 4, ties less than 2 and games started greater than 11? ### Answer: SELECT MAX(winning_pct) FROM table_name_92 WHERE losses > 4 AND ties < 2 AND games_started > 11 AND wins < 22
Gold that has a Rank of 6, and a Bronze larger than 0 had what total number of gold?
CREATE TABLE table_name_46 (gold VARCHAR, rank VARCHAR, bronze VARCHAR)
SELECT COUNT(gold) FROM table_name_46 WHERE rank = "6" AND bronze > 0
### Context: CREATE TABLE table_name_46 (gold VARCHAR, rank VARCHAR, bronze VARCHAR) ### Question: Gold that has a Rank of 6, and a Bronze larger than 0 had what total number of gold? ### Answer: SELECT COUNT(gold) FROM table_name_46 WHERE rank = "6" AND bronze > 0
Total of 5 had what bronze?
CREATE TABLE table_name_21 (bronze VARCHAR, total VARCHAR)
SELECT bronze FROM table_name_21 WHERE total = 5
### Context: CREATE TABLE table_name_21 (bronze VARCHAR, total VARCHAR) ### Question: Total of 5 had what bronze? ### Answer: SELECT bronze FROM table_name_21 WHERE total = 5
In which tournament did he place 20th?
CREATE TABLE table_name_55 (tournament VARCHAR, result VARCHAR)
SELECT tournament FROM table_name_55 WHERE result = "20th"
### Context: CREATE TABLE table_name_55 (tournament VARCHAR, result VARCHAR) ### Question: In which tournament did he place 20th? ### Answer: SELECT tournament FROM table_name_55 WHERE result = "20th"
What the result for the hypo-meeting tournament in 1994?
CREATE TABLE table_name_81 (result VARCHAR, year VARCHAR, tournament VARCHAR)
SELECT result FROM table_name_81 WHERE year = 1994 AND tournament = "hypo-meeting"
### Context: CREATE TABLE table_name_81 (result VARCHAR, year VARCHAR, tournament VARCHAR) ### Question: What the result for the hypo-meeting tournament in 1994? ### Answer: SELECT result FROM table_name_81 WHERE year = 1994 AND tournament = "hypo-meeting"
What was the result in 1995?
CREATE TABLE table_name_79 (result VARCHAR, year VARCHAR)
SELECT result FROM table_name_79 WHERE year = 1995
### Context: CREATE TABLE table_name_79 (result VARCHAR, year VARCHAR) ### Question: What was the result in 1995? ### Answer: SELECT result FROM table_name_79 WHERE year = 1995
After March 19, what's the score of game 67?
CREATE TABLE table_name_75 (score VARCHAR, march VARCHAR, game VARCHAR)
SELECT score FROM table_name_75 WHERE march > 19 AND game = 67
### Context: CREATE TABLE table_name_75 (score VARCHAR, march VARCHAR, game VARCHAR) ### Question: After March 19, what's the score of game 67? ### Answer: SELECT score FROM table_name_75 WHERE march > 19 AND game = 67
Who is the head linesman of the game on 1 February 2009?
CREATE TABLE table_name_46 (head_linesman VARCHAR, date VARCHAR)
SELECT head_linesman FROM table_name_46 WHERE date = "1 february 2009"
### Context: CREATE TABLE table_name_46 (head_linesman VARCHAR, date VARCHAR) ### Question: Who is the head linesman of the game on 1 February 2009? ### Answer: SELECT head_linesman FROM table_name_46 WHERE date = "1 february 2009"
What is the date of the game where the line judge was Bob Beeks, the head linesman was Jerry Bergman, and Paul Baetz was the back judge?
CREATE TABLE table_name_61 (date VARCHAR, back_judge VARCHAR, line_judge VARCHAR, head_linesman VARCHAR)
SELECT date FROM table_name_61 WHERE line_judge = "bob beeks" AND head_linesman = "jerry bergman" AND back_judge = "paul baetz"
### Context: CREATE TABLE table_name_61 (date VARCHAR, back_judge VARCHAR, line_judge VARCHAR, head_linesman VARCHAR) ### Question: What is the date of the game where the line judge was Bob Beeks, the head linesman was Jerry Bergman, and Paul Baetz was the back judge? ### Answer: SELECT date FROM table_name_61 WHERE line_judge = "bob beeks" AND head_linesman = "jerry bergman" AND back_judge = "paul baetz"
Which game was on 14 January 1973?
CREATE TABLE table_name_31 (game VARCHAR, date VARCHAR)
SELECT game FROM table_name_31 WHERE date = "14 january 1973"
### Context: CREATE TABLE table_name_31 (game VARCHAR, date VARCHAR) ### Question: Which game was on 14 January 1973? ### Answer: SELECT game FROM table_name_31 WHERE date = "14 january 1973"
Who was the line judge at the game where Scott Green was referee?
CREATE TABLE table_name_48 (line_judge VARCHAR, referee VARCHAR)
SELECT line_judge FROM table_name_48 WHERE referee = "scott green"
### Context: CREATE TABLE table_name_48 (line_judge VARCHAR, referee VARCHAR) ### Question: Who was the line judge at the game where Scott Green was referee? ### Answer: SELECT line_judge FROM table_name_48 WHERE referee = "scott green"
Who is the head linesman at game xxxv?
CREATE TABLE table_name_66 (head_linesman VARCHAR, game VARCHAR)
SELECT head_linesman FROM table_name_66 WHERE game = "xxxv"
### Context: CREATE TABLE table_name_66 (head_linesman VARCHAR, game VARCHAR) ### Question: Who is the head linesman at game xxxv? ### Answer: SELECT head_linesman FROM table_name_66 WHERE game = "xxxv"
What game had Al Jury as field judge?
CREATE TABLE table_name_8 (game VARCHAR, field_judge VARCHAR)
SELECT game FROM table_name_8 WHERE field_judge = "al jury"
### Context: CREATE TABLE table_name_8 (game VARCHAR, field_judge VARCHAR) ### Question: What game had Al Jury as field judge? ### Answer: SELECT game FROM table_name_8 WHERE field_judge = "al jury"
What's listed for Departure that has 1676 listed for the Kilometers?
CREATE TABLE table_name_88 (departure VARCHAR, kilometers VARCHAR)
SELECT departure FROM table_name_88 WHERE kilometers = 1676
### Context: CREATE TABLE table_name_88 (departure VARCHAR, kilometers VARCHAR) ### Question: What's listed for Departure that has 1676 listed for the Kilometers? ### Answer: SELECT departure FROM table_name_88 WHERE kilometers = 1676
What is the sum of Kilometers that has a Station Code of KGQ?
CREATE TABLE table_name_43 (kilometers VARCHAR, station_code VARCHAR)
SELECT COUNT(kilometers) FROM table_name_43 WHERE station_code = "kgq"
### Context: CREATE TABLE table_name_43 (kilometers VARCHAR, station_code VARCHAR) ### Question: What is the sum of Kilometers that has a Station Code of KGQ? ### Answer: SELECT COUNT(kilometers) FROM table_name_43 WHERE station_code = "kgq"
What's the Kilometers listed that also has the Station Code of Kuda?
CREATE TABLE table_name_87 (kilometers VARCHAR, station_code VARCHAR)
SELECT kilometers FROM table_name_87 WHERE station_code = "kuda"
### Context: CREATE TABLE table_name_87 (kilometers VARCHAR, station_code VARCHAR) ### Question: What's the Kilometers listed that also has the Station Code of Kuda? ### Answer: SELECT kilometers FROM table_name_87 WHERE station_code = "kuda"
What's listed for the Station Code that has the Arrival of 02:20?
CREATE TABLE table_name_40 (station_code VARCHAR, arrival VARCHAR)
SELECT station_code FROM table_name_40 WHERE arrival = "02:20"
### Context: CREATE TABLE table_name_40 (station_code VARCHAR, arrival VARCHAR) ### Question: What's listed for the Station Code that has the Arrival of 02:20? ### Answer: SELECT station_code FROM table_name_40 WHERE arrival = "02:20"
What is listede for Departure that also has a Station Code of CLT?
CREATE TABLE table_name_33 (departure VARCHAR, station_code VARCHAR)
SELECT departure FROM table_name_33 WHERE station_code = "clt"
### Context: CREATE TABLE table_name_33 (departure VARCHAR, station_code VARCHAR) ### Question: What is listede for Departure that also has a Station Code of CLT? ### Answer: SELECT departure FROM table_name_33 WHERE station_code = "clt"
What is the smallest area with 45 population?
CREATE TABLE table_name_72 (area__km_2__ INTEGER, population__2000_ VARCHAR)
SELECT MIN(area__km_2__) FROM table_name_72 WHERE population__2000_ = "45"
### Context: CREATE TABLE table_name_72 (area__km_2__ INTEGER, population__2000_ VARCHAR) ### Question: What is the smallest area with 45 population? ### Answer: SELECT MIN(area__km_2__) FROM table_name_72 WHERE population__2000_ = "45"
What is the area located in Rhode Island with more than 38 sq mi area?
CREATE TABLE table_name_81 (area__km_2__ INTEGER, location VARCHAR, area__sq_mi_ VARCHAR)
SELECT AVG(area__km_2__) FROM table_name_81 WHERE location = "rhode island" AND area__sq_mi_ > 38
### Context: CREATE TABLE table_name_81 (area__km_2__ INTEGER, location VARCHAR, area__sq_mi_ VARCHAR) ### Question: What is the area located in Rhode Island with more than 38 sq mi area? ### Answer: SELECT AVG(area__km_2__) FROM table_name_81 WHERE location = "rhode island" AND area__sq_mi_ > 38
What is the average area in New York that is larger than 55 sq mi?
CREATE TABLE table_name_21 (area__km_2__ INTEGER, area__sq_mi_ VARCHAR, location VARCHAR)
SELECT AVG(area__km_2__) FROM table_name_21 WHERE area__sq_mi_ > 55 AND location = "new york"
### Context: CREATE TABLE table_name_21 (area__km_2__ INTEGER, area__sq_mi_ VARCHAR, location VARCHAR) ### Question: What is the average area in New York that is larger than 55 sq mi? ### Answer: SELECT AVG(area__km_2__) FROM table_name_21 WHERE area__sq_mi_ > 55 AND location = "new york"
Which event was in Tokyo, Japan and had an opponent of rumina sato?
CREATE TABLE table_name_38 (event VARCHAR, location VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_38 WHERE location = "tokyo, japan" AND opponent = "rumina sato"
### Context: CREATE TABLE table_name_38 (event VARCHAR, location VARCHAR, opponent VARCHAR) ### Question: Which event was in Tokyo, Japan and had an opponent of rumina sato? ### Answer: SELECT event FROM table_name_38 WHERE location = "tokyo, japan" AND opponent = "rumina sato"
Which round was 2:30?
CREATE TABLE table_name_45 (round VARCHAR, time VARCHAR)
SELECT round FROM table_name_45 WHERE time = "2:30"
### Context: CREATE TABLE table_name_45 (round VARCHAR, time VARCHAR) ### Question: Which round was 2:30? ### Answer: SELECT round FROM table_name_45 WHERE time = "2:30"
Which event had the opponent of shinya aoki and was at 4:56?
CREATE TABLE table_name_90 (event VARCHAR, opponent VARCHAR, time VARCHAR)
SELECT event FROM table_name_90 WHERE opponent = "shinya aoki" AND time = "4:56"
### Context: CREATE TABLE table_name_90 (event VARCHAR, opponent VARCHAR, time VARCHAR) ### Question: Which event had the opponent of shinya aoki and was at 4:56? ### Answer: SELECT event FROM table_name_90 WHERE opponent = "shinya aoki" AND time = "4:56"