combined_text stringlengths 106 1.05k |
|---|
###question:I want the lowest Grid for Rolf Stommelen###answer:SELECT MIN(grid) FROM table_name_48 WHERE driver = "rolf stommelen"###context:CREATE TABLE table_name_48 (grid INTEGER, driver VARCHAR) |
###question:I want the constructor for grid less than 20 and Laps of 6###answer:SELECT constructor FROM table_name_68 WHERE grid < 20 AND laps = 6###context:CREATE TABLE table_name_68 (constructor VARCHAR, grid VARCHAR, laps VARCHAR) |
###question:What is the german total population after 1910 with an other total of 143 and 32 hungarians?###answer:SELECT german FROM table_name_59 WHERE year > 1910 AND other = "143" AND hungarian = "32"###context:CREATE TABLE table_name_59 (german VARCHAR, hungarian VARCHAR, year VARCHAR, other VARCHAR) |
###question:What year did Naoki Tsukahara finish 3rd in the 200 m race?###answer:SELECT year FROM table_name_4 WHERE notes = "200 m" AND position = "3rd"###context:CREATE TABLE table_name_4 (year VARCHAR, notes VARCHAR, position VARCHAR) |
###question:What is the attendance at the Dallas home game on may 12?###answer:SELECT COUNT(attendance) FROM table_name_67 WHERE home = "dallas" AND date = "may 12"###context:CREATE TABLE table_name_67 (attendance VARCHAR, home VARCHAR, date VARCHAR) |
###question:What nationality is the player ranked 2?###answer:SELECT country FROM table_name_83 WHERE rank = 2###context:CREATE TABLE table_name_83 (country VARCHAR, rank VARCHAR) |
###question:How many wins for mike hill ranked below 4?###answer:SELECT COUNT(wins) FROM table_name_49 WHERE player = "mike hill" AND rank < 4###context:CREATE TABLE table_name_49 (wins VARCHAR, player VARCHAR, rank VARCHAR) |
###question:What is Trevor Cann's nationality?###answer:SELECT nationality FROM table_name_10 WHERE player = "trevor cann"###context:CREATE TABLE table_name_10 (nationality VARCHAR, player VARCHAR) |
###question:What is Kent Patterson's nationality?###answer:SELECT nationality FROM table_name_60 WHERE player = "kent patterson"###context:CREATE TABLE table_name_60 (nationality VARCHAR, player VARCHAR) |
###question:Which unit has a Pennant Number of 82?###answer:SELECT unit FROM table_name_27 WHERE pennant_number = 82###context:CREATE TABLE table_name_27 (unit VARCHAR, pennant_number VARCHAR) |
###question:What is the highest pennant number with ships in raahe class?###answer:SELECT MAX(pennant_number) FROM table_name_54 WHERE ships_in_class = "raahe"###context:CREATE TABLE table_name_54 (pennant_number INTEGER, ships_in_class VARCHAR) |
###question:What is the highest pennant number with ships in pori class?###answer:SELECT MAX(pennant_number) FROM table_name_61 WHERE ships_in_class = "pori"###context:CREATE TABLE table_name_61 (pennant_number INTEGER, ships_in_class VARCHAR) |
###question:What is the name of the competition that ended with a score of 2-1?###answer:SELECT competition FROM table_name_90 WHERE score = "2-1"###context:CREATE TABLE table_name_90 (competition VARCHAR, score VARCHAR) |
###question:What is the name of the competition that ended with a score of 1-3?###answer:SELECT competition FROM table_name_63 WHERE score = "1-3"###context:CREATE TABLE table_name_63 (competition VARCHAR, score VARCHAR) |
###question:At which venue did the game on 28 october 2013 take place?###answer:SELECT venue FROM table_name_5 WHERE date = "28 october 2013"###context:CREATE TABLE table_name_5 (venue VARCHAR, date VARCHAR) |
###question:What is the Competition name of the competition that ended with a score of 2-1?###answer:SELECT competition FROM table_name_74 WHERE score = "2-1"###context:CREATE TABLE table_name_74 (competition VARCHAR, score VARCHAR) |
###question:In what year did a car have a yamaha v12 engine and a brabham bt60y chassis###answer:SELECT year FROM table_name_70 WHERE engine = "yamaha v12" AND chassis = "brabham bt60y"###context:CREATE TABLE table_name_70 (year VARCHAR, engine VARCHAR, chassis VARCHAR) |
###question:waht is the last year with a mclaren mp4/10b chassis###answer:SELECT MAX(year) FROM table_name_31 WHERE chassis = "mclaren mp4/10b"###context:CREATE TABLE table_name_31 (year INTEGER, chassis VARCHAR) |
###question:before 1995 waht is the aveage pts for a mclaren mp4/10b chassis###answer:SELECT AVG(pts) FROM table_name_58 WHERE chassis = "mclaren mp4/10b" AND year < 1995###context:CREATE TABLE table_name_58 (pts INTEGER, chassis VARCHAR, year VARCHAR) |
###question:what is the most recent year for a ligier gitanes blondes###answer:SELECT MAX(year) FROM table_name_84 WHERE entrant = "ligier gitanes blondes"###context:CREATE TABLE table_name_84 (year INTEGER, entrant VARCHAR) |
###question:What is the total number of averages with an interview of 8.75 when the evening gown number was bigger than 8.75?###answer:SELECT SUM(average) FROM table_name_62 WHERE interview = 8.75 AND evening_gown > 8.75###context:CREATE TABLE table_name_62 (average INTEGER, interview VARCHAR, evening_gown VARCHAR) |
###question:What is the total number of interviews where the evening gown number is less than 8.82, the state is Kentucky, and the average is more than 8.85?###answer:SELECT SUM(interview) FROM table_name_64 WHERE evening_gown < 8.82 AND state = "kentucky" AND average > 8.85###context:CREATE TABLE table_name_64 (interv... |
###question:How many averages had a swimsuit number of 8.42 and an evening gown number that was less than 8.71?###answer:SELECT SUM(average) FROM table_name_96 WHERE swimsuit = 8.42 AND evening_gown < 8.71###context:CREATE TABLE table_name_96 (average INTEGER, swimsuit VARCHAR, evening_gown VARCHAR) |
###question:Which state had an average of less than 8.67, a swimsuit score of 8.27, an evening gown score of 8.78, and an interview number of 8.52?###answer:SELECT state FROM table_name_70 WHERE average < 8.67 AND swimsuit = 8.27 AND evening_gown = 8.78 AND interview = 8.52###context:CREATE TABLE table_name_70 (state V... |
###question:What is the record when the visitor was Nashville?###answer:SELECT record FROM table_name_82 WHERE visitor = "nashville"###context:CREATE TABLE table_name_82 (record VARCHAR, visitor VARCHAR) |
###question:When was a competition held at Pietermaritzburg?###answer:SELECT date FROM table_name_83 WHERE venue = "pietermaritzburg"###context:CREATE TABLE table_name_83 (date VARCHAR, venue VARCHAR) |
###question:What were the bowling figures for the competition at Pietermaritzburg?###answer:SELECT bowling_figures_wickets_runs__overs_ FROM table_name_19 WHERE venue = "pietermaritzburg"###context:CREATE TABLE table_name_19 (bowling_figures_wickets_runs__overs_ VARCHAR, venue VARCHAR) |
###question:Who was the opponent during the competition in which the bowling figures were 5-33 (10)?###answer:SELECT versus FROM table_name_82 WHERE bowling_figures_wickets_runs__overs_ = "5-33 (10)"###context:CREATE TABLE table_name_82 (versus VARCHAR, bowling_figures_wickets_runs__overs_ VARCHAR) |
###question:What were GD Mcgrath's bowling figures?###answer:SELECT bowling_figures_wickets_runs__overs_ FROM table_name_42 WHERE bowler = "gd mcgrath"###context:CREATE TABLE table_name_42 (bowling_figures_wickets_runs__overs_ VARCHAR, bowler VARCHAR) |
###question:During the competition at Port Elizabeth, where the opponent was Australia, what were the bowling figures?###answer:SELECT bowling_figures_wickets_runs__overs_ FROM table_name_43 WHERE venue = "port elizabeth" AND versus = "australia"###context:CREATE TABLE table_name_43 (bowling_figures_wickets_runs__overs... |
###question:What is the lowest amount of floors after rank 1 in the Trillium (residential) building?###answer:SELECT MIN(floors) FROM table_name_33 WHERE rank > 1 AND building = "the trillium (residential)"###context:CREATE TABLE table_name_33 (floors INTEGER, rank VARCHAR, building VARCHAR) |
###question:What is the lowest amount of floors in the building completed before 1970 ranked more than 14?###answer:SELECT MIN(floors) FROM table_name_4 WHERE completed < 1970 AND rank > 14###context:CREATE TABLE table_name_4 (floors INTEGER, completed VARCHAR, rank VARCHAR) |
###question:What is the largest amount of floors in the 70m (233ft) Tupper building (educational)?###answer:SELECT MAX(floors) FROM table_name_11 WHERE height = "70m (233ft)" AND building = "tupper building (educational)"###context:CREATE TABLE table_name_11 (floors INTEGER, height VARCHAR, building VARCHAR) |
###question:Which manufacturer has 23 laps and a time of +45.195?###answer:SELECT manufacturer FROM table_name_52 WHERE laps = 23 AND time_retired = "+45.195"###context:CREATE TABLE table_name_52 (manufacturer VARCHAR, laps VARCHAR, time_retired VARCHAR) |
###question:What is the sum of Sylvain Guintoli's laps?###answer:SELECT SUM(laps) FROM table_name_8 WHERE rider = "sylvain guintoli"###context:CREATE TABLE table_name_8 (laps INTEGER, rider VARCHAR) |
###question:How many runs were scored when the strike rate was 101.42?###answer:SELECT runs FROM table_name_75 WHERE strike_rate = "101.42"###context:CREATE TABLE table_name_75 (runs VARCHAR, strike_rate VARCHAR) |
###question:What was the amount of grain in 2001?###answer:SELECT 2001 FROM table_name_4 WHERE product = "grain"###context:CREATE TABLE table_name_4 (product VARCHAR) |
###question:What is the amount of oil terminal in 2004?###answer:SELECT 2004 FROM table_name_51 WHERE product = "oil terminal"###context:CREATE TABLE table_name_51 (product VARCHAR) |
###question:What is the 2003 statistic for the product that had 514,000 tonnes in 2001?###answer:SELECT 2003 FROM table_name_34 WHERE 2001 = "514,000 tonnes"###context:CREATE TABLE table_name_34 (Id VARCHAR) |
###question:What is the 2002 statistic for the product that had 452,000 tonnes in 2001?###answer:SELECT 2002 FROM table_name_7 WHERE 2001 = "452,000 tonnes"###context:CREATE TABLE table_name_7 (Id VARCHAR) |
###question:What is the 2001 statistic for the product that had 2,360,000 tonnes in 2002?###answer:SELECT 2001 FROM table_name_91 WHERE 2002 = "2,360,000 tonnes"###context:CREATE TABLE table_name_91 (Id VARCHAR) |
###question:What is the 2003 statistic for general cargo?###answer:SELECT 2003 FROM table_name_94 WHERE product = "general cargo"###context:CREATE TABLE table_name_94 (product VARCHAR) |
###question:What did the home team score at MCG?###answer:SELECT home_team AS score FROM table_name_30 WHERE venue = "mcg"###context:CREATE TABLE table_name_30 (home_team VARCHAR, venue VARCHAR) |
###question:What did the away team score when playing South Melbourne?###answer:SELECT away_team AS score FROM table_name_44 WHERE home_team = "south melbourne"###context:CREATE TABLE table_name_44 (away_team VARCHAR, home_team VARCHAR) |
###question:When did the game with North Melbourne as the away team take place?###answer:SELECT date FROM table_name_89 WHERE away_team = "north melbourne"###context:CREATE TABLE table_name_89 (date VARCHAR, away_team VARCHAR) |
###question:If the Away team was south melbourne what Date did they play?###answer:SELECT date FROM table_name_57 WHERE away_team = "south melbourne"###context:CREATE TABLE table_name_57 (date VARCHAR, away_team VARCHAR) |
###question:When the Home team of essendon is playing what is the Away team score?###answer:SELECT away_team AS score FROM table_name_67 WHERE home_team = "essendon"###context:CREATE TABLE table_name_67 (away_team VARCHAR, home_team VARCHAR) |
###question:I wan the date of vacancy for departure of resigned and outgoing manager of gordon wylde###answer:SELECT date_of_vacancy FROM table_name_22 WHERE manner_of_departure = "resigned" AND outgoing_manager = "gordon wylde"###context:CREATE TABLE table_name_22 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR,... |
###question:I want the replaced for date of appointment being 12 october 2007###answer:SELECT replaced_by FROM table_name_73 WHERE date_of_appointment = "12 october 2007"###context:CREATE TABLE table_name_73 (replaced_by VARCHAR, date_of_appointment VARCHAR) |
###question:I want the team for date of vacancy being 28 february###answer:SELECT team FROM table_name_52 WHERE date_of_vacancy = "28 february"###context:CREATE TABLE table_name_52 (team VARCHAR, date_of_vacancy VARCHAR) |
###question:I want the manner of departure for date of appointment being 12 october 2007###answer:SELECT manner_of_departure FROM table_name_87 WHERE date_of_appointment = "12 october 2007"###context:CREATE TABLE table_name_87 (manner_of_departure VARCHAR, date_of_appointment VARCHAR) |
###question:Which date was the syracuse circuit?###answer:SELECT date FROM table_name_67 WHERE circuit = "syracuse"###context:CREATE TABLE table_name_67 (date VARCHAR, circuit VARCHAR) |
###question:Which date was the x gran premio di napoli?###answer:SELECT date FROM table_name_7 WHERE race_name = "x gran premio di napoli"###context:CREATE TABLE table_name_7 (date VARCHAR, race_name VARCHAR) |
###question:What report happened on 22 september?###answer:SELECT report FROM table_name_25 WHERE date = "22 september"###context:CREATE TABLE table_name_25 (report VARCHAR, date VARCHAR) |
###question:Which report has a Winning driver of peter collins, and a Circuit of syracuse?###answer:SELECT report FROM table_name_33 WHERE winning_driver = "peter collins" AND circuit = "syracuse"###context:CREATE TABLE table_name_33 (report VARCHAR, winning_driver VARCHAR, circuit VARCHAR) |
###question:Who appointed Judge Edward E. Cushman?###answer:SELECT appointed_by FROM table_name_73 WHERE judge = "edward e. cushman"###context:CREATE TABLE table_name_73 (appointed_by VARCHAR, judge VARCHAR) |
###question:Who was Judge Jack Edward Tanner's chief judge?###answer:SELECT Chief AS judge FROM table_name_37 WHERE judge = "jack edward tanner"###context:CREATE TABLE table_name_37 (Chief VARCHAR, judge VARCHAR) |
###question:What is the date of birth of the player that has 11 caps and plays the prop position?###answer:SELECT date_of_birth__age_ FROM table_name_41 WHERE caps = 11 AND position = "prop"###context:CREATE TABLE table_name_41 (date_of_birth__age_ VARCHAR, caps VARCHAR, position VARCHAR) |
###question:What club or province is the player with 12 caps from?###answer:SELECT club_province FROM table_name_49 WHERE caps = 12###context:CREATE TABLE table_name_49 (club_province VARCHAR, caps VARCHAR) |
###question:What position does Toby Flood, who is from Newcastle and has fewer than 24 caps, play?###answer:SELECT position FROM table_name_47 WHERE club_province = "newcastle" AND caps < 24 AND player = "toby flood"###context:CREATE TABLE table_name_47 (position VARCHAR, player VARCHAR, club_province VARCHAR, caps VAR... |
###question:Which team beat the Newcastle Breakers?###answer:SELECT winningteam FROM table_name_76 WHERE losingteam = "newcastle breakers"###context:CREATE TABLE table_name_76 (winningteam VARCHAR, losingteam VARCHAR) |
###question:What team lost on 20 August 1989?###answer:SELECT losingteam FROM table_name_82 WHERE cup_finaldate = "20 august 1989"###context:CREATE TABLE table_name_82 (losingteam VARCHAR, cup_finaldate VARCHAR) |
###question:On what date did the Brisbane Lions (1) win?###answer:SELECT cup_finaldate FROM table_name_44 WHERE winningteam = "brisbane lions (1)"###context:CREATE TABLE table_name_44 (cup_finaldate VARCHAR, winningteam VARCHAR) |
###question:What was the winning team with the 8,132 final attendance?###answer:SELECT winningteam FROM table_name_20 WHERE cup_final_attendance = "8,132"###context:CREATE TABLE table_name_20 (winningteam VARCHAR, cup_final_attendance VARCHAR) |
###question:What was the attendance on August 2?###answer:SELECT attendance FROM table_name_48 WHERE date = "august 2"###context:CREATE TABLE table_name_48 (attendance VARCHAR, date VARCHAR) |
###question:What is the date where the attendance was 31,220?###answer:SELECT date FROM table_name_62 WHERE attendance = "31,220"###context:CREATE TABLE table_name_62 (date VARCHAR, attendance VARCHAR) |
###question:What was the team's record on August 4?###answer:SELECT record FROM table_name_8 WHERE date = "august 4"###context:CREATE TABLE table_name_8 (record VARCHAR, date VARCHAR) |
###question:What was the date when the attendance was 48,041?###answer:SELECT date FROM table_name_84 WHERE attendance = "48,041"###context:CREATE TABLE table_name_84 (date VARCHAR, attendance VARCHAR) |
###question:Who are the finals opponents for the match with partner Ricardo Hocevar?###answer:SELECT opponents_in_the_final FROM table_name_44 WHERE partnering = "ricardo hocevar"###context:CREATE TABLE table_name_44 (opponents_in_the_final VARCHAR, partnering VARCHAR) |
###question:Who were the opponents of the final on June 23, 2003?###answer:SELECT opponents_in_the_final FROM table_name_4 WHERE date = "june 23, 2003"###context:CREATE TABLE table_name_4 (opponents_in_the_final VARCHAR, date VARCHAR) |
###question:Who was the home side at glenferrie oval?###answer:SELECT home_team FROM table_name_37 WHERE venue = "glenferrie oval"###context:CREATE TABLE table_name_37 (home_team VARCHAR, venue VARCHAR) |
###question:Who is the author of Episode 38 (16)?###answer:SELECT written_by FROM table_name_2 WHERE episode__number = "38 (16)"###context:CREATE TABLE table_name_2 (written_by VARCHAR, episode__number VARCHAR) |
###question:When did Episode 29 (7) originally air?###answer:SELECT original_airdate FROM table_name_65 WHERE episode__number = "29 (7)"###context:CREATE TABLE table_name_65 (original_airdate VARCHAR, episode__number VARCHAR) |
###question:What is the episode # of the episode that aired on April 5, 1998?###answer:SELECT episode__number FROM table_name_23 WHERE original_airdate = "april 5, 1998"###context:CREATE TABLE table_name_23 (episode__number VARCHAR, original_airdate VARCHAR) |
###question:Who wrote the episode that originally aired on March 1, 1998?###answer:SELECT written_by FROM table_name_42 WHERE original_airdate = "march 1, 1998"###context:CREATE TABLE table_name_42 (written_by VARCHAR, original_airdate VARCHAR) |
###question:what tournament has 2000 of 3r?###answer:SELECT tournament FROM table_name_35 WHERE 2000 = "3r"###context:CREATE TABLE table_name_35 (tournament VARCHAR) |
###question:what 2001 has 1991 of 4r?###answer:SELECT 2001 FROM table_name_42 WHERE 1991 = "4r"###context:CREATE TABLE table_name_42 (Id VARCHAR) |
###question:what 1989 has 2002 of 4r and 2005 of 4r?###answer:SELECT 1989 FROM table_name_22 WHERE 2002 = "4r" AND 2005 = "4r"###context:CREATE TABLE table_name_22 (Id VARCHAR) |
###question:What team played in front of 28,536 at an away stadium?###answer:SELECT away_team AS score FROM table_name_34 WHERE crowd > 28 OFFSET 536###context:CREATE TABLE table_name_34 (away_team VARCHAR, crowd INTEGER) |
###question:What was Fitzroy score at their home stadium?###answer:SELECT home_team AS score FROM table_name_25 WHERE home_team = "fitzroy"###context:CREATE TABLE table_name_25 (home_team VARCHAR) |
###question:Who faced off against St Kilda at their home?###answer:SELECT away_team AS score FROM table_name_43 WHERE home_team = "st kilda"###context:CREATE TABLE table_name_43 (away_team VARCHAR, home_team VARCHAR) |
###question:What is the low number of top 25s in an event with over 15 appearances?###answer:SELECT MIN(top_25) FROM table_name_42 WHERE events > 15###context:CREATE TABLE table_name_42 (top_25 INTEGER, events INTEGER) |
###question:What is the average rank of the Reliance Entertainment movie with an opening day on Wednesday before 2012?###answer:SELECT AVG(rank) FROM table_name_8 WHERE day_of_week = "wednesday" AND year < 2012 AND studio_s_ = "reliance entertainment"###context:CREATE TABLE table_name_8 (rank INTEGER, studio_s_ VARCHAR... |
###question:What is the opening day net gross a Reliance Entertainment movie before 2011 had?###answer:SELECT SUM(opening_day_net_gross) FROM table_name_90 WHERE studio_s_ = "reliance entertainment" AND year < 2011###context:CREATE TABLE table_name_90 (opening_day_net_gross INTEGER, studio_s_ VARCHAR, year VARCHAR) |
###question:What is the studio of ra.one?###answer:SELECT studio_s_ FROM table_name_89 WHERE movie = "ra.one"###context:CREATE TABLE table_name_89 (studio_s_ VARCHAR, movie VARCHAR) |
###question:What is the year of the movie with an opening day on Friday with a rank 10?###answer:SELECT COUNT(year) FROM table_name_78 WHERE day_of_week = "friday" AND rank = 10###context:CREATE TABLE table_name_78 (year VARCHAR, day_of_week VARCHAR, rank VARCHAR) |
###question:What is the lowest Sack with a Solo of 24, with Tackles larger than 25.5, with Yards larger than 0?###answer:SELECT MIN(sack) FROM table_name_1 WHERE solo = 24 AND tackles > 25.5 AND yards > 0###context:CREATE TABLE table_name_1 (sack INTEGER, yards VARCHAR, solo VARCHAR, tackles VARCHAR) |
###question:What is the total number of Solo with a Player with sean mcinerney, and Yards larger than 0?###answer:SELECT COUNT(solo) FROM table_name_33 WHERE player = "sean mcinerney" AND yards > 0###context:CREATE TABLE table_name_33 (solo VARCHAR, player VARCHAR, yards VARCHAR) |
###question:At the power plant located in ramakkalmedu, what is the sum of the total capacity (MWe)?###answer:SELECT SUM(total_capacity__mwe_) FROM table_name_86 WHERE power_plant = "ramakkalmedu"###context:CREATE TABLE table_name_86 (total_capacity__mwe_ INTEGER, power_plant VARCHAR) |
###question:What company is the producer in the chennai mohan power plant?###answer:SELECT producer FROM table_name_79 WHERE power_plant = "chennai mohan"###context:CREATE TABLE table_name_79 (producer VARCHAR, power_plant VARCHAR) |
###question:What company is the producer at the poolavadi location###answer:SELECT producer FROM table_name_99 WHERE location = "poolavadi"###context:CREATE TABLE table_name_99 (producer VARCHAR, location VARCHAR) |
###question:What company is known as the producer at the kethanur location?###answer:SELECT producer FROM table_name_64 WHERE location = "kethanur"###context:CREATE TABLE table_name_64 (producer VARCHAR, location VARCHAR) |
###question:When the duration was 11 min, 34 sec, what was the feathered (Fxx)?###answer:SELECT feathered__fxx_ FROM table_name_37 WHERE duration = "11 min, 34 sec"###context:CREATE TABLE table_name_37 (feathered__fxx_ VARCHAR, duration VARCHAR) |
###question:I want to know the city for guelferbytanus b and the 5th###answer:SELECT city FROM table_name_6 WHERE date = "5th" AND name = "guelferbytanus b"###context:CREATE TABLE table_name_6 (city VARCHAR, date VARCHAR, name VARCHAR) |
###question:Name the country for the 9th and sign of g e###answer:SELECT country FROM table_name_51 WHERE date = "9th" AND sign = "g e"###context:CREATE TABLE table_name_51 (country VARCHAR, date VARCHAR, sign VARCHAR) |
###question:Name the content for sign of g e###answer:SELECT content FROM table_name_54 WHERE sign = "g e"###context:CREATE TABLE table_name_54 (content VARCHAR, sign VARCHAR) |
###question:Name the city for athous lavrensis###answer:SELECT city FROM table_name_22 WHERE name = "athous lavrensis"###context:CREATE TABLE table_name_22 (city VARCHAR, name VARCHAR) |
###question:Which race had a distance of 4 miles where the runner-up was not known?###answer:SELECT race_name FROM table_name_22 WHERE dist__miles_ = "4" AND runner_up = "not known"###context:CREATE TABLE table_name_22 (race_name VARCHAR, dist__miles_ VARCHAR, runner_up VARCHAR) |
###question:What date did the Jazz play the Bulls at home?###answer:SELECT date FROM table_name_91 WHERE home = "jazz" AND visitor = "bulls"###context:CREATE TABLE table_name_91 (date VARCHAR, home VARCHAR, visitor VARCHAR) |
###question:On February 26, who was the leading scorer?###answer:SELECT leading_scorer FROM table_name_30 WHERE date = "february 26"###context:CREATE TABLE table_name_30 (leading_scorer VARCHAR, date VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.