combined_text
stringlengths
106
1.05k
###question:How many Wins have a Top 5 smaller than 0?###answer:SELECT SUM(wins) FROM table_name_57 WHERE top_5 < 0###context:CREATE TABLE table_name_57 (wins INTEGER, top_5 INTEGER)
###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###context:CREATE TABLE table_name_15 (top_10 INTEGER, poles VARCHAR, top_5 VARCHAR, year 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###context:CREATE TABLE table_name_35 (top_10 VARCHAR, wins VARCHAR, poles 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###context:CREATE TABLE table_name_58 (established VARCHAR, league VARCH...
###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###context:CREATE TABLE table_name_4 (venue VARCHAR, championships VARCHAR, established 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"###context:CREATE TABLE table_name_40 (established INTEGER, championships VARCHAR, league 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"###context:CREATE TABLE table_name_57 (established VARCHAR, venue 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###context:CREATE TABLE table_name_62 (ofsted_number INTEGER, dcsf_number 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"###context:CREATE TABLE table_name_24 (record VARCHAR, score VARCHAR, game 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###context:CREATE TABLE table_name_74 (game VARCHAR, record VARCHAR, points 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###context:CREATE TABLE table_name_42 (points INTEGER, opponent VARCHAR, november VARCHAR)
###question:which Record is on March of 12###answer:SELECT record FROM table_name_53 WHERE march = 12###context:CREATE TABLE table_name_53 (record VARCHAR, march 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###context:CREATE TABLE table_name_94 (march VARCHAR, record VARCHAR, game VARCHAR)
###question:Which Game has a Record of 27-11-10?###answer:SELECT AVG(game) FROM table_name_19 WHERE record = "27-11-10"###context:CREATE TABLE table_name_19 (game INTEGER, record 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###context:CREATE TABLE table_name_3 (speed VARCHAR, construction_begun VARCHAR, expect...
###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###context:CREATE TABLE table_name_62 (length VARCHAR, expected_start_of_revenue_services INTEGER)
###question:What was the undecided with Roy Barnes at 47%?###answer:SELECT undecided FROM table_name_22 WHERE roy_barnes = "47%"###context:CREATE TABLE table_name_22 (undecided 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%"###context:CREATE TABLE table_name_16 (dubose_porter VARCHAR, roy_barnes VARCHAR)
###question:What series episode has deli meats under segment B?###answer: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: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%"###context:CREATE TABLE table_name_40 (after_1_year VARCHAR, after_3_years VARCHAR)
###question:What position does Alexei Lazarenko have?###answer:SELECT position FROM table_name_62 WHERE player = "alexei lazarenko"###context:CREATE TABLE table_name_62 (position 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"###context:CREATE TABLE table_name_78 (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"###context:CREATE TABLE table_name_27 (college_junior_club_team__league_ VARCHAR, player 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###context:CREATE TABLE table_name_65 (player VARCHAR, position VARCHAR, round 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###context:CREATE TABLE table_name_80 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR, top_25 VARCHAR)
###question:What was the score that led to an 11-16 record?###answer:SELECT score FROM table_name_77 WHERE record = "11-16"###context:CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR)
###question:Who took the loss on May 20?###answer:SELECT loss FROM table_name_52 WHERE date = "may 20"###context:CREATE TABLE table_name_52 (loss VARCHAR, date VARCHAR)
###question:What was the attendance of the game that lasted 3:55?###answer:SELECT att FROM table_name_1 WHERE time = "3:55"###context:CREATE TABLE table_name_1 (att VARCHAR, time 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)"###context:CREATE TABLE table_name_36 (date VARCHAR, loss 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'"###context:CREATE TABLE table_name_69 (date VARCHAR, pitcher 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'"###context:CREATE TABLE table_name_3 (number VARCHAR, inning VARCHAR, length 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"###context:CREATE TABLE table_name_26 (max_1_min_wind_mph__km_h_ VARCHAR, dates_active 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"###context:CREATE TABLE table_name_68 (min_press___mbar__ VARCHAR, deaths VARCHAR, storm_name 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"###context:CREATE TABLE table_name_36 (damage__millions_usd__ VARCHAR, min_press___mbar__ VARCHAR, deaths 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)"###context:CREATE TABLE table_name_28 (dates_active VARCHAR, max_1_min_wind_mph__km_h_ 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"###context:CREATE TABLE table_name_7 (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"###context:CREATE TABLE table_name_95 (class_aA VARCHAR, class_aAA VARCHAR, giddings 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"###context:CREATE TABLE table_name_58 (class_aAA VARCHAR, class_aAAAA VARCHAR, duncanville VARCHAR, school_year VARCHAR)
###question:Who was the visiting team on May 7?###answer:SELECT visitor FROM table_name_55 WHERE date = "may 7"###context:CREATE TABLE table_name_55 (visitor VARCHAR, date 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"###context:CREATE TABLE table_name_68 (name VARCHAR, qual_2 VARCHAR, team 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###context:CREATE TABLE table_name_50 (qual_1 VARCHAR, best VARCHAR, qual_2 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###context:CREATE TABLE table_name_58 (team VARCHAR, qual_2 VARCHAR, best 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²"###context:CREATE TABLE table_name_85 (lungchang VARCHAR, halang VARCHAR, rera VARCHAR)
###question:Which Tikhak has a Yonguk of wu¹ti¹?###answer:SELECT tikhak FROM table_name_77 WHERE yonguk = "wu¹ti¹"###context:CREATE TABLE table_name_77 (tikhak VARCHAR, yonguk VARCHAR)
###question:Which Yonguk has a Halang of ran¹?###answer:SELECT yonguk FROM table_name_35 WHERE halang = "ran¹"###context:CREATE TABLE table_name_35 (yonguk VARCHAR, halang VARCHAR)
###question:Which Halang has a Rera of ʒo²?###answer:SELECT halang FROM table_name_6 WHERE rera = "ʒo²"###context:CREATE TABLE table_name_6 (halang VARCHAR, rera VARCHAR)
###question:Which Muklom has a Halang of wɯ¹cʰi¹?###answer:SELECT muklom FROM table_name_23 WHERE halang = "wɯ¹cʰi¹"###context:CREATE TABLE table_name_23 (muklom VARCHAR, halang VARCHAR)
###question:Which Hakhun has a Tikhak of ʒu²?###answer:SELECT hakhun FROM table_name_11 WHERE tikhak = "ʒu²"###context:CREATE TABLE table_name_11 (hakhun VARCHAR, tikhak 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"###context:CREATE TABLE table_name_14 (location VARCHAR, stop VARCHAR, station 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###context:CREATE TABLE table_name_10 (station VARCHAR, number VARCHAR, distance__km_ VARCHAR)
###question:What is the Japanese name of the station with a number 3?###answer:SELECT japanese FROM table_name_98 WHERE number = 3###context:CREATE TABLE table_name_98 (japanese VARCHAR, number VARCHAR)
###question:What is the distance of Kawage station?###answer:SELECT SUM(distance__km_) FROM table_name_19 WHERE station = "kawage"###context:CREATE TABLE table_name_19 (distance__km_ INTEGER, station 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"###context:CREATE TABLE table_name_43 (station VARCHAR, number VARCHAR, stop VARCHAR)
###question:Name the visitor for detroit on february 24###answer: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: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"###context:CREATE TABLE table_name_28 (year INTEGER, partner VARCHAR, surface 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"###context:CREATE TABLE table_name_56 (surface VARCHAR, outcome VARCHAR, championship VARCHAR)
###question:What time was the game during week 5?###answer:SELECT time___et__ FROM table_name_14 WHERE week = 5###context:CREATE TABLE table_name_14 (time___et__ VARCHAR, week 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"###context:CREATE TABLE table_name_23 (city VARCHAR, series 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###context:CREATE TABLE table_name_99 (points INTEGER, difference VARCHAR, against 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###context:CREATE TABLE table_name_9 (lost INTEGER, drawn VARCHAR, against VARCHAR, points 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"###context:CREATE TABLE table_name_79 (name VARCHAR, type VARCHAR, date 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"###context:CREATE TABLE table_name_72 (type VARCHAR, date 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"###context:CREATE TABLE table_name_26 (name VARCHAR, date VARCHAR, ownership VARCHAR, condition 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"###context:CREATE TABLE table_name_38 (date VARCHAR, ownership VARCHAR)
###question:What is the Date of the Fortified House?###answer: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 Courtyard Castle?###answer:SELECT date FROM table_name_16 WHERE type = "courtyard castle"###context:CREATE TABLE table_name_16 (date VARCHAR, type VARCHAR)
###question:What is the highest lost that has 6 for points?###answer:SELECT MAX(lost) FROM table_name_63 WHERE points = 6###context:CREATE TABLE table_name_63 (lost INTEGER, points 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###context:CREATE TABLE table_name_20 (lost INTEGER, points VARCHAR, drawn 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"###context:CREATE TABLE table_name_1 (margin_of_victory VARCHAR, runner_s__up 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)###context:CREATE TABLE table_name_93 (date 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)###context:CREATE TABLE table_name_15 (tournament VARCHAR, winning_score 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"###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 mark o'meara?###answer: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:In round 9 what was the nationality?###answer:SELECT nationality FROM table_name_98 WHERE round = "9"###context:CREATE TABLE table_name_98 (nationality VARCHAR, round VARCHAR)
###question:In round 3 what was the position?###answer:SELECT position FROM table_name_83 WHERE round = "3"###context:CREATE TABLE table_name_83 (position VARCHAR, round 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"###context:CREATE TABLE table_name_49 (player VARCHAR, position VARCHAR, nationality 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###context:CREATE TABLE table_name_92 (winning_...
###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###context:CREATE TABLE table_name_46 (gold VARCHAR, rank VARCHAR, bronze VARCHAR)
###question:Total of 5 had what bronze?###answer:SELECT bronze FROM table_name_21 WHERE total = 5###context:CREATE TABLE table_name_21 (bronze VARCHAR, total VARCHAR)
###question:In which tournament did he place 20th?###answer:SELECT tournament FROM table_name_55 WHERE result = "20th"###context:CREATE TABLE table_name_55 (tournament VARCHAR, result 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"###context:CREATE TABLE table_name_81 (result VARCHAR, year VARCHAR, tournament VARCHAR)
###question:What was the result in 1995?###answer:SELECT result FROM table_name_79 WHERE year = 1995###context:CREATE TABLE table_name_79 (result VARCHAR, year 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###context:CREATE TABLE table_name_75 (score VARCHAR, march VARCHAR, game 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"###context:CREATE TABLE table_name_46 (head_linesman VARCHAR, date 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"###context:CREATE TABLE table_name_...
###question:Which game was on 14 January 1973?###answer:SELECT game FROM table_name_31 WHERE date = "14 january 1973"###context:CREATE TABLE table_name_31 (game VARCHAR, date 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"###context:CREATE TABLE table_name_48 (line_judge VARCHAR, referee VARCHAR)
###question:Who is the head linesman at game xxxv?###answer:SELECT head_linesman FROM table_name_66 WHERE game = "xxxv"###context:CREATE TABLE table_name_66 (head_linesman VARCHAR, game VARCHAR)
###question:What game had Al Jury as field judge?###answer:SELECT game FROM table_name_8 WHERE field_judge = "al jury"###context:CREATE TABLE table_name_8 (game VARCHAR, field_judge VARCHAR)
###question:What's listed for Departure that has 1676 listed for the Kilometers?###answer:SELECT departure FROM table_name_88 WHERE kilometers = 1676###context:CREATE TABLE table_name_88 (departure VARCHAR, kilometers 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"###context:CREATE TABLE table_name_43 (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"###context:CREATE TABLE table_name_87 (kilometers VARCHAR, station_code 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"###context:CREATE TABLE table_name_40 (station_code VARCHAR, arrival 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"###context:CREATE TABLE table_name_33 (departure VARCHAR, station_code VARCHAR)
###question:What is the smallest area with 45 population?###answer: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 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###context:CREATE TABLE table_name_81 (area__km_2__ INTEGER, location VARCHAR, area__sq_mi_ 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"###context:CREATE TABLE table_name_21 (area__km_2__ INTEGER, area__sq_mi_ VARCHAR, location 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"###context:CREATE TABLE table_name_38 (event VARCHAR, location VARCHAR, opponent VARCHAR)
###question:Which round was 2:30?###answer:SELECT round FROM table_name_45 WHERE time = "2:30"###context:CREATE TABLE table_name_45 (round 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"###context:CREATE TABLE table_name_90 (event VARCHAR, opponent VARCHAR, time VARCHAR)