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