combined_text stringlengths 106 1.05k |
|---|
###question:On what date was the record 21-25?###answer:SELECT date FROM table_name_79 WHERE record = "21-25"###context:CREATE TABLE table_name_79 (date VARCHAR, record VARCHAR) |
###question:I want the total number of Laps for time/retired for + 4 Laps and grid more than 20###answer:SELECT COUNT(laps) FROM table_name_32 WHERE time_retired = "+ 4 laps" AND grid > 20###context:CREATE TABLE table_name_32 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR) |
###question:I want the average Laps for grid of 9###answer:SELECT AVG(laps) FROM table_name_74 WHERE grid = 9###context:CREATE TABLE table_name_74 (laps INTEGER, grid VARCHAR) |
###question:What is the total works number of the locomotive with 0-6-4t type after 1875?###answer:SELECT SUM(works_number) FROM table_name_78 WHERE type = "0-6-4t" AND date > 1875###context:CREATE TABLE table_name_78 (works_number INTEGER, type VARCHAR, date VARCHAR) |
###question:What is the total work number of Gowrie after 1875?###answer:SELECT SUM(works_number) FROM table_name_45 WHERE date > 1875 AND name = "gowrie"###context:CREATE TABLE table_name_45 (works_number INTEGER, date VARCHAR, name VARCHAR) |
###question:What is the average work number of Snowdon Ranger with the builder Vulcan Foundry?###answer:SELECT AVG(works_number) FROM table_name_57 WHERE builder = "vulcan foundry" AND name = "snowdon ranger"###context:CREATE TABLE table_name_57 (works_number INTEGER, builder VARCHAR, name VARCHAR) |
###question:What is the total work number of Gowrie with a 0-6-4t type after 1908?###answer:SELECT COUNT(works_number) FROM table_name_51 WHERE type = "0-6-4t" AND name = "gowrie" AND date > 1908###context:CREATE TABLE table_name_51 (works_number VARCHAR, date VARCHAR, type VARCHAR, name VARCHAR) |
###question:What day was the bell atlantic classic?###answer:SELECT date FROM table_name_53 WHERE tournament = "bell atlantic classic"###context:CREATE TABLE table_name_53 (date VARCHAR, tournament VARCHAR) |
###question:What was the Set 1 game score when Set 3 game score was 15–4, and a Set 2 game score was 15–7?###answer:SELECT set_1 FROM table_name_75 WHERE set_3 = "15–4" AND set_2 = "15–7"###context:CREATE TABLE table_name_75 (set_1 VARCHAR, set_3 VARCHAR, set_2 VARCHAR) |
###question:What lowest Bodyweight has a Snatch smaller than 55?###answer:SELECT MIN(bodyweight) FROM table_name_84 WHERE snatch < 55###context:CREATE TABLE table_name_84 (bodyweight INTEGER, snatch INTEGER) |
###question:Which bodyweight has a Total (kg) of 145.0?###answer:SELECT bodyweight FROM table_name_18 WHERE total__kg_ = "145.0"###context:CREATE TABLE table_name_18 (bodyweight VARCHAR, total__kg_ VARCHAR) |
###question:What's the Current Status of Livery of the Network South-East?###answer:SELECT current_status FROM table_name_66 WHERE livery = "network south-east"###context:CREATE TABLE table_name_66 (current_status VARCHAR, livery VARCHAR) |
###question:What's Number & Name listed for the Date 1967?###answer:SELECT number_ & _name FROM table_name_61 WHERE date = 1967###context:CREATE TABLE table_name_61 (number_ VARCHAR, _name VARCHAR, date VARCHAR) |
###question:When was the game at Collingwood?###answer:SELECT date FROM table_name_59 WHERE away_team = "collingwood"###context:CREATE TABLE table_name_59 (date VARCHAR, away_team VARCHAR) |
###question:Where does Geelong play their home game?###answer:SELECT venue FROM table_name_7 WHERE home_team = "geelong"###context:CREATE TABLE table_name_7 (venue VARCHAR, home_team VARCHAR) |
###question:In which venue was North Melbourne the Away team?###answer:SELECT venue FROM table_name_14 WHERE away_team = "north melbourne"###context:CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR) |
###question:What was the home team's score at Corio Oval?###answer:SELECT home_team AS score FROM table_name_20 WHERE venue = "corio oval"###context:CREATE TABLE table_name_20 (home_team VARCHAR, venue VARCHAR) |
###question:What were the casualties of the ship sunk by u-125?###answer:SELECT casualties FROM table_name_33 WHERE sunk_by… = "u-125"###context:CREATE TABLE table_name_33 (casualties VARCHAR, sunk_by… VARCHAR) |
###question:What is the name of the ship sunk on 5 May 1943 from the United Kingdom sunk by an u-266 with 0 casualties?###answer:SELECT name FROM table_name_23 WHERE date = "5 may 1943" AND nationality = "united kingdom" AND sunk_by… = "u-266" AND casualties = "0"###context:CREATE TABLE table_name_23 (name VARCHAR, cas... |
###question:Who loss the game when the record was 3-10?###answer:SELECT loss FROM table_name_59 WHERE record = "3-10"###context:CREATE TABLE table_name_59 (loss VARCHAR, record VARCHAR) |
###question:What was the record on April 7?###answer:SELECT record FROM table_name_63 WHERE date = "april 7"###context:CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR) |
###question:What Object Type has a °03′32″ Declination (J2000)?###answer:SELECT object_type FROM table_name_58 WHERE declination___j2000__ = "°03′32″"###context:CREATE TABLE table_name_58 (object_type VARCHAR, declination___j2000__ VARCHAR) |
###question:What Constellation has a 20h56m40s Right Ascension (J2000)?###answer:SELECT constellation FROM table_name_27 WHERE right_ascension___j2000__ = "20h56m40s"###context:CREATE TABLE table_name_27 (constellation VARCHAR, right_ascension___j2000__ VARCHAR) |
###question:What is the Right Ascension with a Diffuse Nebula Object Type has a °42′30″ Declination and a NGC less than 6995?###answer:SELECT right_ascension___j2000__ FROM table_name_14 WHERE ngc_number < 6995 AND object_type = "diffuse nebula" AND declination___j2000__ = "°42′30″"###context:CREATE TABLE table_name_14... |
###question:What Object Type has a 21h01m37.7s Right Ascension (J2000) and 6995 or greater NGC?###answer:SELECT object_type FROM table_name_81 WHERE ngc_number > 6995 AND right_ascension___j2000__ = "21h01m37.7s"###context:CREATE TABLE table_name_81 (object_type VARCHAR, ngc_number VARCHAR, right_ascension___j2000__ VA... |
###question:Tell me the average size for minor third###answer:SELECT AVG(size__steps_) FROM table_name_62 WHERE interval_name = "minor third"###context:CREATE TABLE table_name_62 (size__steps_ INTEGER, interval_name VARCHAR) |
###question:Who was the losing team on June 16?###answer:SELECT losing_team FROM table_name_25 WHERE date = "june 16"###context:CREATE TABLE table_name_25 (losing_team VARCHAR, date VARCHAR) |
###question:What was the score of the game on June 28?###answer:SELECT score FROM table_name_81 WHERE date = "june 28"###context:CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR) |
###question:Who beat the Marlins with a score of 4-0?###answer:SELECT winning_team FROM table_name_68 WHERE losing_team = "marlins" AND score = "4-0"###context:CREATE TABLE table_name_68 (winning_team VARCHAR, losing_team VARCHAR, score VARCHAR) |
###question:What is the date of the game at the Pro Player Stadium that had a score of 4-1?###answer:SELECT date FROM table_name_43 WHERE venue = "pro player stadium" AND score = "4-1"###context:CREATE TABLE table_name_43 (date VARCHAR, venue VARCHAR, score VARCHAR) |
###question:With 1.97 million HK viewers and a finale more than 33, what was the total number of peaks?###answer:SELECT COUNT(peak) FROM table_name_16 WHERE hk_viewers = "1.97 million" AND finale > 33###context:CREATE TABLE table_name_16 (peak VARCHAR, hk_viewers VARCHAR, finale VARCHAR) |
###question:When were scottish football league xi the opponents with a score of 1-5?###answer:SELECT date FROM table_name_11 WHERE opponents = "scottish football league xi" AND score = "1-5"###context:CREATE TABLE table_name_11 (date VARCHAR, opponents VARCHAR, score VARCHAR) |
###question:What's the score on 17/03/1956?###answer:SELECT score FROM table_name_59 WHERE date = "17/03/1956"###context:CREATE TABLE table_name_59 (score VARCHAR, date VARCHAR) |
###question:When the result is d, who are the opponents?###answer:SELECT opponents FROM table_name_19 WHERE result = "d"###context:CREATE TABLE table_name_19 (opponents VARCHAR, result VARCHAR) |
###question:What's the result when the score is 2-2?###answer:SELECT result FROM table_name_10 WHERE score = "2-2"###context:CREATE TABLE table_name_10 (result VARCHAR, score VARCHAR) |
###question:What's in third place that's going 1-0?###answer:SELECT 3 AS rd_place FROM table_name_39 WHERE score = "1-0"###context:CREATE TABLE table_name_39 (score VARCHAR) |
###question:Who is in third place when the kaizer chiefs won 1-0?###answer:SELECT 3 AS rd_place FROM table_name_9 WHERE winners = "kaizer chiefs" AND score = "1-0"###context:CREATE TABLE table_name_9 (winners VARCHAR, score VARCHAR) |
###question:Which is the earliest year that had mixed doubles for wang wei lu ying?###answer:SELECT MIN(year) FROM table_name_40 WHERE mixed_doubles = "wang wei lu ying"###context:CREATE TABLE table_name_40 (year INTEGER, mixed_doubles VARCHAR) |
###question:What is the 2011 value that has ATP Masters Series in 2007?###answer:SELECT 2011 FROM table_name_34 WHERE 2007 = "atp masters series"###context:CREATE TABLE table_name_34 (Id VARCHAR) |
###question:What is the 2011 value that has a 2r in 2008 and a 4r in 2012?###answer:SELECT 2011 FROM table_name_62 WHERE 2008 = "2r" AND 2012 = "4r"###context:CREATE TABLE table_name_62 (Id VARCHAR) |
###question:What is the 2012 value with an A value in 2007 and A value in 2010 in the Canada Masters?###answer:SELECT 2012 FROM table_name_60 WHERE 2007 = "a" AND 2010 = "a" AND tournament = "canada masters"###context:CREATE TABLE table_name_60 (tournament VARCHAR) |
###question:What is the 2012 value with 1r in 2011, 2007 of A, 2010 of 1r, and 2009 of A?###answer:SELECT 2012 FROM table_name_16 WHERE 2011 = "1r" AND 2007 = "a" AND 2010 = "1r" AND 2009 = "a"###context:CREATE TABLE table_name_16 (Id VARCHAR) |
###question:What is the 2007 value with NMS in 2011?###answer:SELECT 2007 FROM table_name_87 WHERE 2011 = "nms"###context:CREATE TABLE table_name_87 (Id VARCHAR) |
###question:Christian Fittipaldi drove in what team?###answer:SELECT team FROM table_name_74 WHERE drivers = "christian fittipaldi"###context:CREATE TABLE table_name_74 (team VARCHAR, drivers VARCHAR) |
###question:What driver had a 15-20 record?###answer:SELECT drivers FROM table_name_34 WHERE races = "15-20"###context:CREATE TABLE table_name_34 (drivers VARCHAR, races VARCHAR) |
###question:Who drove a race car with a Mercedes IC 108e engine and has an 8-10 record?###answer:SELECT drivers FROM table_name_28 WHERE engine = "mercedes ic 108e" AND races = "8-10"###context:CREATE TABLE table_name_28 (drivers VARCHAR, engine VARCHAR, races VARCHAR) |
###question:Which person drove a Reynard 2ki with a Honda Hrk engine?###answer:SELECT races FROM table_name_95 WHERE chassis = "reynard 2ki" AND engine = "honda hrk"###context:CREATE TABLE table_name_95 (races VARCHAR, chassis VARCHAR, engine VARCHAR) |
###question:What artist had a single called Alien Rock b/w Combat, The Remix on 12 inch Vinyl format?###answer:SELECT artist FROM table_name_82 WHERE format = "12 inch vinyl" AND single = "alien rock b/w combat, the remix"###context:CREATE TABLE table_name_82 (artist VARCHAR, format VARCHAR, single VARCHAR) |
###question:What single was written by the artist cap D?###answer:SELECT single FROM table_name_17 WHERE artist = "cap d"###context:CREATE TABLE table_name_17 (single VARCHAR, artist VARCHAR) |
###question:What date was the opponent in the final Virginie Pichet?###answer:SELECT date FROM table_name_46 WHERE opponent_in_final = "virginie pichet"###context:CREATE TABLE table_name_46 (date VARCHAR, opponent_in_final VARCHAR) |
###question:What time was game 7?###answer:SELECT time FROM table_name_25 WHERE game = 7###context:CREATE TABLE table_name_25 (time VARCHAR, game VARCHAR) |
###question:When the game was played at the Venue of Lake Oval, what was the home team score?###answer:SELECT home_team AS score FROM table_name_58 WHERE venue = "lake oval"###context:CREATE TABLE table_name_58 (home_team VARCHAR, venue VARCHAR) |
###question:When the Venue was Glenferrie Oval, who is the Away team?###answer:SELECT away_team FROM table_name_3 WHERE venue = "glenferrie oval"###context:CREATE TABLE table_name_3 (away_team VARCHAR, venue VARCHAR) |
###question:When North Melbourne is the Away team, what is the total number of the Crowd?###answer:SELECT COUNT(crowd) FROM table_name_46 WHERE away_team = "north melbourne"###context:CREATE TABLE table_name_46 (crowd VARCHAR, away_team VARCHAR) |
###question:When Richmond is the Away team, what did they score?###answer:SELECT away_team AS score FROM table_name_2 WHERE away_team = "richmond"###context:CREATE TABLE table_name_2 (away_team VARCHAR) |
###question:When Geelong is the Away team, what did the Home team score?###answer:SELECT home_team AS score FROM table_name_2 WHERE away_team = "geelong"###context:CREATE TABLE table_name_2 (home_team VARCHAR, away_team VARCHAR) |
###question:Which race has a pole of test driver and a team name of Lucky Strike Honda Racing f1 team?###answer:SELECT races FROM table_name_36 WHERE poles = "test driver" AND team_name = "lucky strike honda racing f1 team"###context:CREATE TABLE table_name_36 (races VARCHAR, poles VARCHAR, team_name VARCHAR) |
###question:Which pole has a Season of 2009 and points of test driver?###answer:SELECT poles FROM table_name_90 WHERE season = 2009 AND points = "test driver"###context:CREATE TABLE table_name_90 (poles VARCHAR, season VARCHAR, points VARCHAR) |
###question:What is the date of the tournament with 5 strokes as the margin of victory?###answer:SELECT date FROM table_name_62 WHERE margin_of_victory = "5 strokes"###context:CREATE TABLE table_name_62 (date VARCHAR, margin_of_victory VARCHAR) |
###question:What is the margin of victory of the tournament on 15 Jul 2007?###answer:SELECT margin_of_victory FROM table_name_34 WHERE date = "15 jul 2007"###context:CREATE TABLE table_name_34 (margin_of_victory VARCHAR, date VARCHAR) |
###question:What is the margin of victory of the tournament with a winning score of 70-67-64-71=272?###answer:SELECT margin_of_victory FROM table_name_82 WHERE winning_score = 70 - 67 - 64 - 71 = 272###context:CREATE TABLE table_name_82 (margin_of_victory VARCHAR, winning_score VARCHAR) |
###question:Tell me the average points with tyres of b and chassis of tf109###answer:SELECT AVG(points) FROM table_name_23 WHERE tyres = "b" AND chassis = "tf109"###context:CREATE TABLE table_name_23 (points INTEGER, tyres VARCHAR, chassis VARCHAR) |
###question:Tell me the total number of points with chassis of tf103###answer:SELECT COUNT(points) FROM table_name_2 WHERE chassis = "tf103"###context:CREATE TABLE table_name_2 (points VARCHAR, chassis VARCHAR) |
###question:Which partners were runner-up in the tournament in Mons, Belgium?###answer:SELECT partner FROM table_name_61 WHERE outcome = "runner-up" AND tournament = "mons, belgium"###context:CREATE TABLE table_name_61 (partner VARCHAR, outcome VARCHAR, tournament VARCHAR) |
###question:What is the total track that is translated in brussels?###answer:SELECT COUNT(track) FROM table_name_25 WHERE translation = "brussels"###context:CREATE TABLE table_name_25 (track VARCHAR, translation VARCHAR) |
###question:Which title has tracks smaller than 7 with translation of an island?###answer:SELECT title FROM table_name_67 WHERE track < 7 AND translation = "an island"###context:CREATE TABLE table_name_67 (title VARCHAR, track VARCHAR, translation VARCHAR) |
###question:What is the record for Brussels translations?###answer:SELECT recorded FROM table_name_84 WHERE translation = "brussels"###context:CREATE TABLE table_name_84 (recorded VARCHAR, translation VARCHAR) |
###question:What's the largest crowd that attended a game at junction oval?###answer:SELECT MAX(crowd) FROM table_name_36 WHERE venue = "junction oval"###context:CREATE TABLE table_name_36 (crowd INTEGER, venue VARCHAR) |
###question:Who did mark eaton play for?###answer:SELECT school_club_team FROM table_name_3 WHERE player = "mark eaton"###context:CREATE TABLE table_name_3 (school_club_team VARCHAR, player VARCHAR) |
###question:What position did someone play from 1982-84?###answer:SELECT position FROM table_name_78 WHERE years_for_jazz = "1982-84"###context:CREATE TABLE table_name_78 (position VARCHAR, years_for_jazz VARCHAR) |
###question:Who does jeremy evans play for?###answer:SELECT school_club_team FROM table_name_15 WHERE player = "jeremy evans"###context:CREATE TABLE table_name_15 (school_club_team VARCHAR, player VARCHAR) |
###question:What nationality is mark eaton, center position?###answer:SELECT nationality FROM table_name_51 WHERE position = "center" AND player = "mark eaton"###context:CREATE TABLE table_name_51 (nationality VARCHAR, position VARCHAR, player VARCHAR) |
###question:What's the position listed for the east carolina team?###answer:SELECT position FROM table_name_81 WHERE school_club_team = "east carolina"###context:CREATE TABLE table_name_81 (position VARCHAR, school_club_team VARCHAR) |
###question:What is the home/away of the game at Nickerson Field at July 10?###answer:SELECT home_away FROM table_name_68 WHERE field = "nickerson field" AND date = "july 10"###context:CREATE TABLE table_name_68 (home_away VARCHAR, field VARCHAR, date VARCHAR) |
###question:What is the date of the game away against Pride?###answer:SELECT date FROM table_name_35 WHERE opponent = "pride" AND home_away = "away"###context:CREATE TABLE table_name_35 (date VARCHAR, opponent VARCHAR, home_away VARCHAR) |
###question:What is the result of the home game on August 14?###answer:SELECT result FROM table_name_25 WHERE home_away = "home" AND date = "august 14"###context:CREATE TABLE table_name_25 (result VARCHAR, home_away VARCHAR, date VARCHAR) |
###question:What is the date of the game against the Lizards with a result of w 18-17?###answer:SELECT date FROM table_name_18 WHERE opponent = "lizards" AND result = "w 18-17"###context:CREATE TABLE table_name_18 (date VARCHAR, opponent VARCHAR, result VARCHAR) |
###question:What is the field of the game on July 22?###answer:SELECT field FROM table_name_7 WHERE date = "july 22"###context:CREATE TABLE table_name_7 (field VARCHAR, date VARCHAR) |
###question:Who had a disputed marriage?###answer:SELECT name FROM table_name_57 WHERE marriage = "disputed"###context:CREATE TABLE table_name_57 (name VARCHAR, marriage VARCHAR) |
###question:On October 25, when the visitor was Colorado, what is the score?###answer:SELECT score FROM table_name_64 WHERE visitor = "colorado" AND date = "october 25"###context:CREATE TABLE table_name_64 (score VARCHAR, visitor VARCHAR, date VARCHAR) |
###question:How many voters were in Manhattan when 181,639 people voted in the Bronx?###answer:SELECT richmond_[staten_is] FROM table_name_90 WHERE the_bronx = "181,639"###context:CREATE TABLE table_name_90 (richmond_ VARCHAR, staten_is VARCHAR, the_bronx VARCHAR) |
###question:When Richmond had a total count of 2,293, what was the total count of Brooklyn?###answer:SELECT brooklyn FROM table_name_53 WHERE richmond_[staten_is] = "2,293"###context:CREATE TABLE table_name_53 (brooklyn VARCHAR, richmond_ VARCHAR, staten_is VARCHAR) |
###question:What is the average earnings of the player from the United States with a win smaller than 2 and a rank larger than 3?###answer:SELECT AVG(earnings___) AS $__ FROM table_name_96 WHERE country = "united states" AND wins < 2 AND rank > 3###context:CREATE TABLE table_name_96 (earnings___ INTEGER, rank VARCHAR, ... |
###question:What is the average events that Al Geiberger played with wins smaller than 1?###answer:SELECT AVG(events) FROM table_name_55 WHERE player = "al geiberger" AND wins < 1###context:CREATE TABLE table_name_55 (events INTEGER, player VARCHAR, wins VARCHAR) |
###question:What is the rank where the events is 31?###answer:SELECT rank FROM table_name_65 WHERE events = 31###context:CREATE TABLE table_name_65 (rank VARCHAR, events VARCHAR) |
###question:What is the total number of events that Al Geiberger has played with earnings larger than 527,033?###answer:SELECT COUNT(events) FROM table_name_42 WHERE player = "al geiberger" AND earnings___$__ > 527 OFFSET 033###context:CREATE TABLE table_name_42 (events VARCHAR, player VARCHAR, earnings___$__ VARCHAR) |
###question:What is the average events where the rank is smaller than 2 and wins are smaller than 5?###answer:SELECT AVG(events) FROM table_name_11 WHERE rank < 2 AND wins < 5###context:CREATE TABLE table_name_11 (events INTEGER, rank VARCHAR, wins VARCHAR) |
###question:Who did team phoenix visit in their home?###answer:SELECT home FROM table_name_32 WHERE visitor = "phoenix"###context:CREATE TABLE table_name_32 (home VARCHAR, visitor VARCHAR) |
###question:What is the highest round in the Wec 25 match in Las Vegas, Nevada, United States?###answer:SELECT MAX(round) FROM table_name_80 WHERE location = "las vegas, nevada, united states" AND event = "wec 25"###context:CREATE TABLE table_name_80 (round INTEGER, location VARCHAR, event VARCHAR) |
###question:What event had 1 round and a record of 6-2?###answer:SELECT event FROM table_name_9 WHERE round = 1 AND record = "6-2"###context:CREATE TABLE table_name_9 (event VARCHAR, round VARCHAR, record VARCHAR) |
###question:Which school has more than 3 rounds with jason odom?###answer:SELECT school FROM table_name_71 WHERE round > 3 AND player = "jason odom"###context:CREATE TABLE table_name_71 (school VARCHAR, round VARCHAR, player VARCHAR) |
###question:Name the least evening gown for interview more than 7.97 and swimsui of 7.24###answer:SELECT MIN(evening_gown) FROM table_name_25 WHERE swimsuit = 7.24 AND interview > 7.97###context:CREATE TABLE table_name_25 (evening_gown INTEGER, swimsuit VARCHAR, interview VARCHAR) |
###question:What is the nationality of Mattias Modig?###answer:SELECT nationality FROM table_name_86 WHERE player = "mattias modig"###context:CREATE TABLE table_name_86 (nationality VARCHAR, player VARCHAR) |
###question:In the game where the home team was St Kilda, what was the attendance?###answer:SELECT crowd FROM table_name_52 WHERE home_team = "st kilda"###context:CREATE TABLE table_name_52 (crowd VARCHAR, home_team VARCHAR) |
###question:In the game with the venue of mcg, what was the attendance?###answer:SELECT crowd FROM table_name_22 WHERE venue = "mcg"###context:CREATE TABLE table_name_22 (crowd VARCHAR, venue VARCHAR) |
###question:In the game that took place at junction oval, how much did the home team score?###answer:SELECT home_team AS score FROM table_name_24 WHERE venue = "junction oval"###context:CREATE TABLE table_name_24 (home_team VARCHAR, venue VARCHAR) |
###question:Who was the visiting team when the home team was Seattle?###answer:SELECT visitor FROM table_name_22 WHERE home = "seattle"###context:CREATE TABLE table_name_22 (visitor VARCHAR, home VARCHAR) |
###question:What was the record on 12 march 2008?###answer:SELECT record FROM table_name_63 WHERE date = "12 march 2008"###context:CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR) |
###question:Who was the home team on 27 march 2008?###answer:SELECT home FROM table_name_83 WHERE date = "27 march 2008"###context:CREATE TABLE table_name_83 (home VARCHAR, date VARCHAR) |
###question:What was the score when the mavericks were visitors?###answer:SELECT score FROM table_name_23 WHERE visitor = "mavericks"###context:CREATE TABLE table_name_23 (score VARCHAR, visitor VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.