question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
what is the score when the partner is florencia labat, the surface is clay, the opponents is laura golarsa ann grossman? | CREATE TABLE table_name_43 (score VARCHAR, opponents VARCHAR, partner VARCHAR, surface VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_43 WHERE partner = \"florencia labat\" AND surface = \"clay\" AND opponents = \"laura golarsa ann grossman\""
} |
who is the opponents when the surface is clay and the date is 12 july 1992? | CREATE TABLE table_name_93 (opponents VARCHAR, surface VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT opponents FROM table_name_93 WHERE surface = \"clay\" AND date = \"12 july 1992\""
} |
what is the tournament when the outcome is winner and the opponents is kerry-anne guse corina morariu? | CREATE TABLE table_name_39 (tournament VARCHAR, outcome VARCHAR, opponents VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_name_39 WHERE outcome = \"winner\" AND opponents = \"kerry-anne guse corina morariu\""
} |
what is the score when the partner is alexandra fusai? | CREATE TABLE table_name_67 (score VARCHAR, partner VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_67 WHERE partner = \"alexandra fusai\""
} |
what is the surface when the opponents are louise field nathalie herreman? | CREATE TABLE table_name_13 (surface VARCHAR, opponents VARCHAR) | {
"SQL_Query": "SELECT surface FROM table_name_13 WHERE opponents = \"louise field nathalie herreman\""
} |
what is the score when the surface is clay and the tournament is san marino? | CREATE TABLE table_name_18 (score VARCHAR, surface VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_18 WHERE surface = \"clay\" AND tournament = \"san marino\""
} |
If the manufacturer is Yamaha, and the laps driven were under 32, what's the average of all grid sizes with that criteria? | CREATE TABLE table_name_76 (grid INTEGER, laps VARCHAR, manufacturer VARCHAR) | {
"SQL_Query": "SELECT AVG(grid) FROM table_name_76 WHERE laps < 32 AND manufacturer = \"yamaha\""
} |
What's the smallest amount of laps that suzuki ran with a grid value of 8? | CREATE TABLE table_name_26 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR) | {
"SQL_Query": "SELECT MIN(laps) FROM table_name_26 WHERE manufacturer = \"suzuki\" AND grid = 8"
} |
Who were the opponents when the score of the game was 101-105 and the H/A/N was H? | CREATE TABLE table_name_68 (opponent VARCHAR, h_a_n VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_68 WHERE h_a_n = \"h\" AND score = \"101-105\""
} |
What is the score of the game against the baltimore bullets on March 14? | CREATE TABLE table_name_4 (score VARCHAR, opponent VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_4 WHERE opponent = \"baltimore bullets\" AND date = \"march 14\""
} |
Who were the opponents when the score was 122-135 and the H/A/N was H? | CREATE TABLE table_name_87 (opponent VARCHAR, h_a_n VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_87 WHERE h_a_n = \"h\" AND score = \"122-135\""
} |
What is the score of the game where the record was 22-55? | CREATE TABLE table_name_7 (score VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_7 WHERE record = \"22-55\""
} |
What is the average games that were drawn with ERSC Amberg as name and less than 14 points? | CREATE TABLE table_name_32 (drawn INTEGER, name VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT AVG(drawn) FROM table_name_32 WHERE name = \"ersc amberg\" AND points < 14"
} |
What is the total position with a drawn of 0 and greater than 22 points and a greater than 14 played? | CREATE TABLE table_name_17 (position VARCHAR, played VARCHAR, drawn VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT COUNT(position) FROM table_name_17 WHERE drawn = 0 AND points > 22 AND played > 14"
} |
Which Song has a Weeks at number one larger than 2, and an Issue date(s) of 17 april - 8 may? | CREATE TABLE table_name_52 (song VARCHAR, weeks_at_number_one VARCHAR, issue_date_s_ VARCHAR) | {
"SQL_Query": "SELECT song FROM table_name_52 WHERE weeks_at_number_one > 2 AND issue_date_s_ = \"17 april - 8 may\""
} |
Which Song has an Issue date(s) of 29 may - 26 june? | CREATE TABLE table_name_17 (song VARCHAR, issue_date_s_ VARCHAR) | {
"SQL_Query": "SELECT song FROM table_name_17 WHERE issue_date_s_ = \"29 may - 26 june\""
} |
what is the report when the home team is new zealand breakers? | CREATE TABLE table_name_31 (report VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT report FROM table_name_31 WHERE home_team = \"new zealand breakers\""
} |
what is the score when the home team is cairns taipans? | CREATE TABLE table_name_23 (score VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_23 WHERE home_team = \"cairns taipans\""
} |
Who is the away team when the venue is cairns convention centre? | CREATE TABLE table_name_45 (away_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_name_45 WHERE venue = \"cairns convention centre\""
} |
who is the away team when the home team is sydney spirit? | CREATE TABLE table_name_28 (away_team VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_name_28 WHERE home_team = \"sydney spirit\""
} |
what is the box score when the home team is melbourne tigers? | CREATE TABLE table_name_3 (Box VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT Box AS score FROM table_name_3 WHERE home_team = \"melbourne tigers\""
} |
who is the away team on 21 september? | CREATE TABLE table_name_42 (away_team VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_name_42 WHERE date = \"21 september\""
} |
When Ernie Els placed t2, what was his To par? | CREATE TABLE table_name_3 (to_par VARCHAR, place VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT to_par FROM table_name_3 WHERE place = \"t2\" AND player = \"ernie els\""
} |
Where did Jay Haas place? | CREATE TABLE table_name_62 (place VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_62 WHERE player = \"jay haas\""
} |
Where did Jim Furyk place? | CREATE TABLE table_name_16 (place VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_16 WHERE player = \"jim furyk\""
} |
What was Jim Furyk's score? | CREATE TABLE table_name_23 (score VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_23 WHERE player = \"jim furyk\""
} |
What was the score for the To par of +1? | CREATE TABLE table_name_53 (score VARCHAR, to_par VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_53 WHERE to_par = \"+1\""
} |
Who placed in t5 and scored 73-69-68=210? | CREATE TABLE table_name_76 (player VARCHAR, place VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT player FROM table_name_76 WHERE place = \"t5\" AND score = 73 - 69 - 68 = 210"
} |
Who was the opponent when the record was 11-6-2? | CREATE TABLE table_name_25 (opponent VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_25 WHERE record = \"11-6-2\""
} |
What is the home team of the match with an attendance greater than 202? | CREATE TABLE table_name_22 (home_team VARCHAR, attendance INTEGER) | {
"SQL_Query": "SELECT home_team FROM table_name_22 WHERE attendance > 202"
} |
What is the average attendance of the match with arlesey town as the home team? | CREATE TABLE table_name_68 (attendance INTEGER, home_team VARCHAR) | {
"SQL_Query": "SELECT AVG(attendance) FROM table_name_68 WHERE home_team = \"arlesey town\""
} |
What was the score of the game against the phoenix suns? | CREATE TABLE table_name_18 (score VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_18 WHERE opponent = \"phoenix suns\""
} |
What was the opponent of the game when the reocrd was 0-12? | CREATE TABLE table_name_94 (opponent VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_94 WHERE record = \"0-12\""
} |
How many years had a location at Forest Hills and a score of 6–3, 6–3 for John McEnroe? | CREATE TABLE table_name_42 (year VARCHAR, score VARCHAR, location VARCHAR, runner_up VARCHAR) | {
"SQL_Query": "SELECT COUNT(year) FROM table_name_42 WHERE location = \"forest hills\" AND runner_up = \"john mcenroe\" AND score = \"6–3, 6–3\""
} |
Who is the champion with a score of 7–6, 6–0? | CREATE TABLE table_name_47 (champion VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT champion FROM table_name_47 WHERE score = \"7–6, 6–0\""
} |
Who is the runner-up in 1990? | CREATE TABLE table_name_59 (runner_up VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT runner_up FROM table_name_59 WHERE year = 1990"
} |
When was the earliest year that Guillermo Vilas was the runner-up? | CREATE TABLE table_name_9 (year INTEGER, runner_up VARCHAR) | {
"SQL_Query": "SELECT MIN(year) FROM table_name_9 WHERE runner_up = \"guillermo vilas\""
} |
What source has a race winner of ben adriaenssen / ben van den bogaart, and the gp winner of ben adriaenssen / ben van den bogaart, for the date of 1 april? | CREATE TABLE table_name_8 (source VARCHAR, date VARCHAR, race_winners VARCHAR, gp_winner VARCHAR) | {
"SQL_Query": "SELECT source FROM table_name_8 WHERE race_winners = \"ben adriaenssen / ben van den bogaart\" AND gp_winner = \"ben adriaenssen / ben van den bogaart\" AND date = \"1 april\""
} |
What is the GP winner for the Race winners valentin giraud / nicolas musset, and a place genk? | CREATE TABLE table_name_2 (gp_winner VARCHAR, race_winners VARCHAR, place VARCHAR) | {
"SQL_Query": "SELECT gp_winner FROM table_name_2 WHERE race_winners = \"valentin giraud / nicolas musset\" AND place = \"genk\""
} |
What is the date for a source of result and a place of iffendic? | CREATE TABLE table_name_60 (date VARCHAR, source VARCHAR, place VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_60 WHERE source = \"result\" AND place = \"iffendic\""
} |
What date has a place of chernivtsi, and a race winners of etienne bax / kaspars stupelis? What | CREATE TABLE table_name_29 (date VARCHAR, place VARCHAR, race_winners VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_29 WHERE place = \"chernivtsi\" AND race_winners = \"etienne bax / kaspars stupelis\""
} |
What is the GP winner with a place of genk, with race winners ben adriaenssen / ben van den bogaart? | CREATE TABLE table_name_30 (gp_winner VARCHAR, place VARCHAR, race_winners VARCHAR) | {
"SQL_Query": "SELECT gp_winner FROM table_name_30 WHERE place = \"genk\" AND race_winners = \"ben adriaenssen / ben van den bogaart\""
} |
What is the race winners for the date of 23 june? | CREATE TABLE table_name_77 (race_winners VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT race_winners FROM table_name_77 WHERE date = \"23 june\""
} |
What date was the opponent in the final Barbara Paulus? | CREATE TABLE table_name_23 (date VARCHAR, opponent_in_the_final VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_23 WHERE opponent_in_the_final = \"barbara paulus\""
} |
What was the surface that Laura Golarsa and her opponent played on in the final? | CREATE TABLE table_name_67 (surface VARCHAR, opponent_in_the_final VARCHAR) | {
"SQL_Query": "SELECT surface FROM table_name_67 WHERE opponent_in_the_final = \"laura golarsa\""
} |
What was the score for the opponent against Katerina Maleeva in the final? | CREATE TABLE table_name_83 (score VARCHAR, opponent_in_the_final VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_83 WHERE opponent_in_the_final = \"katerina maleeva\""
} |
What's the name that had a moving to Anorthosis Famagusta and a transfer window of winter? | CREATE TABLE table_name_6 (name VARCHAR, transfer_window VARCHAR, moving_to VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_6 WHERE transfer_window = \"winter\" AND moving_to = \"anorthosis famagusta\""
} |
What is the Nat with a mutual consent loan return and has a free transfer fee? | CREATE TABLE table_name_12 (nat VARCHAR, transfer_fee VARCHAR, type VARCHAR) | {
"SQL_Query": "SELECT nat FROM table_name_12 WHERE transfer_fee = \"free\" AND type = \"mutual consent loan return\""
} |
What is the type of POR? | CREATE TABLE table_name_10 (type VARCHAR, nat VARCHAR) | {
"SQL_Query": "SELECT type FROM table_name_10 WHERE nat = \"por\""
} |
What's the name of MKD? | CREATE TABLE table_name_20 (name VARCHAR, nat VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_20 WHERE nat = \"mkd\""
} |
What is the sum of the attendance on November 24? | CREATE TABLE table_name_58 (attendance INTEGER, date VARCHAR) | {
"SQL_Query": "SELECT SUM(attendance) FROM table_name_58 WHERE date = \"november 24\""
} |
What team did the Flames play against when 526 people attended the game? | CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_11 WHERE attendance = 526"
} |
Rick Plant was the man of the match in what competition? | CREATE TABLE table_name_39 (competition VARCHAR, man_of_the_match VARCHAR) | {
"SQL_Query": "SELECT competition FROM table_name_39 WHERE man_of_the_match = \"rick plant\""
} |
Who did the Flames play against when Stephen Lee was the man of the match? | CREATE TABLE table_name_6 (opponent VARCHAR, man_of_the_match VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_6 WHERE man_of_the_match = \"stephen lee\""
} |
How many people attended the game when the game was won 4-2? | CREATE TABLE table_name_44 (attendance VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT COUNT(attendance) FROM table_name_44 WHERE result = \"won 4-2\""
} |
For what competition was the venue away the n/a the man of the match? | CREATE TABLE table_name_62 (competition VARCHAR, venue VARCHAR, man_of_the_match VARCHAR) | {
"SQL_Query": "SELECT competition FROM table_name_62 WHERE venue = \"away\" AND man_of_the_match = \"n/a\""
} |
What is BP's lowest sales? | CREATE TABLE table_name_73 (sales__billion_ INTEGER, company VARCHAR) | {
"SQL_Query": "SELECT MIN(sales__billion_) AS $_ FROM table_name_73 WHERE company = \"bp\""
} |
What was the final game result that was played on December 2? | CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_80 WHERE date = \"december 2\""
} |
What week was the game played at Rich Stadium? | CREATE TABLE table_name_94 (week VARCHAR, game_site VARCHAR) | {
"SQL_Query": "SELECT week FROM table_name_94 WHERE game_site = \"rich stadium\""
} |
What is the sum of FA Cup goals when there are 19 league goals? | CREATE TABLE table_name_5 (fa_cup_goals INTEGER, league_goals VARCHAR) | {
"SQL_Query": "SELECT SUM(fa_cup_goals) FROM table_name_5 WHERE league_goals = \"19\""
} |
Which club has 16 league goals for a total of 20? | CREATE TABLE table_name_2 (club VARCHAR, league_goals VARCHAR, total VARCHAR) | {
"SQL_Query": "SELECT club FROM table_name_2 WHERE league_goals = \"16\" AND total = 20"
} |
How many League Cup goals correspond to 3 FA Cup Goals and a total over 15 for Chesterfield? | CREATE TABLE table_name_29 (league_cup_goals VARCHAR, club VARCHAR, total VARCHAR, fa_cup_goals VARCHAR) | {
"SQL_Query": "SELECT league_cup_goals FROM table_name_29 WHERE total > 15 AND fa_cup_goals = 3 AND club = \"chesterfield\""
} |
What was the result of the april 6, 2002 game against the greensboro prowlers? | CREATE TABLE table_name_89 (result VARCHAR, opponent VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_89 WHERE opponent = \"greensboro prowlers\" AND date = \"april 6, 2002\""
} |
Which Location has Floors smaller than 27, and a Building of 150 elgin? | CREATE TABLE table_name_71 (location VARCHAR, floors VARCHAR, building VARCHAR) | {
"SQL_Query": "SELECT location FROM table_name_71 WHERE floors < 27 AND building = \"150 elgin\""
} |
Which Status has a Building of the rhombus? | CREATE TABLE table_name_25 (status VARCHAR, building VARCHAR) | {
"SQL_Query": "SELECT status FROM table_name_25 WHERE building = \"the rhombus\""
} |
How many floors are in little Italy? | CREATE TABLE table_name_42 (floors VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT COUNT(floors) FROM table_name_42 WHERE location = \"little italy\""
} |
What is Country, when Class is "15 meters", and when Qualifying Grand Prix is "Soaring Grand Prix Of United Kingdom"? | CREATE TABLE table_name_43 (country VARCHAR, class VARCHAR, qualifying_grand_prix VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_43 WHERE class = \"15 meters\" AND qualifying_grand_prix = \"soaring grand prix of united kingdom\""
} |
What is Class, when Dates is "22 April - 3 May 2009"? | CREATE TABLE table_name_20 (class VARCHAR, dates VARCHAR) | {
"SQL_Query": "SELECT class FROM table_name_20 WHERE dates = \"22 april - 3 may 2009\""
} |
What is Country, when Class is "club"? | CREATE TABLE table_name_51 (country VARCHAR, class VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_51 WHERE class = \"club\""
} |
What is Country, when Place is "Torino"? | CREATE TABLE table_name_72 (country VARCHAR, place VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_72 WHERE place = \"torino\""
} |
WHAT IS THE AVERAGE SQUAD NUMBER WITH MARTIN SMITH, AND LEAGUE GOALS LESS THAN 17? | CREATE TABLE table_name_8 (squad_no INTEGER, name VARCHAR, league_goals VARCHAR) | {
"SQL_Query": "SELECT AVG(squad_no) FROM table_name_8 WHERE name = \"martin smith\" AND league_goals < 17"
} |
What is No. 5, when No. 9 is Michael, and when Region (Year) is New Hampshire (2010)? | CREATE TABLE table_name_16 (no_5 VARCHAR, no_9 VARCHAR, region__year_ VARCHAR) | {
"SQL_Query": "SELECT no_5 FROM table_name_16 WHERE no_9 = \"michael\" AND region__year_ = \"new hampshire (2010)\""
} |
What is Region (Year), when No. 7 is William, and when No. 2 is Alexander? | CREATE TABLE table_name_51 (region__year_ VARCHAR, no_7 VARCHAR, no_2 VARCHAR) | {
"SQL_Query": "SELECT region__year_ FROM table_name_51 WHERE no_7 = \"william\" AND no_2 = \"alexander\""
} |
What is No. 10, when No. 1 is Noah, and when No. 9 is Carter? | CREATE TABLE table_name_45 (no_10 VARCHAR, no_1 VARCHAR, no_9 VARCHAR) | {
"SQL_Query": "SELECT no_10 FROM table_name_45 WHERE no_1 = \"noah\" AND no_9 = \"carter\""
} |
What is No. 7, when Region (Year) is Arizona (2010)? | CREATE TABLE table_name_85 (no_7 VARCHAR, region__year_ VARCHAR) | {
"SQL_Query": "SELECT no_7 FROM table_name_85 WHERE region__year_ = \"arizona (2010)\""
} |
What is No. 1, when Region (Year) is Mississippi (2010)? | CREATE TABLE table_name_25 (no_1 VARCHAR, region__year_ VARCHAR) | {
"SQL_Query": "SELECT no_1 FROM table_name_25 WHERE region__year_ = \"mississippi (2010)\""
} |
What is No. 8, when No. 10 is Hunter? | CREATE TABLE table_name_76 (no_8 VARCHAR, no_10 VARCHAR) | {
"SQL_Query": "SELECT no_8 FROM table_name_76 WHERE no_10 = \"hunter\""
} |
How much did Larry Nelson win? | CREATE TABLE table_name_73 (money___$__ VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT money___$__ FROM table_name_73 WHERE player = \"larry nelson\""
} |
What is Tournament, when Date is "Sep 12, 1976"? | CREATE TABLE table_name_96 (tournament VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_name_96 WHERE date = \"sep 12, 1976\""
} |
What is Tournament, when Date is "Sep 25, 1977"? | CREATE TABLE table_name_61 (tournament VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_name_61 WHERE date = \"sep 25, 1977\""
} |
What is Margin of Victory, when Tournament is "Women's Kemper Open"? | CREATE TABLE table_name_93 (margin_of_victory VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT margin_of_victory FROM table_name_93 WHERE tournament = \"women's kemper open\""
} |
What is the No. 8 of the person with a No. 4 of Noah? | CREATE TABLE table_name_32 (no_8 VARCHAR, no_4 VARCHAR) | {
"SQL_Query": "SELECT no_8 FROM table_name_32 WHERE no_4 = \"noah\""
} |
What is the No. 8 of the person with a No. 4 of Matthew and a No. 7 of Anthony? | CREATE TABLE table_name_29 (no_8 VARCHAR, no_4 VARCHAR, no_7 VARCHAR) | {
"SQL_Query": "SELECT no_8 FROM table_name_29 WHERE no_4 = \"matthew\" AND no_7 = \"anthony\""
} |
What is the No. 1 of the person with a No. 2 of John? | CREATE TABLE table_name_26 (no_1 VARCHAR, no_2 VARCHAR) | {
"SQL_Query": "SELECT no_1 FROM table_name_26 WHERE no_2 = \"john\""
} |
What is the No. 6 of the person with a No. 10 of Joshua and a No. 8 of Andrew? | CREATE TABLE table_name_56 (no_6 VARCHAR, no_10 VARCHAR, no_8 VARCHAR) | {
"SQL_Query": "SELECT no_6 FROM table_name_56 WHERE no_10 = \"joshua\" AND no_8 = \"andrew\""
} |
What is the No. 2 of the person with a No. 5 of Ethan and NO. 7 of Jackson? | CREATE TABLE table_name_98 (no_2 VARCHAR, no_4 VARCHAR, no_7 VARCHAR) | {
"SQL_Query": "SELECT no_2 FROM table_name_98 WHERE no_4 = \"ethan\" AND no_7 = \"jackson\""
} |
What is the No 1 from the Maryland (2008) Region (year)? | CREATE TABLE table_name_27 (no_1 VARCHAR, region__year_ VARCHAR) | {
"SQL_Query": "SELECT no_1 FROM table_name_27 WHERE region__year_ = \"maryland (2008)\""
} |
What was the draw of Maggie Toal? | CREATE TABLE table_name_74 (draw INTEGER, artist VARCHAR) | {
"SQL_Query": "SELECT AVG(draw) FROM table_name_74 WHERE artist = \"maggie toal\""
} |
What is the highest point total that placed 3rd and has a draw larger than 5? | CREATE TABLE table_name_84 (points INTEGER, place VARCHAR, draw VARCHAR) | {
"SQL_Query": "SELECT MAX(points) FROM table_name_84 WHERE place = \"3rd\" AND draw > 5"
} |
Who won the gold in 1958? | CREATE TABLE table_name_18 (gold VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT gold FROM table_name_18 WHERE year = \"1958\""
} |
What was the host country when the silver was [[|]] (2) and bronze is czechoslovakia (3)? | CREATE TABLE table_name_42 (host_country___countries VARCHAR, silver VARCHAR, bronze VARCHAR) | {
"SQL_Query": "SELECT host_country___countries FROM table_name_42 WHERE silver = \"[[|]] (2)\" AND bronze = \"czechoslovakia (3)\""
} |
Who was the host country in 2007? | CREATE TABLE table_name_3 (host_country___countries VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT host_country___countries FROM table_name_3 WHERE year = \"2007\""
} |
Who was the host country when bronze is [[|]] (1) and host city is Krynica? | CREATE TABLE table_name_45 (host_country___countries VARCHAR, bronze VARCHAR, host_city___cities VARCHAR) | {
"SQL_Query": "SELECT host_country___countries FROM table_name_45 WHERE bronze = \"[[|]] (1)\" AND host_city___cities = \"krynica\""
} |
What is the result for Boston's road team in game 4? | CREATE TABLE table_name_73 (result VARCHAR, road_team VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_73 WHERE road_team = \"boston\" AND game = \"game 4\""
} |
Which road team has a result of 117-114? | CREATE TABLE table_name_61 (road_team VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT road_team FROM table_name_61 WHERE result = \"117-114\""
} |
What is the road team playing against Boston on April 16? | CREATE TABLE table_name_94 (road_team VARCHAR, home_team VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT road_team FROM table_name_94 WHERE home_team = \"boston\" AND date = \"april 16\""
} |
Which home team is on April 21? | CREATE TABLE table_name_64 (home_team VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_64 WHERE date = \"april 21\""
} |
Which game has a result of 113-106? | CREATE TABLE table_name_29 (game VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT game FROM table_name_29 WHERE result = \"113-106\""
} |
Which home team played against Los Angeles in game 1? | CREATE TABLE table_name_26 (home_team VARCHAR, road_team VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_26 WHERE road_team = \"los angeles\" AND game = \"game 1\""
} |
What percentage of other candidates did the county which voted 52.1% for Kerry vote for? | CREATE TABLE table_name_69 (others_number INTEGER, kerry_percentage VARCHAR) | {
"SQL_Query": "SELECT MAX(others_number) FROM table_name_69 WHERE kerry_percentage = \"52.1%\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.