text
stringlengths 114
1.06k
|
---|
### question: What was the earliest year that an event held in Berlin, Germany had a 100 m hurdles event? ### answer: SELECT MIN(year) FROM table_name_98 WHERE venue = "berlin, germany" AND event = "100 m hurdles" ### context: CREATE TABLE table_name_98 (year INTEGER, venue VARCHAR, event VARCHAR) |
### question: What even was held in Valencia, Spain? ### answer: SELECT event FROM table_name_3 WHERE venue = "valencia, spain" ### context: CREATE TABLE table_name_3 (event VARCHAR, venue VARCHAR) |
### question: What is the time of the tim trophy competition where juventus was the opponent? ### answer: SELECT time FROM table_name_4 WHERE competition = "tim trophy" AND opponent = "juventus" ### context: CREATE TABLE table_name_4 (time VARCHAR, competition VARCHAR, opponent VARCHAR) |
### question: What is the competition on 15 August 2008? ### answer: SELECT competition FROM table_name_27 WHERE date = "15 august 2008" ### context: CREATE TABLE table_name_27 (competition VARCHAR, date VARCHAR) |
### question: What is the score of the friendly match competition on 24 July 2008? ### answer: SELECT score FROM table_name_3 WHERE competition = "friendly match" AND date = "24 july 2008" ### context: CREATE TABLE table_name_3 (score VARCHAR, competition VARCHAR, date VARCHAR) |
### question: What is the ground of the tim trophy competition, which had a time of 23:00 cet? ### answer: SELECT ground FROM table_name_83 WHERE competition = "tim trophy" AND time = "23:00 cet" ### context: CREATE TABLE table_name_83 (ground VARCHAR, competition VARCHAR, time VARCHAR) |
### question: What competition is at 23:00 cet? ### answer: SELECT competition FROM table_name_91 WHERE time = "23:00 cet" ### context: CREATE TABLE table_name_91 (competition VARCHAR, time VARCHAR) |
### question: What is the outcome on March 20, 1994? ### answer: SELECT outcome FROM table_name_89 WHERE date = "march 20, 1994" ### context: CREATE TABLE table_name_89 (outcome VARCHAR, date VARCHAR) |
### question: What tournament had a hard surface on February 25, 1996? ### answer: SELECT tournament FROM table_name_78 WHERE surface = "hard" AND date = "february 25, 1996" ### context: CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, date VARCHAR) |
### question: What is the score in the final with a hard surface and is against Hiromi Nagano? ### answer: SELECT score_in_the_final FROM table_name_60 WHERE surface = "hard" AND opponent_in_the_final = "hiromi nagano" ### context: CREATE TABLE table_name_60 (score_in_the_final VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR) |
### question: What is the total outcome for the clay surface on April 21, 1996? ### answer: SELECT outcome FROM table_name_91 WHERE surface = "clay" AND date = "april 21, 1996" ### context: CREATE TABLE table_name_91 (outcome VARCHAR, surface VARCHAR, date VARCHAR) |
### question: What aircraft is located at S of Avion? ### answer: SELECT aircraft FROM table_name_3 WHERE location = "s of avion" ### context: CREATE TABLE table_name_3 (aircraft VARCHAR, location VARCHAR) |
### question: What is the Unit for the Aircraft F.e.2b, located in Logeast? ### answer: SELECT SUM(unit) FROM table_name_20 WHERE aircraft = "f.e.2b" AND location = "logeast" ### context: CREATE TABLE table_name_20 (unit INTEGER, aircraft VARCHAR, location VARCHAR) |
### question: What is the name of the place that has a census ranking of 1,229 of 5,008? ### answer: SELECT official_name FROM table_name_63 WHERE census_ranking = "1,229 of 5,008" ### context: CREATE TABLE table_name_63 (official_name VARCHAR, census_ranking VARCHAR) |
### question: How large, in square kilometers, is Sackville? ### answer: SELECT area_km_2 FROM table_name_38 WHERE official_name = "sackville" ### context: CREATE TABLE table_name_38 (area_km_2 VARCHAR, official_name VARCHAR) |
### question: What is the name(s) of the place(s) with a population of less than 1,429? ### answer: SELECT official_name FROM table_name_38 WHERE population < 1 OFFSET 429 ### context: CREATE TABLE table_name_38 (official_name VARCHAR, population INTEGER) |
### question: What score has 33 as the points? ### answer: SELECT score FROM table_name_93 WHERE points = 33 ### context: CREATE TABLE table_name_93 (score VARCHAR, points VARCHAR) |
### question: What date has joe louis arena as the arena? ### answer: SELECT date FROM table_name_53 WHERE arena = "joe louis arena" ### context: CREATE TABLE table_name_53 (date VARCHAR, arena VARCHAR) |
### question: What competition was played on 2 June 1992? ### answer: SELECT competition FROM table_name_4 WHERE date = "2 june 1992" ### context: CREATE TABLE table_name_4 (competition VARCHAR, date VARCHAR) |
### question: What date was a friendly match played that ended in a 3-0 score? ### answer: SELECT date FROM table_name_74 WHERE result = "3-0" AND competition = "friendly match" ### context: CREATE TABLE table_name_74 (date VARCHAR, result VARCHAR, competition VARCHAR) |
### question: What was the score of the match played on 5 September 2001? ### answer: SELECT score FROM table_name_38 WHERE date = "5 september 2001" ### context: CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR) |
### question: In what stadium was the friendly match on 2 June 1992 played in? ### answer: SELECT venue FROM table_name_2 WHERE competition = "friendly match" AND date = "2 june 1992" ### context: CREATE TABLE table_name_2 (venue VARCHAR, competition VARCHAR, date VARCHAR) |
### question: What was the score of the 1998 FIFA World Cup qualification competition? ### answer: SELECT score FROM table_name_25 WHERE competition = "1998 fifa world cup qualification" ### context: CREATE TABLE table_name_25 (score VARCHAR, competition VARCHAR) |
### question: Name the Date has a Competition of welsh rugby union challenge trophy and a Result of 34-34? Question 1 ### answer: SELECT date FROM table_name_72 WHERE competition = "welsh rugby union challenge trophy" AND result = "34-34" ### context: CREATE TABLE table_name_72 (date VARCHAR, competition VARCHAR, result VARCHAR) |
### question: Name the Result of new zealand Nationality / Opponent? ### answer: SELECT result FROM table_name_56 WHERE nationality___opponent = "new zealand" ### context: CREATE TABLE table_name_56 (result VARCHAR, nationality___opponent VARCHAR) |
### question: Name Nationality / Opponent on 10 january 1998? ### answer: SELECT nationality___opponent FROM table_name_25 WHERE date = "10 january 1998" ### context: CREATE TABLE table_name_25 (nationality___opponent VARCHAR, date VARCHAR) |
### question: Name The Ground on 18 january 1998? ### answer: SELECT ground FROM table_name_25 WHERE date = "18 january 1998" ### context: CREATE TABLE table_name_25 (ground VARCHAR, date VARCHAR) |
### question: Name the Nationality / Opponent of the Competition of welsh rugby union challenge trophy and a Result of 38-29? ### answer: SELECT nationality___opponent FROM table_name_63 WHERE competition = "welsh rugby union challenge trophy" AND result = "38-29" ### context: CREATE TABLE table_name_63 (nationality___opponent VARCHAR, competition VARCHAR, result VARCHAR) |
### question: Name the Nationality / Opponent of rosario? ### answer: SELECT competition FROM table_name_64 WHERE nationality___opponent = "rosario" ### context: CREATE TABLE table_name_64 (competition VARCHAR, nationality___opponent VARCHAR) |
### question: What team 1 has a team 2 of universidad nacional? ### answer: SELECT team_1 FROM table_name_4 WHERE team_2 = "universidad nacional" ### context: CREATE TABLE table_name_4 (team_1 VARCHAR, team_2 VARCHAR) |
### question: What team 2 has a team 1 of harbour view? ### answer: SELECT team_2 FROM table_name_82 WHERE team_1 = "harbour view" ### context: CREATE TABLE table_name_82 (team_2 VARCHAR, team_1 VARCHAR) |
### question: What's the 2nd leg for team 2 san francisco? ### answer: SELECT 2 AS nd_leg FROM table_name_62 WHERE team_2 = "san francisco" ### context: CREATE TABLE table_name_62 (team_2 VARCHAR) |
### question: What's the 1st leg of team 1 alajuelense? ### answer: SELECT 1 AS st_leg FROM table_name_50 WHERE team_1 = "alajuelense" ### context: CREATE TABLE table_name_50 (team_1 VARCHAR) |
### question: What was the format for catalog 660-51-015? ### answer: SELECT format FROM table_name_51 WHERE catalog = "660-51-015" ### context: CREATE TABLE table_name_51 (format VARCHAR, catalog VARCHAR) |
### question: Which region had the year May 1974? ### answer: SELECT region FROM table_name_77 WHERE year = "may 1974" ### context: CREATE TABLE table_name_77 (region VARCHAR, year VARCHAR) |
### question: Which region had a year March 10, 1998? ### answer: SELECT region FROM table_name_17 WHERE year = "march 10, 1998" ### context: CREATE TABLE table_name_17 (region VARCHAR, year VARCHAR) |
### question: What is the first party for Lord John Hay earlier than 1857? ### answer: SELECT first_party FROM table_name_82 WHERE year < 1857 AND first_member = "lord john hay" ### context: CREATE TABLE table_name_82 (first_party VARCHAR, year VARCHAR, first_member VARCHAR) |
### question: Who is the second member more recently than 1790 when John Williams is the first member? ### answer: SELECT second_member FROM table_name_10 WHERE year > 1790 AND first_member = "john williams" ### context: CREATE TABLE table_name_10 (second_member VARCHAR, year VARCHAR, first_member VARCHAR) |
### question: Who is the second member ewarlier than 1804 when Tory Henry Isherwood is the first member? ### answer: SELECT second_member FROM table_name_15 WHERE first_party = "tory" AND year < 1804 AND first_member = "henry isherwood" ### context: CREATE TABLE table_name_15 (second_member VARCHAR, first_member VARCHAR, first_party VARCHAR, year VARCHAR) |
### question: Who is the second member when RT Hon. Edward Stanley is the first member? ### answer: SELECT second_member FROM table_name_14 WHERE first_member = "rt hon. edward stanley" ### context: CREATE TABLE table_name_14 (second_member VARCHAR, first_member VARCHAR) |
### question: What is the second party where the first party is Tory and the year is 1820? ### answer: SELECT second_party FROM table_name_88 WHERE first_party = "tory" AND year = 1820 ### context: CREATE TABLE table_name_88 (second_party VARCHAR, first_party VARCHAR, year VARCHAR) |
### question: Who is the player who won in 1993? ### answer: SELECT player FROM table_name_83 WHERE year_s__won = "1993" ### context: CREATE TABLE table_name_83 (player VARCHAR, year_s__won VARCHAR) |
### question: What years did the player with a t71 finish win? ### answer: SELECT year_s__won FROM table_name_68 WHERE finish = "t71" ### context: CREATE TABLE table_name_68 (year_s__won VARCHAR, finish VARCHAR) |
### question: What year did player payne stewart win? ### answer: SELECT year_s__won FROM table_name_84 WHERE player = "payne stewart" ### context: CREATE TABLE table_name_84 (year_s__won VARCHAR, player VARCHAR) |
### question: What year did the player with a t3 finish win? ### answer: SELECT year_s__won FROM table_name_84 WHERE finish = "t3" ### context: CREATE TABLE table_name_84 (year_s__won VARCHAR, finish VARCHAR) |
### question: What is the lowest total of the player with a t41 finish? ### answer: SELECT MIN(total) FROM table_name_25 WHERE finish = "t41" ### context: CREATE TABLE table_name_25 (total INTEGER, finish VARCHAR) |
### question: In what Battle was Bulgarian Commander of Gavril Radomir? ### answer: SELECT battle FROM table_name_24 WHERE bulgarian_commander = "gavril radomir" ### context: CREATE TABLE table_name_24 (battle VARCHAR, bulgarian_commander VARCHAR) |
### question: What is the Date of the Bulgarian Victory at the Battle of Arcadiopolis? ### answer: SELECT date FROM table_name_55 WHERE result = "bulgarian victory" AND battle = "battle of arcadiopolis" ### context: CREATE TABLE table_name_55 (date VARCHAR, result VARCHAR, battle VARCHAR) |
### question: What is the Bulgarian Commander in Autumn 1040 at the Battle of Thessalonica? ### answer: SELECT bulgarian_commander FROM table_name_41 WHERE battle = "battle of thessalonica" AND date = "autumn 1040" ### context: CREATE TABLE table_name_41 (bulgarian_commander VARCHAR, battle VARCHAR, date VARCHAR) |
### question: What is the Byzantine Commander with a Bulgarian Victory at the Siege of Lovech? ### answer: SELECT byzantine_commander FROM table_name_44 WHERE result = "bulgarian victory" AND battle = "siege of lovech" ### context: CREATE TABLE table_name_44 (byzantine_commander VARCHAR, result VARCHAR, battle VARCHAR) |
### question: What is the Result of the Battle of Marcellae in 756? ### answer: SELECT result FROM table_name_85 WHERE battle = "battle of marcellae" AND date = "756" ### context: CREATE TABLE table_name_85 (result VARCHAR, battle VARCHAR, date VARCHAR) |
### question: What is the date of Gavril Radomir's Bulgarian Victory? ### answer: SELECT date FROM table_name_15 WHERE result = "bulgarian victory" AND bulgarian_commander = "gavril radomir" ### context: CREATE TABLE table_name_15 (date VARCHAR, result VARCHAR, bulgarian_commander VARCHAR) |
### question: What was the wind at New York City when the rank was smaller than 6? ### answer: SELECT wind FROM table_name_18 WHERE rank < 6 AND location = "new york city" ### context: CREATE TABLE table_name_18 (wind VARCHAR, rank VARCHAR, location VARCHAR) |
### question: What was the highest rink for Kingston? ### answer: SELECT MAX(rank) FROM table_name_94 WHERE location = "kingston" ### context: CREATE TABLE table_name_94 (rank INTEGER, location VARCHAR) |
### question: What is the average first elected for the district South Carolina 2? ### answer: SELECT AVG(first_elected) FROM table_name_75 WHERE district = "south carolina 2" ### context: CREATE TABLE table_name_75 (first_elected INTEGER, district VARCHAR) |
### question: Who was the first elected for the republican party? ### answer: SELECT first_elected FROM table_name_82 WHERE party = "republican" ### context: CREATE TABLE table_name_82 (first_elected VARCHAR, party VARCHAR) |
### question: What party has the South Carolina 2 district? ### answer: SELECT party FROM table_name_91 WHERE district = "south carolina 2" ### context: CREATE TABLE table_name_91 (party VARCHAR, district VARCHAR) |
### question: What is the type for Cassano? ### answer: SELECT type FROM table_name_46 WHERE name = "cassano" ### context: CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR) |
### question: What nationality is Diogo? ### answer: SELECT nat FROM table_name_53 WHERE name = "diogo" ### context: CREATE TABLE table_name_53 (nat VARCHAR, name VARCHAR) |
### question: What is the name of the player with a winter transfer window moving from Roma? ### answer: SELECT name FROM table_name_79 WHERE transfer_window = "winter" AND moving_from = "roma" ### context: CREATE TABLE table_name_79 (name VARCHAR, transfer_window VARCHAR, moving_from VARCHAR) |
### question: What pressure is Ken? ### answer: SELECT pressure FROM table_name_80 WHERE name = "ken" ### context: CREATE TABLE table_name_80 (pressure VARCHAR, name VARCHAR) |
### question: In which round was Barbara Hawcroft the loser? ### answer: SELECT round FROM table_name_84 WHERE loser = "barbara hawcroft" ### context: CREATE TABLE table_name_84 (round VARCHAR, loser VARCHAR) |
### question: In which year is Nerida Gregory listed as the loser? ### answer: SELECT AVG(year) FROM table_name_13 WHERE loser = "nerida gregory" ### context: CREATE TABLE table_name_13 (year INTEGER, loser VARCHAR) |
### question: In which year did Misaki Doi lose the Australian Open Grand Slam? ### answer: SELECT SUM(year) FROM table_name_32 WHERE grand_slam = "australian open" AND loser = "misaki doi" ### context: CREATE TABLE table_name_32 (year INTEGER, grand_slam VARCHAR, loser VARCHAR) |
### question: Which Polish Cup has a Puchat Ligi larger than 0? ### answer: SELECT AVG(polish_cup) FROM table_name_20 WHERE puchat_ligi > 0 ### context: CREATE TABLE table_name_20 (polish_cup INTEGER, puchat_ligi INTEGER) |
### question: Which Player has a Total of 3, and an Ekstraklasa smaller than 3, and a UEFA Cup of 2? ### answer: SELECT player FROM table_name_43 WHERE total = 3 AND ekstraklasa < 3 AND uefa_cup = 2 ### context: CREATE TABLE table_name_43 (player VARCHAR, uefa_cup VARCHAR, total VARCHAR, ekstraklasa VARCHAR) |
### question: Which Puchat Ligi has a UEFA Cup smaller than 2, and a Player of takesure chinyama? ### answer: SELECT MIN(puchat_ligi) FROM table_name_64 WHERE uefa_cup < 2 AND player = "takesure chinyama" ### context: CREATE TABLE table_name_64 (puchat_ligi INTEGER, uefa_cup VARCHAR, player VARCHAR) |
### question: How much Ekstraklasa has a Total smaller than 3? ### answer: SELECT SUM(ekstraklasa) FROM table_name_98 WHERE total < 3 ### context: CREATE TABLE table_name_98 (ekstraklasa INTEGER, total INTEGER) |
### question: How much Puchat Ligi has a Total smaller than 5, and an Ekstraklasa larger than 1? ### answer: SELECT SUM(puchat_ligi) FROM table_name_46 WHERE total < 5 AND ekstraklasa > 1 ### context: CREATE TABLE table_name_46 (puchat_ligi INTEGER, total VARCHAR, ekstraklasa VARCHAR) |
### question: Which player has a to par greater than 11, with a total less than 155? ### answer: SELECT player FROM table_name_74 WHERE to_par > 11 AND total < 155 ### context: CREATE TABLE table_name_74 (player VARCHAR, to_par VARCHAR, total VARCHAR) |
### question: What country has a to par less than 13, with wayne grady as the player? ### answer: SELECT country FROM table_name_6 WHERE to_par < 13 AND player = "wayne grady" ### context: CREATE TABLE table_name_6 (country VARCHAR, to_par VARCHAR, player VARCHAR) |
### question: Which Points 1 has Drawn of 5, and a Goal Difference of +58, and a Lost larger than 4? ### answer: SELECT MAX(points_1) FROM table_name_36 WHERE drawn = 5 AND goal_difference = "+58" AND lost > 4 ### context: CREATE TABLE table_name_36 (points_1 INTEGER, lost VARCHAR, drawn VARCHAR, goal_difference VARCHAR) |
### question: Which Lost has Goals Against larger than 92? ### answer: SELECT MAX(lost) FROM table_name_13 WHERE goals_against > 92 ### context: CREATE TABLE table_name_13 (lost INTEGER, goals_against INTEGER) |
### question: Which Points 1 has a Team of atherton collieries, and a Position smaller than 8? ### answer: SELECT MAX(points_1) FROM table_name_11 WHERE team = "atherton collieries" AND position < 8 ### context: CREATE TABLE table_name_11 (points_1 INTEGER, team VARCHAR, position VARCHAR) |
### question: How much Played has a Position of 7, and a Drawn smaller than 7? ### answer: SELECT SUM(played) FROM table_name_72 WHERE position = 7 AND drawn < 7 ### context: CREATE TABLE table_name_72 (played INTEGER, position VARCHAR, drawn VARCHAR) |
### question: How much Drawn has Points 1 of 51, and a Lost larger than 5? ### answer: SELECT COUNT(drawn) FROM table_name_5 WHERE points_1 = 51 AND lost > 5 ### context: CREATE TABLE table_name_5 (drawn VARCHAR, points_1 VARCHAR, lost VARCHAR) |
### question: When was the aircraft introduced that could seat 115 people? ### answer: SELECT AVG(introduced) FROM table_name_30 WHERE seating = "115" ### context: CREATE TABLE table_name_30 (introduced INTEGER, seating VARCHAR) |
### question: What year was the aircraft retired when it was replaced by 737-300s? ### answer: SELECT retired FROM table_name_91 WHERE notes = "replaced by 737-300s" ### context: CREATE TABLE table_name_91 (retired VARCHAR, notes VARCHAR) |
### question: What aircraft was introduced in 2004 and has a retired of —? ### answer: SELECT aircraft FROM table_name_83 WHERE retired = "—" AND introduced = 2004 ### context: CREATE TABLE table_name_83 (aircraft VARCHAR, retired VARCHAR, introduced VARCHAR) |
### question: Which aircraft has 148/9 seating? ### answer: SELECT aircraft FROM table_name_88 WHERE seating = "148/9" ### context: CREATE TABLE table_name_88 (aircraft VARCHAR, seating VARCHAR) |
### question: How many people can be seated on the aircraft that was introduced in 2008 and has notes of in service? ### answer: SELECT seating FROM table_name_6 WHERE notes = "in service" AND introduced = 2008 ### context: CREATE TABLE table_name_6 (seating VARCHAR, notes VARCHAR, introduced VARCHAR) |
### question: What is the nationality of the player who was previously with the Detroit Pistons? ### answer: SELECT nationality FROM table_name_55 WHERE previous_team = "detroit pistons" ### context: CREATE TABLE table_name_55 (nationality VARCHAR, previous_team VARCHAR) |
### question: What is the career with the franchise of the f/c player with fewer than 9 years of NBA experience who previously played for the Phoenix Suns? ### answer: SELECT career_with_the_franchise FROM table_name_47 WHERE years_of_nba_experience_[a_] < 9 AND pos = "f/c" AND previous_team = "phoenix suns" ### context: CREATE TABLE table_name_47 (career_with_the_franchise VARCHAR, previous_team VARCHAR, pos VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR) |
### question: What was the tie number when Bournemouth was the home team? ### answer: SELECT tie_no FROM table_name_79 WHERE home_team = "bournemouth" ### context: CREATE TABLE table_name_79 (tie_no VARCHAR, home_team VARCHAR) |
### question: Who was the away team when the home team was Norwich City? ### answer: SELECT away_team FROM table_name_83 WHERE home_team = "norwich city" ### context: CREATE TABLE table_name_83 (away_team VARCHAR, home_team VARCHAR) |
### question: On what date was Wimbledon the home team? ### answer: SELECT date FROM table_name_81 WHERE home_team = "wimbledon" ### context: CREATE TABLE table_name_81 (date VARCHAR, home_team VARCHAR) |
### question: On what date was the away team West Ham United? ### answer: SELECT date FROM table_name_70 WHERE away_team = "west ham united" ### context: CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR) |
### question: On what date was the away team Bournemouth? ### answer: SELECT date FROM table_name_24 WHERE away_team = "bournemouth" ### context: CREATE TABLE table_name_24 (date VARCHAR, away_team VARCHAR) |
### question: What district has abhayapuri south as the name? ### answer: SELECT district FROM table_name_41 WHERE name = "abhayapuri south" ### context: CREATE TABLE table_name_41 (district VARCHAR, name VARCHAR) |
### question: Which Bronze has a Gold larger than 1, and a Silver smaller than 3, and a Rank smaller than 5? ### answer: SELECT bronze FROM table_name_69 WHERE gold > 1 AND silver < 3 AND rank < 5 ### context: CREATE TABLE table_name_69 (bronze VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR) |
### question: Which Rank has a Gold larger than 1, and a Bronze of 4, and a Silver smaller than 1? ### answer: SELECT MAX(rank) FROM table_name_90 WHERE gold > 1 AND bronze = 4 AND silver < 1 ### context: CREATE TABLE table_name_90 (rank INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR) |
### question: Which Rank has a Gold of 3, and a Bronze of 4, and a Total larger than 8? ### answer: SELECT MIN(rank) FROM table_name_91 WHERE gold = 3 AND bronze = 4 AND total > 8 ### context: CREATE TABLE table_name_91 (rank INTEGER, total VARCHAR, gold VARCHAR, bronze VARCHAR) |
### question: How much Total has a Rank smaller than 10, and a Silver larger than 3, and a Gold larger than 3? ### answer: SELECT SUM(total) FROM table_name_87 WHERE rank < 10 AND silver > 3 AND gold > 3 ### context: CREATE TABLE table_name_87 (total INTEGER, gold VARCHAR, rank VARCHAR, silver VARCHAR) |
### question: Which Total has a Rank of 9, and a Silver smaller than 2? ### answer: SELECT MAX(total) FROM table_name_37 WHERE rank = 9 AND silver < 2 ### context: CREATE TABLE table_name_37 (total INTEGER, rank VARCHAR, silver VARCHAR) |
### question: What event had Xu Zhilin competing? ### answer: SELECT event FROM table_name_21 WHERE name = "xu zhilin" ### context: CREATE TABLE table_name_21 (event VARCHAR, name VARCHAR) |
### question: What sport has Ma Yuxi in it? ### answer: SELECT sport FROM table_name_26 WHERE name = "ma yuxi" ### context: CREATE TABLE table_name_26 (sport VARCHAR, name VARCHAR) |
### question: How many years is Antonio Pompa-Baldi Italy first? ### answer: SELECT COUNT(year) FROM table_name_36 WHERE first = "antonio pompa-baldi italy" ### context: CREATE TABLE table_name_36 (year VARCHAR, first VARCHAR) |
### question: Who is fourth when Anders Martinson USA is second? ### answer: SELECT fourth FROM table_name_98 WHERE second = "anders martinson usa" ### context: CREATE TABLE table_name_98 (fourth VARCHAR, second VARCHAR) |
### question: Can you tell me the sum of Wins that has the Club of abuls smiltene, and the Goals smaller than 18? ### answer: SELECT SUM(wins) FROM table_name_47 WHERE club = "abuls smiltene" AND goals_for < 18 ### context: CREATE TABLE table_name_47 (wins INTEGER, club VARCHAR, goals_for VARCHAR) |
### question: Can you tell me the average Wins that has the Goal Difference larger than -24, and the Draws larger than 7? ### answer: SELECT AVG(wins) FROM table_name_42 WHERE goal_difference > -24 AND draws > 7 ### context: CREATE TABLE table_name_42 (wins INTEGER, goal_difference VARCHAR, draws VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.