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