Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
26,000
<question>: Who was the Opponent on November 27, 2005? <context>: CREATE TABLE table_name_32 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_32 WHERE date = "november 27, 2005"
26,001
<question>: What is the Week with a Date of Bye? <context>: CREATE TABLE table_name_87 (week VARCHAR, date VARCHAR)
SELECT COUNT(week) FROM table_name_87 WHERE date = "bye"
26,002
<question>: Which Rank has a Bronze of 1, and a Nation of lithuania? <context>: CREATE TABLE table_name_89 (rank VARCHAR, bronze VARCHAR, nation VARCHAR)
SELECT rank FROM table_name_89 WHERE bronze = 1 AND nation = "lithuania"
26,003
<question>: How much Silver has a Rank of 1, and a Bronze smaller than 3? <context>: CREATE TABLE table_name_29 (silver INTEGER, rank VARCHAR, bronze VARCHAR)
SELECT SUM(silver) FROM table_name_29 WHERE rank = "1" AND bronze < 3
26,004
<question>: Which Bronze has a Gold of 2, and a Nation of slovakia, and a Total larger than 2? <context>: CREATE TABLE table_name_53 (bronze INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR)
SELECT MAX(bronze) FROM table_name_53 WHERE gold = 2 AND nation = "slovakia" AND total > 2
26,005
<question>: How much Bronze has a Gold larger than 1, and a Silver smaller than 3, and a Nation of germany, and a Total larger than 11? <context>: CREATE TABLE table_name_54 (bronze VARCHAR, total VARCHAR, nation VARCHAR, gold VARCHAR, silver VARCHAR)
SELECT COUNT(bronze) FROM table_name_54 WHERE gold > 1 AND silver < 3 AND nation = "germany" AND total > 11
26,006
<question>: What's the total of the position of 1? <context>: CREATE TABLE table_name_91 (total INTEGER, position INTEGER)
SELECT SUM(total) FROM table_name_91 WHERE position < 1
26,007
<question>: What's the position that has a total less than 66.5m, a compulsory of 30.9 and voluntary less than 33.7? <context>: CREATE TABLE table_name_72 (position INTEGER, voluntary VARCHAR, total VARCHAR, compulsory VARCHAR)
SELECT MIN(position) FROM table_name_72 WHERE total < 66.5 AND compulsory = 30.9 AND voluntary < 33.7
26,008
<question>: What's the total compulsory when the total is more than 69.2 and the voluntary is 38.7? <context>: CREATE TABLE table_name_42 (compulsory VARCHAR, voluntary VARCHAR, total VARCHAR)
SELECT COUNT(compulsory) FROM table_name_42 WHERE voluntary = 38.7 AND total > 69.2
26,009
<question>: What date was Wet Hare, directed by Robert McKimson, released? <context>: CREATE TABLE table_name_61 (release_date VARCHAR, director VARCHAR, title VARCHAR)
SELECT release_date FROM table_name_61 WHERE director = "robert mckimson" AND title = "wet hare"
26,010
<question>: What is the title of the film with production number 1553, directed by Friz Freleng? <context>: CREATE TABLE table_name_10 (title VARCHAR, director VARCHAR, production_number VARCHAR)
SELECT title FROM table_name_10 WHERE director = "friz freleng" AND production_number = 1553
26,011
<question>: What is Crows' Feat's production number? <context>: CREATE TABLE table_name_49 (production_number VARCHAR, title VARCHAR)
SELECT production_number FROM table_name_49 WHERE title = "crows' feat"
26,012
<question>: What is the safari value with a 2.4% opera and 29.9% internet explorer? <context>: CREATE TABLE table_name_7 (safari VARCHAR, opera VARCHAR, internet_explorer VARCHAR)
SELECT safari FROM table_name_7 WHERE opera = "2.4%" AND internet_explorer = "29.9%"
26,013
<question>: What is the firefox value with a 1.9% safari? <context>: CREATE TABLE table_name_97 (firefox VARCHAR, safari VARCHAR)
SELECT firefox FROM table_name_97 WHERE safari = "1.9%"
26,014
<question>: What is the firefox value with a 1.8% opera on 30 July 2007? <context>: CREATE TABLE table_name_22 (firefox VARCHAR, opera VARCHAR, date VARCHAR)
SELECT firefox FROM table_name_22 WHERE opera = "1.8%" AND date = "30 july 2007"
26,015
<question>: What is the date when internet explorer was 62.2% <context>: CREATE TABLE table_name_17 (date VARCHAR, internet_explorer VARCHAR)
SELECT date FROM table_name_17 WHERE internet_explorer = "62.2%"
26,016
<question>: What is the firefox value with a 22.0% internet explorer? <context>: CREATE TABLE table_name_56 (firefox VARCHAR, internet_explorer VARCHAR)
SELECT firefox FROM table_name_56 WHERE internet_explorer = "22.0%"
26,017
<question>: What is the safari value with a 28.0% internet explorer? <context>: CREATE TABLE table_name_70 (safari VARCHAR, internet_explorer VARCHAR)
SELECT safari FROM table_name_70 WHERE internet_explorer = "28.0%"
26,018
<question>: Which catalog value has a region of world? <context>: CREATE TABLE table_name_34 (catalog VARCHAR, region VARCHAR)
SELECT catalog FROM table_name_34 WHERE region = "world"
26,019
<question>: Which formats have a region of Europe and Catalog value of WEBB185? <context>: CREATE TABLE table_name_28 (format_s_ VARCHAR, region VARCHAR, catalog VARCHAR)
SELECT format_s_ FROM table_name_28 WHERE region = "europe" AND catalog = "webb185"
26,020
<question>: Which region is associated with the catalog value of 512335? <context>: CREATE TABLE table_name_57 (region VARCHAR, catalog VARCHAR)
SELECT region FROM table_name_57 WHERE catalog = "512335"
26,021
<question>: What are the formats associated with the Atlantic Records label, catalog number 512336? <context>: CREATE TABLE table_name_15 (format_s_ VARCHAR, label VARCHAR, catalog VARCHAR)
SELECT format_s_ FROM table_name_15 WHERE label = "atlantic records" AND catalog = "512336"
26,022
<question>: Which date was associated with the release in Europe on the Wichita Recordings label? <context>: CREATE TABLE table_name_5 (date VARCHAR, region VARCHAR, label VARCHAR)
SELECT date FROM table_name_5 WHERE region = "europe" AND label = "wichita recordings"
26,023
<question>: What is the lowest year that has edmonton, canada as the venue with a weight class (kg) greater than 100? <context>: CREATE TABLE table_name_11 (year INTEGER, venue VARCHAR, weight_class__kg_ VARCHAR)
SELECT MIN(year) FROM table_name_11 WHERE venue = "edmonton, canada" AND weight_class__kg_ > 100
26,024
<question>: What is the lowest weight class (kg) that has sofia, bulgaria as the venue? <context>: CREATE TABLE table_name_73 (weight_class__kg_ INTEGER, venue VARCHAR)
SELECT MIN(weight_class__kg_) FROM table_name_73 WHERE venue = "sofia, bulgaria"
26,025
<question>: What is the highest year that has fila world championships as the event, with toledo, united states as the venue, and a weight class (kg) less than 97? <context>: CREATE TABLE table_name_37 (year INTEGER, weight_class__kg_ VARCHAR, event VARCHAR, venue VARCHAR)
SELECT MAX(year) FROM table_name_37 WHERE event = "fila world championships" AND venue = "toledo, united states" AND weight_class__kg_ < 97
26,026
<question>: What is the Airport with the ICAO fo KSEA? <context>: CREATE TABLE table_name_10 (airport VARCHAR, icao VARCHAR)
SELECT airport FROM table_name_10 WHERE icao = "ksea"
26,027
<question>: What is the IcAO of Frankfurt? <context>: CREATE TABLE table_name_91 (icao VARCHAR, city VARCHAR)
SELECT icao FROM table_name_91 WHERE city = "frankfurt"
26,028
<question>: What is the Airport with a ICAO of EDDH? <context>: CREATE TABLE table_name_87 (airport VARCHAR, icao VARCHAR)
SELECT airport FROM table_name_87 WHERE icao = "eddh"
26,029
<question>: What Airport's IATA is SEA? <context>: CREATE TABLE table_name_56 (airport VARCHAR, iata VARCHAR)
SELECT airport FROM table_name_56 WHERE iata = "sea"
26,030
<question>: What is the City with an IATA of MUC? <context>: CREATE TABLE table_name_51 (city VARCHAR, iata VARCHAR)
SELECT city FROM table_name_51 WHERE iata = "muc"
26,031
<question>: What is the IATA OF Akureyri? <context>: CREATE TABLE table_name_30 (iata VARCHAR, city VARCHAR)
SELECT iata FROM table_name_30 WHERE city = "akureyri"
26,032
<question>: How tall is the Mountain of jbel ghat? <context>: CREATE TABLE table_name_11 (height__m_ VARCHAR, mountain VARCHAR)
SELECT COUNT(height__m_) FROM table_name_11 WHERE mountain = "jbel ghat"
26,033
<question>: Which Country has a Prominence (m) smaller than 1540, and a Height (m) smaller than 3530, and a Range of virunga mountains, and a Mountain of nyiragongo? <context>: CREATE TABLE table_name_12 (country VARCHAR, mountain VARCHAR, range VARCHAR, prominence__m_ VARCHAR, height__m_ VARCHAR)
SELECT country FROM table_name_12 WHERE prominence__m_ < 1540 AND height__m_ < 3530 AND range = "virunga mountains" AND mountain = "nyiragongo"
26,034
<question>: Which Country has a Height (m) larger than 4100, and a Range of arsi mountains, and a Mountain of bada? <context>: CREATE TABLE table_name_15 (country VARCHAR, mountain VARCHAR, height__m_ VARCHAR, range VARCHAR)
SELECT country FROM table_name_15 WHERE height__m_ > 4100 AND range = "arsi mountains" AND mountain = "bada"
26,035
<question>: Which Percentage has a Draw of 6? <context>: CREATE TABLE table_name_9 (percentage VARCHAR, draw VARCHAR)
SELECT percentage FROM table_name_9 WHERE draw = 6
26,036
<question>: Which team had a rank under 4 with a time of 1:14.04.88? <context>: CREATE TABLE table_name_69 (team VARCHAR, rank VARCHAR, time VARCHAR)
SELECT team FROM table_name_69 WHERE rank < 4 AND time = "1:14.04.88"
26,037
<question>: What was the speed for the rider with a time of 1:14.15.64? <context>: CREATE TABLE table_name_52 (speed VARCHAR, time VARCHAR)
SELECT speed FROM table_name_52 WHERE time = "1:14.15.64"
26,038
<question>: Which College/junior/club team has a Round of 2? <context>: CREATE TABLE table_name_11 (college_junior_club_team VARCHAR, round VARCHAR)
SELECT college_junior_club_team FROM table_name_11 WHERE round = 2
26,039
<question>: Which Round has a Player of dan chicoine, and a Pick larger than 23? <context>: CREATE TABLE table_name_65 (round INTEGER, player VARCHAR, pick VARCHAR)
SELECT AVG(round) FROM table_name_65 WHERE player = "dan chicoine" AND pick > 23
26,040
<question>: What is the production number of From Hare to Heir? <context>: CREATE TABLE table_name_33 (production_number INTEGER, title VARCHAR)
SELECT SUM(production_number) FROM table_name_33 WHERE title = "from hare to heir"
26,041
<question>: What is the Series number of the episode with a production number of 1547? <context>: CREATE TABLE table_name_34 (series VARCHAR, production_number VARCHAR)
SELECT series FROM table_name_34 WHERE production_number = 1547
26,042
<question>: What is the production number for the episode directed by Robert McKimson named Mice Follies? <context>: CREATE TABLE table_name_24 (production_number VARCHAR, director VARCHAR, title VARCHAR)
SELECT COUNT(production_number) FROM table_name_24 WHERE director = "robert mckimson" AND title = "mice follies"
26,043
<question>: Name the Result of the Lineup of start, an Assist/pass of carli lloyd, and an Competition of 2011 fifa women’s world cup – group stage? <context>: CREATE TABLE table_name_63 (result VARCHAR, competition VARCHAR, lineup VARCHAR, assist_pass VARCHAR)
SELECT result FROM table_name_63 WHERE lineup = "start" AND assist_pass = "carli lloyd" AND competition = "2011 fifa women’s world cup – group stage"
26,044
<question>: Name the Lineup that has an Assist/pass of carli lloyd,a Competition of 2010 concacaf world cup qualifying – group stage? <context>: CREATE TABLE table_name_43 (lineup VARCHAR, assist_pass VARCHAR, competition VARCHAR)
SELECT lineup FROM table_name_43 WHERE assist_pass = "carli lloyd" AND competition = "2010 concacaf world cup qualifying – group stage"
26,045
<question>: Which Assist/pass has a Score of 1-0,a Competition of 2010 concacaf world cup qualifying – group stage? <context>: CREATE TABLE table_name_14 (assist_pass VARCHAR, score VARCHAR, competition VARCHAR)
SELECT assist_pass FROM table_name_14 WHERE score = "1-0" AND competition = "2010 concacaf world cup qualifying – group stage"
26,046
<question>: where has a Score of match reports? <context>: CREATE TABLE table_name_49 (location VARCHAR, score VARCHAR)
SELECT location FROM table_name_49 WHERE score = "match reports"
26,047
<question>: which Score has a Location of mex cancun? <context>: CREATE TABLE table_name_31 (score VARCHAR, location VARCHAR)
SELECT score FROM table_name_31 WHERE location = "mex cancun"
26,048
<question>: which Score has a Competition of match reports? <context>: CREATE TABLE table_name_81 (score VARCHAR, competition VARCHAR)
SELECT score FROM table_name_81 WHERE competition = "match reports"
26,049
<question>: Which tie number had an away team of Arsenal? <context>: CREATE TABLE table_name_5 (tie_no VARCHAR, away_team VARCHAR)
SELECT tie_no FROM table_name_5 WHERE away_team = "arsenal"
26,050
<question>: What was the score for the tie that had Shrewsbury Town as home team? <context>: CREATE TABLE table_name_87 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_87 WHERE home_team = "shrewsbury town"
26,051
<question>: What was the score of the tie that had Tottenham Hotspur as the home team? <context>: CREATE TABLE table_name_35 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_35 WHERE home_team = "tottenham hotspur"
26,052
<question>: On which apparatus did Kanayeva have a final score smaller than 75.5 and a qualifying score smaller than 18.7? <context>: CREATE TABLE table_name_68 (apparatus VARCHAR, score_final VARCHAR, score_qualifying VARCHAR)
SELECT apparatus FROM table_name_68 WHERE score_final < 75.5 AND score_qualifying < 18.7
26,053
<question>: What was her lowest final score with a qualifying score of 74.075? <context>: CREATE TABLE table_name_7 (score_final INTEGER, score_qualifying VARCHAR)
SELECT MIN(score_final) FROM table_name_7 WHERE score_qualifying = 74.075
26,054
<question>: What was her final score on the ribbon apparatus? <context>: CREATE TABLE table_name_86 (score_final VARCHAR, apparatus VARCHAR)
SELECT score_final FROM table_name_86 WHERE apparatus = "ribbon"
26,055
<question>: What are the notes for the athlete from South Africa? <context>: CREATE TABLE table_name_15 (notes VARCHAR, country VARCHAR)
SELECT notes FROM table_name_15 WHERE country = "south africa"
26,056
<question>: What are the notes for the athlete from Spain? <context>: CREATE TABLE table_name_29 (notes VARCHAR, country VARCHAR)
SELECT notes FROM table_name_29 WHERE country = "spain"
26,057
<question>: What is Calvin Mokoto's average rank? <context>: CREATE TABLE table_name_1 (rank INTEGER, athletes VARCHAR)
SELECT AVG(rank) FROM table_name_1 WHERE athletes = "calvin mokoto"
26,058
<question>: What is Andreas Kiligkaridis rank? <context>: CREATE TABLE table_name_80 (rank VARCHAR, athletes VARCHAR)
SELECT rank FROM table_name_80 WHERE athletes = "andreas kiligkaridis"
26,059
<question>: Which tournament had a partner of Erika Sema? <context>: CREATE TABLE table_name_9 (tournament VARCHAR, partner VARCHAR)
SELECT tournament FROM table_name_9 WHERE partner = "erika sema"
26,060
<question>: Who were the opponents in the final at Noida? <context>: CREATE TABLE table_name_15 (opponents_in_the_final VARCHAR, tournament VARCHAR)
SELECT opponents_in_the_final FROM table_name_15 WHERE tournament = "noida"
26,061
<question>: What school is in 36 Jackson? <context>: CREATE TABLE table_name_41 (school VARCHAR, county VARCHAR)
SELECT school FROM table_name_41 WHERE county = "36 jackson"
26,062
<question>: What's the IHSAA Class Football if the panthers are the mascot? <context>: CREATE TABLE table_name_7 (ihsaa_class VARCHAR, mascot VARCHAR)
SELECT ihsaa_class AS Football FROM table_name_7 WHERE mascot = "panthers"
26,063
<question>: What's the IHSAA Class when the school is Seymour? <context>: CREATE TABLE table_name_39 (ihsaa_class VARCHAR, school VARCHAR)
SELECT ihsaa_class FROM table_name_39 WHERE school = "seymour"
26,064
<question>: What team has a position of running back and picked after 2? <context>: CREATE TABLE table_name_44 (team VARCHAR, pick VARCHAR, position VARCHAR)
SELECT team FROM table_name_44 WHERE pick > 2 AND position = "running back"
26,065
<question>: Which player is from the College of Alabama? <context>: CREATE TABLE table_name_97 (player VARCHAR, college VARCHAR)
SELECT player FROM table_name_97 WHERE college = "alabama"
26,066
<question>: Which player is from Ohio State College? <context>: CREATE TABLE table_name_55 (player VARCHAR, college VARCHAR)
SELECT player FROM table_name_55 WHERE college = "ohio state"
26,067
<question>: The New York Jets picked someone from what college? <context>: CREATE TABLE table_name_43 (college VARCHAR, team VARCHAR)
SELECT college FROM table_name_43 WHERE team = "new york jets"
26,068
<question>: What is the highest pick for the position of defensive end? <context>: CREATE TABLE table_name_15 (pick INTEGER, position VARCHAR)
SELECT MAX(pick) FROM table_name_15 WHERE position = "defensive end"
26,069
<question>: What is the fewest number of silver medals won by Canada with fewer than 3 total medals? <context>: CREATE TABLE table_name_87 (silver INTEGER, nation VARCHAR, total VARCHAR)
SELECT MIN(silver) FROM table_name_87 WHERE nation = "canada" AND total < 3
26,070
<question>: What is the sum of wins for Port Fairy with under 1510 against? <context>: CREATE TABLE table_name_2 (wins INTEGER, club VARCHAR, against VARCHAR)
SELECT SUM(wins) FROM table_name_2 WHERE club = "port fairy" AND against < 1510
26,071
<question>: What is the total number of Against values for clubs with more than 2 wins, 5 losses, and 0 draws? <context>: CREATE TABLE table_name_4 (against VARCHAR, draws VARCHAR, wins VARCHAR, losses VARCHAR)
SELECT COUNT(against) FROM table_name_4 WHERE wins > 2 AND losses = 5 AND draws < 0
26,072
<question>: What is the average number of draws for losses over 8 and Against values under 1344? <context>: CREATE TABLE table_name_9 (draws INTEGER, losses VARCHAR, against VARCHAR)
SELECT AVG(draws) FROM table_name_9 WHERE losses > 8 AND against < 1344
26,073
<question>: What is the sum of losses for Against values over 1510? <context>: CREATE TABLE table_name_70 (losses INTEGER, against INTEGER)
SELECT SUM(losses) FROM table_name_70 WHERE against > 1510
26,074
<question>: Which Genre has a Game of tony hawk's pro skater 2? <context>: CREATE TABLE table_name_12 (genre VARCHAR, game VARCHAR)
SELECT genre FROM table_name_12 WHERE game = "tony hawk's pro skater 2"
26,075
<question>: Which Genre has a Game of donkey kong country? <context>: CREATE TABLE table_name_81 (genre VARCHAR, game VARCHAR)
SELECT genre FROM table_name_81 WHERE game = "donkey kong country"
26,076
<question>: Which Genre has a Year larger than 1999, and a Game of tony hawk's pro skater 2? <context>: CREATE TABLE table_name_90 (genre VARCHAR, year VARCHAR, game VARCHAR)
SELECT genre FROM table_name_90 WHERE year > 1999 AND game = "tony hawk's pro skater 2"
26,077
<question>: How much Time has a Reaction of 0.155, and an Athlete of kristof beyens, and a Rank smaller than 3? <context>: CREATE TABLE table_name_15 (time VARCHAR, rank VARCHAR, react VARCHAR, athlete VARCHAR)
SELECT COUNT(time) FROM table_name_15 WHERE react = 0.155 AND athlete = "kristof beyens" AND rank < 3
26,078
<question>: Which Lane has a Time larger than 20.5, and a Nationality of trinidad and tobago? <context>: CREATE TABLE table_name_83 (lane INTEGER, time VARCHAR, nationality VARCHAR)
SELECT AVG(lane) FROM table_name_83 WHERE time > 20.5 AND nationality = "trinidad and tobago"
26,079
<question>: What is the Location of the Moulin Bertrand Mill? <context>: CREATE TABLE table_name_23 (location VARCHAR, name_of_mill VARCHAR)
SELECT location FROM table_name_23 WHERE name_of_mill = "moulin bertrand"
26,080
<question>: What is year Built of the Moulin de Momalle Mill? <context>: CREATE TABLE table_name_16 (built INTEGER, name_of_mill VARCHAR)
SELECT MAX(built) FROM table_name_16 WHERE name_of_mill = "moulin de momalle"
26,081
<question>: What is the Name of the Grondzeiler Mill? <context>: CREATE TABLE table_name_24 (name_of_mill VARCHAR, type VARCHAR)
SELECT name_of_mill FROM table_name_24 WHERE type = "grondzeiler"
26,082
<question>: What's the total population when there are 5.7% Asian American and fewer than 126,965 Asian American Population? <context>: CREATE TABLE table_name_88 (total_population__2010_ INTEGER, _percentage_asian_american VARCHAR, asian_american_population__2010_ VARCHAR)
SELECT MIN(total_population__2010_) FROM table_name_88 WHERE _percentage_asian_american = 5.7 AND asian_american_population__2010_ < 126 OFFSET 965
26,083
<question>: Who was their opponent in game 4? <context>: CREATE TABLE table_name_77 (opponent VARCHAR, game VARCHAR)
SELECT opponent FROM table_name_77 WHERE game = "4"
26,084
<question>: On what date was game 3? <context>: CREATE TABLE table_name_84 (date VARCHAR, game VARCHAR)
SELECT date FROM table_name_84 WHERE game = "3"
26,085
<question>: What is the railway number of t 4 ii class? <context>: CREATE TABLE table_name_68 (railway_number_s_ VARCHAR, class VARCHAR)
SELECT railway_number_s_ FROM table_name_68 WHERE class = "t 4 ii"
26,086
<question>: What year was the b n2t axle arrangement, which has a quantity of 31, manufactured? <context>: CREATE TABLE table_name_74 (year_s__of_manufacture VARCHAR, quantity VARCHAR, axle_arrangement___uic__ VARCHAR)
SELECT year_s__of_manufacture FROM table_name_74 WHERE quantity = 31 AND axle_arrangement___uic__ = "b n2t"
26,087
<question>: What is the time in a heat smaller than 5, in Lane 5, for Vietnam? <context>: CREATE TABLE table_name_88 (time VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR)
SELECT time FROM table_name_88 WHERE heat < 5 AND lane = 5 AND nationality = "vietnam"
26,088
<question>: What is the smallest lane number of Xue Ruipeng? <context>: CREATE TABLE table_name_53 (lane INTEGER, name VARCHAR)
SELECT MIN(lane) FROM table_name_53 WHERE name = "xue ruipeng"
26,089
<question>: What is the Rank of the Rowers with FA as Notes? <context>: CREATE TABLE table_name_29 (rank INTEGER, notes VARCHAR)
SELECT AVG(rank) FROM table_name_29 WHERE notes = "fa"
26,090
<question>: Which away team that had a tie of 7? <context>: CREATE TABLE table_name_27 (away_team VARCHAR, tie_no VARCHAR)
SELECT away_team FROM table_name_27 WHERE tie_no = "7"
26,091
<question>: What was the attendance for the away team Solihull Moors? <context>: CREATE TABLE table_name_10 (attendance VARCHAR, away_team VARCHAR)
SELECT attendance FROM table_name_10 WHERE away_team = "solihull moors"
26,092
<question>: Which home team had the away team Southport? <context>: CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_9 WHERE away_team = "southport"
26,093
<question>: What home team had 2 ties? <context>: CREATE TABLE table_name_86 (home_team VARCHAR, tie_no VARCHAR)
SELECT home_team FROM table_name_86 WHERE tie_no = "2"
26,094
<question>: What was the score when there were 7 ties? <context>: CREATE TABLE table_name_36 (score VARCHAR, tie_no VARCHAR)
SELECT score FROM table_name_36 WHERE tie_no = "7"
26,095
<question>: What is the total when the nation is brazil (bra) and bronze is more than 2? <context>: CREATE TABLE table_name_38 (total INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT SUM(total) FROM table_name_38 WHERE nation = "brazil (bra)" AND bronze > 2
26,096
<question>: what is the least total when the nation is canada (can) and bronze is less than 0? <context>: CREATE TABLE table_name_78 (total INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT MIN(total) FROM table_name_78 WHERE nation = "canada (can)" AND bronze < 0
26,097
<question>: what is bronze when the rank is 3 and the total is more than 2? <context>: CREATE TABLE table_name_24 (bronze INTEGER, rank VARCHAR, total VARCHAR)
SELECT SUM(bronze) FROM table_name_24 WHERE rank = "3" AND total > 2
26,098
<question>: What is the most bronze can be when silver is larger than 2, and the nation is germany, and gold is more than 8? <context>: CREATE TABLE table_name_81 (bronze INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR)
SELECT MAX(bronze) FROM table_name_81 WHERE silver > 2 AND nation = "germany" AND gold > 8
26,099
<question>: What is the total number for a total when the nation is netherlands and silver is larger than 0? <context>: CREATE TABLE table_name_12 (total VARCHAR, nation VARCHAR, silver VARCHAR)
SELECT COUNT(total) FROM table_name_12 WHERE nation = "netherlands" AND silver > 0