Unnamed: 0
int64
0
78.6k
answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
translated_answer
stringlengths
12
992
73,400
SELECT SUM(mpg_us_urban) FROM table_name_61 WHERE mpg_uk_urban__cold_ = 20 AND mpg_uk_extra_urban < 37.2
What's the mpg-US urban when the mpg-UK urban is 20 and the mpg-UK extra urban is less than 37.2?
CREATE TABLE table_name_61 (mpg_us_urban INTEGER, mpg_uk_urban__cold_ VARCHAR, mpg_uk_extra_urban VARCHAR)
O que é o mpg-US urbano quando o mpg-UK urbano é 20 e o mpg-UK urbano extra é menos de 37,2?
73,401
SELECT score FROM table_name_56 WHERE assist_pass = "abby wambach" AND date = "2010-07-13"
What was the score on 2010-07-13 when Abby wambach had the assist/pass?
CREATE TABLE table_name_56 (score VARCHAR, assist_pass VARCHAR, date VARCHAR)
Qual foi a pontuação em 2010-07-13 quando Abby wambach teve o assist/pass?
73,402
SELECT location FROM table_name_3 WHERE lineup = "start" AND date = "2008-06-17"
What is the location on 2008-06-17 when the lineup was start?
CREATE TABLE table_name_3 (location VARCHAR, lineup VARCHAR, date VARCHAR)
Qual é o local em 2008-06-17 quando a programação foi iniciada?
73,403
SELECT assist_pass FROM table_name_54 WHERE date = "2008-01-16" AND score = "2-0"
What is the assist/pass on 2008-01-16 when the score was 2-0?
CREATE TABLE table_name_54 (assist_pass VARCHAR, date VARCHAR, score VARCHAR)
Qual é a assistência/passagem em 2008-01-16 quando a pontuação foi de 2-0?
73,404
SELECT result FROM table_name_98 WHERE location = "match reports"
What is the result at match reports?
CREATE TABLE table_name_98 (result VARCHAR, location VARCHAR)
Qual é o resultado nos relatórios de jogo?
73,405
SELECT points FROM table_name_24 WHERE goals_against = "222"
What's the points if the goals against were 222?
CREATE TABLE table_name_24 (points VARCHAR, goals_against VARCHAR)
Quais são os pontos se os gols contra foram 222?
73,406
SELECT points FROM table_name_95 WHERE goals_against = "260"
What are the points if the goals against were 260?
CREATE TABLE table_name_95 (points VARCHAR, goals_against VARCHAR)
Quais são os pontos se os gols contra foram 260?
73,407
SELECT games FROM table_name_72 WHERE standing = "involuntary suspension of season (hurricane rita)"
What are the games with an Involuntary suspension of Season (hurricane Rita)?
CREATE TABLE table_name_72 (games VARCHAR, standing VARCHAR)
Quais são os jogos com suspensão involuntária de Season (hirricane Rita)?
73,408
SELECT goals_for FROM table_name_44 WHERE lost = "involuntary suspension of season (hurricane rita)"
What are the goals for a lost of Involuntary suspension of Season (hurricane Rita)?
CREATE TABLE table_name_44 (goals_for VARCHAR, lost VARCHAR)
Quais são os objetivos para a perda da suspensão involuntária da temporada (hirricane Rita)?
73,409
SELECT season FROM table_name_10 WHERE games = "72" AND lost = "9"
What's the season that had a lost of 9 with 72 games?
CREATE TABLE table_name_10 (season VARCHAR, games VARCHAR, lost VARCHAR)
Qual foi a temporada que teve uma perda de 9 com 72 jogos?
73,410
SELECT format FROM table_name_42 WHERE location = "taipei"
What event did he compete in at Taipei?
CREATE TABLE table_name_42 (format VARCHAR, location VARCHAR)
Em que evento ele competiu em Taipei?
73,411
SELECT season FROM table_name_81 WHERE event_type = "grand prix" AND location = "kuala lumpur"
In what season did he compete in the Grand Prix in Kuala Lumpur?
CREATE TABLE table_name_81 (season VARCHAR, event_type VARCHAR, location VARCHAR)
Em que temporada ele competiu no Grande Prêmio em Kuala Lumpur?
73,412
SELECT position FROM table_name_82 WHERE pick < 3 AND team = "san diego"
What is the position of the player with a pick less than 3 from team san diego?
CREATE TABLE table_name_82 (position VARCHAR, pick VARCHAR, team VARCHAR)
Qual é a posição do jogador com uma escolha inferior a 3 do time san diego?
73,413
SELECT location FROM table_name_38 WHERE silver = "david mccann" AND gold = "morgan fox"
What location did david mccann receive a siver and morgan fox win the gold?
CREATE TABLE table_name_38 (location VARCHAR, silver VARCHAR, gold VARCHAR)
Que local david mccann recebeu um siver e morgan fox ganhou o ouro?
73,414
SELECT bronze FROM table_name_71 WHERE year = "2011"
Who received the bronze in 2011?
CREATE TABLE table_name_71 (bronze VARCHAR, year VARCHAR)
Quem recebeu o bronze em 2011?
73,415
SELECT silver FROM table_name_31 WHERE year = "2006"
Who received the silver in 2006?
CREATE TABLE table_name_31 (silver VARCHAR, year VARCHAR)
Quem recebeu a prata em 2006?
73,416
SELECT obese_children_and_adolescents FROM table_name_1 WHERE obesity_rank = 48
What's the count for obese children and adolescents ranked 48?
CREATE TABLE table_name_1 (obese_children_and_adolescents VARCHAR, obesity_rank VARCHAR)
Qual é a contagem de crianças e adolescentes obesos classificados 48?
73,417
SELECT SUM(obesity_rank) FROM table_name_74 WHERE obese_children_and_adolescents = "14.2%"
What's the rank when the obese children and adolescent count is 14.2%?
CREATE TABLE table_name_74 (obesity_rank INTEGER, obese_children_and_adolescents VARCHAR)
Qual é a classificação quando a contagem de crianças e adolescentes obesos é de 14,2%?
73,418
SELECT obesity_rank FROM table_name_87 WHERE overweight__incl_obese__adults = "66.8%" AND state_and_district_of_columbia = "west virginia"
What's the rank in West Virginia when the overweight adult was 66.8%?
CREATE TABLE table_name_87 (obesity_rank VARCHAR, overweight__incl_obese__adults VARCHAR, state_and_district_of_columbia VARCHAR)
Qual é a classificação em West Virginia quando o adulto com excesso de peso era 66,8%?
73,419
SELECT reserved_for___sc___st__none_ FROM table_name_27 WHERE name = "jawad"
What is reserved for Jawad?
CREATE TABLE table_name_27 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR)
O que é reservado para Jawad?
73,420
SELECT reserved_for___sc___st__none_ FROM table_name_65 WHERE constituency_number = "228"
What is reserved for the constituency of 228?
CREATE TABLE table_name_65 (reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)
O que é reservado para o eleitorado de 228?
73,421
SELECT county FROM table_name_68 WHERE ihsaa_class = "aaa" AND enrollment < 799
Which County has an IHSAA Class of aaa, and an Enrollment smaller than 799?
CREATE TABLE table_name_68 (county VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR)
Qual Condado tem uma Classe IHSAA de aaa, e uma Inscrição menor que 799?
73,422
SELECT location FROM table_name_34 WHERE mascot = "tigers"
Which Location has a Mascot of tigers?
CREATE TABLE table_name_34 (location VARCHAR, mascot VARCHAR)
Qual local tem um mascote de tigres?
73,423
SELECT MAX(overall) FROM table_name_77 WHERE executive_appointments = 28 AND background < 37
What's the most overall when the executive appointments were 28 and the background was smaller than 37?
CREATE TABLE table_name_77 (overall INTEGER, executive_appointments VARCHAR, background VARCHAR)
Qual é o mais geral quando as nomeações executivas eram 28 e o fundo era menor que 37?
73,424
SELECT record FROM table_name_77 WHERE score = "21-16"
What was the record at the game with a score of 21-16?
CREATE TABLE table_name_77 (record VARCHAR, score VARCHAR)
Qual foi o recorde no jogo com uma pontuação de 21-16?
73,425
SELECT opponent FROM table_name_91 WHERE week > 4 AND score = "42-28"
Who was the opponent at the game with a score of 42-28 after week 4?
CREATE TABLE table_name_91 (opponent VARCHAR, week VARCHAR, score VARCHAR)
Quem foi o adversário no jogo com uma pontuação de 42-28 após a semana 4?
73,426
SELECT result FROM table_name_12 WHERE opponent = "at dallas cowboys"
what is the result when the opponent is at dallas cowboys?
CREATE TABLE table_name_12 (result VARCHAR, opponent VARCHAR)
Qual é o resultado quando o oponente está em dallas cowboys?
73,427
SELECT SUM(enrollment) FROM table_name_79 WHERE year_joined = 1958 AND location = "clarksville"
what is the enrollement for the year joined 1958 in clarksville?
CREATE TABLE table_name_79 (enrollment INTEGER, year_joined VARCHAR, location VARCHAR)
Qual é a inscrição para o ano de 1958 em Clarksville?
73,428
SELECT _number___county FROM table_name_13 WHERE ihsaa_class = "aaa" AND enrollment > 611 AND mascot = "dragons"
what is the #/county that is ihsaa class aaa, has enrollment higher than 611 and the dragons is the mascot?
CREATE TABLE table_name_13 (_number___county VARCHAR, mascot VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR)
O que é o #/condado que é ihsaa classe aaa, tem inscrição superior a 611 e os dragões é o mascote?
73,429
SELECT country_of_release FROM table_name_98 WHERE year_of_release = 1977
Where was the title released in 1977?
CREATE TABLE table_name_98 (country_of_release VARCHAR, year_of_release VARCHAR)
Onde foi lançado o título em 1977?
73,430
SELECT MAX(year_of_release) FROM table_name_40 WHERE label = "mca"
What was the last year MCA had a Release?
CREATE TABLE table_name_40 (year_of_release INTEGER, label VARCHAR)
Qual foi o último ano em que a MCA teve um lançamento?
73,431
SELECT MIN(pick) FROM table_name_60 WHERE team = "buffalo bills"
What is the lowest pick for the Buffalo Bills?
CREATE TABLE table_name_60 (pick INTEGER, team VARCHAR)
Qual é a escolha mais baixa para o Buffalo Bills?
73,432
SELECT player FROM table_name_61 WHERE team = "boston patriots"
Which player played for the Boston Patriots?
CREATE TABLE table_name_61 (player VARCHAR, team VARCHAR)
Qual jogador jogou pelo Boston Patriots?
73,433
SELECT SUM(attendance) FROM table_name_10 WHERE result = "2–4" AND visitor = "brynäs if"
How much Attendance has a Result of 2–4, and a Visitor of brynäs if?
CREATE TABLE table_name_10 (attendance INTEGER, result VARCHAR, visitor VARCHAR)
Quanto de atendimento tem um resultado de 24, e um visitante de bryns se?
73,434
SELECT result FROM table_name_37 WHERE round > 17
Which Result has a Round larger than 17?
CREATE TABLE table_name_37 (result VARCHAR, round INTEGER)
Qual resultado tem uma rodada maior que 17?
73,435
SELECT MIN(electorate) FROM table_name_57 WHERE political_party = "conservative" AND constituency = "south west devon" AND "conservative" > 2 AND name = "plymstock radford"
What is the smallest electorate for the Conservative party in South West Devon constituency, with over 2 conservatives and a name of Plymstock Radford?
CREATE TABLE table_name_57 (electorate INTEGER, name VARCHAR, political_party VARCHAR, constituency VARCHAR)
Qual é o menor eleitorado para o Partido Conservador no distrito eleitoral de South West Devon, com mais de 2 conservadores e um nome de Plymstock Radford?
73,436
SELECT event FROM table_name_66 WHERE year > 2007 AND position = "88th"
What event was in a year later than 2007 and in the 88th position?
CREATE TABLE table_name_66 (event VARCHAR, year VARCHAR, position VARCHAR)
Que evento aconteceu um ano depois de 2007 e na 88a posição?
73,437
SELECT notes FROM table_name_36 WHERE year = 2005
What are the notes for 2005?
CREATE TABLE table_name_36 (notes VARCHAR, year VARCHAR)
Quais são as notas de 2005?
73,438
SELECT owner FROM table_name_78 WHERE call_sign = "cklf-fm"
Who is the owner of CKLF-FM?
CREATE TABLE table_name_78 (owner VARCHAR, call_sign VARCHAR)
Quem é o proprietário do CKLF-FM?
73,439
SELECT frequency FROM table_name_78 WHERE format = "first nations community"
What frequency is First Nations Community?
CREATE TABLE table_name_78 (frequency VARCHAR, format VARCHAR)
Qual é a frequência da Comunidade das Primeiras Nações?
73,440
SELECT format FROM table_name_84 WHERE branding = "cbc radio 2"
What format is CBC Radio 2?
CREATE TABLE table_name_84 (format VARCHAR, branding VARCHAR)
Que formato é CBC Radio 2?
73,441
SELECT owner FROM table_name_72 WHERE call_sign = "cksb-8-fm"
Who owns CKSB-8-FM?
CREATE TABLE table_name_72 (owner VARCHAR, call_sign VARCHAR)
Quem é o dono do CKSB-8-FM?
73,442
SELECT format FROM table_name_44 WHERE branding = "première chaîne"
What format is Première Chaîne?
CREATE TABLE table_name_44 (format VARCHAR, branding VARCHAR)
Que formato é Premire Chane?
73,443
SELECT MAX(year) FROM table_name_92 WHERE championship = "olympics" AND event = "men's eight" AND nation = "canada" AND result = "silver"
What year was olympics, Canada and the Men's Eight Event ended with a silver medal?
CREATE TABLE table_name_92 (year INTEGER, result VARCHAR, nation VARCHAR, championship VARCHAR, event VARCHAR)
Em que ano foram os Jogos Olímpicos, o Canadá e o Eight Event masculino terminaram com uma medalha de prata?
73,444
SELECT event FROM table_name_2 WHERE year = 2006
What event was in 2006?
CREATE TABLE table_name_2 (event VARCHAR, year VARCHAR)
O que aconteceu em 2006?
73,445
SELECT championship FROM table_name_99 WHERE nation = "usa" AND year > 1994 AND result = "5th"
What championship was in the USA after 1994, and resulted in 5th place?
CREATE TABLE table_name_99 (championship VARCHAR, result VARCHAR, nation VARCHAR, year VARCHAR)
Que campeonato foi nos EUA depois de 1994 e resultou em 5o lugar?
73,446
SELECT MIN(year) FROM table_name_65 WHERE nation = "canada" AND result = "silver" AND championship = "olympics" AND event = "men's coxless pair"
What year did Canada get a silver in the olympics in the Men's Coxless Pair event?
CREATE TABLE table_name_65 (year INTEGER, event VARCHAR, championship VARCHAR, nation VARCHAR, result VARCHAR)
Em que ano o Canadá ganhou uma medalha de prata nos Jogos Olímpicos no evento masculino Coxless Pair?
73,447
SELECT location FROM table_name_98 WHERE school = "lacrosse"
Where is the lacrosse school located?
CREATE TABLE table_name_98 (location VARCHAR, school VARCHAR)
Onde fica a escola Lacrosse?
73,448
SELECT ihsaa_class FROM table_name_32 WHERE mascot = "tigers"
Which IHSAA Class has a Mascot of tigers?
CREATE TABLE table_name_32 (ihsaa_class VARCHAR, mascot VARCHAR)
Qual classe da IHSAA tem um mascote de tigres?
73,449
SELECT location FROM table_name_62 WHERE enrollment > 543
Which Location has an Enrollment larger than 543?
CREATE TABLE table_name_62 (location VARCHAR, enrollment INTEGER)
Qual local tem uma inscrição maior que 543?
73,450
SELECT county FROM table_name_16 WHERE enrollment = 297
Which County has an Enrollment of 297?
CREATE TABLE table_name_16 (county VARCHAR, enrollment VARCHAR)
Qual município tem inscrição de 297?
73,451
SELECT school FROM table_name_52 WHERE enrollment > 264 AND county = "46 la porte"
Which School has an Enrollment larger than 264, and a County of 46 la porte?
CREATE TABLE table_name_52 (school VARCHAR, enrollment VARCHAR, county VARCHAR)
Qual escola tem uma matrícula maior que 264, e um condado de 46 la porte?
73,452
SELECT MIN(silver) FROM table_name_90 WHERE gold > 1 AND bronze > 6
What is the number of silver medals when there are more than 1 gold, and more than 6 bronze?
CREATE TABLE table_name_90 (silver INTEGER, gold VARCHAR, bronze VARCHAR)
Qual é o número de medalhas de prata quando há mais de 1 ouro e mais de 6 bronze?
73,453
SELECT MAX(total) FROM table_name_32 WHERE silver > 1 AND nation = "yugoslavia"
What is the total when the Yugoslavia number of silver won is more than 1?
CREATE TABLE table_name_32 (total INTEGER, silver VARCHAR, nation VARCHAR)
Qual é o total quando o número de prata vencida na Jugoslávia é superior a 1?
73,454
SELECT SUM(attendance) FROM table_name_16 WHERE week < 1
What is the total attendance before week 1?
CREATE TABLE table_name_16 (attendance INTEGER, week INTEGER)
Qual é a participação total antes da 1a semana?
73,455
SELECT release_date FROM table_name_81 WHERE title = "sniffles and the bookworm"
When was sniffles and the bookworm released?
CREATE TABLE table_name_81 (release_date VARCHAR, title VARCHAR)
Quando foi lançado o sniffles e o bookworm?
73,456
SELECT release_date FROM table_name_54 WHERE series = "mm" AND title = "land of the midnight fun"
When was land of the midnight fun in the mm series released?
CREATE TABLE table_name_54 (release_date VARCHAR, series VARCHAR, title VARCHAR)
Quando foi lançada a terra da diversão da meia-noite na série mm?
73,457
SELECT series FROM table_name_53 WHERE release_date = "1939-07-15" AND production_num = "8863"
Which series had a release on 1939-07-15 with the 8863 production number?
CREATE TABLE table_name_53 (series VARCHAR, release_date VARCHAR, production_num VARCHAR)
Qual série teve um lançamento em 1939-07-15 com o número de produção 8863?
73,458
SELECT director FROM table_name_2 WHERE title = "hamateur night"
Who directed hamateur night?
CREATE TABLE table_name_2 (director VARCHAR, title VARCHAR)
Quem dirigiu a noite do hamateur?
73,459
SELECT release_date FROM table_name_29 WHERE production_num = "9105"
When was Production Number 9105 released?
CREATE TABLE table_name_29 (release_date VARCHAR, production_num VARCHAR)
Quando foi lançado o número de produção 9105?
73,460
SELECT class FROM table_name_8 WHERE frequency = "90.1 fm"
What Class has a Frequency of 90.1 FM?
CREATE TABLE table_name_8 (class VARCHAR, frequency VARCHAR)
Qual classe tem uma frequência de 90,1 FM?
73,461
SELECT recnet FROM table_name_51 WHERE frequency = "91.1 fm"
What is listed for the RECNet that also has a Frequency of 91.1 FM?
CREATE TABLE table_name_51 (recnet VARCHAR, frequency VARCHAR)
O que está listado para o RECNet que também tem uma frequência de 91,1 FM?
73,462
SELECT class FROM table_name_42 WHERE identifier = "cbfx-fm-2"
What Class has the Identifier fo CBFX-FM-2?
CREATE TABLE table_name_42 (class VARCHAR, identifier VARCHAR)
Que classe tem o identificador para CBFX-FM-2?
73,463
SELECT recnet FROM table_name_51 WHERE class = "b" AND city_of_license = "rouyn-noranda"
What is the RECNet with a Class of B and the City of License of Rouyn-Noranda?
CREATE TABLE table_name_51 (recnet VARCHAR, class VARCHAR, city_of_license VARCHAR)
O que é a RECNet com uma Classe B e a Cidade de Licença de Rouyn-Noranda?
73,464
SELECT class FROM table_name_21 WHERE identifier = "cbfx-fm-6"
What Class has the Identifier of CBFX-FM-6?
CREATE TABLE table_name_21 (class VARCHAR, identifier VARCHAR)
Que classe tem o identificador de CBFX-FM-6?
73,465
SELECT frequency FROM table_name_53 WHERE identifier = "cbfx-fm-6"
What Frequency has the Identifier of CBFX-FM-6?
CREATE TABLE table_name_53 (frequency VARCHAR, identifier VARCHAR)
Que frequência tem o identificador de CBFX-FM-6?
73,466
SELECT COUNT(gold) FROM table_name_23 WHERE silver < 1 AND nation = "belgium"
What is the total number of gold with less than 1 silver, from Belgium?
CREATE TABLE table_name_23 (gold VARCHAR, silver VARCHAR, nation VARCHAR)
Qual é o número total de ouro com menos de 1 prata, da Bélgica?
73,467
SELECT AVG(lost) FROM table_name_89 WHERE points < 15 AND name = "sc forst" AND drawn < 0
Which Lost has Points smaller than 15, and a Name of sc forst, and Drawn smaller than 0?
CREATE TABLE table_name_89 (lost INTEGER, drawn VARCHAR, points VARCHAR, name VARCHAR)
Qual Lost tem Pontos menores que 15, e um Nome de sc forst, e Desenhado menor que 0?
73,468
SELECT SUM(position) FROM table_name_78 WHERE lost = 8 AND played > 14
How much Position has a Lost of 8, and a Played larger than 14?
CREATE TABLE table_name_78 (position INTEGER, lost VARCHAR, played VARCHAR)
Quanta posição tem um Lost de 8, e um Played maior que 14?
73,469
SELECT SUM(drawn) FROM table_name_80 WHERE lost > 8 AND points < 7
Which Drawn has a Lost larger than 8, and Points smaller than 7?
CREATE TABLE table_name_80 (drawn INTEGER, lost VARCHAR, points VARCHAR)
Qual deles tem um Lost maior que 8, e Pontos menores que 7?
73,470
SELECT COUNT(drawn) FROM table_name_13 WHERE name = "erc lechbruck" AND points < 17
How much Drawn has a Name of erc lechbruck, and Points smaller than 17?
CREATE TABLE table_name_13 (drawn VARCHAR, name VARCHAR, points VARCHAR)
Quanto o Drawn tem um Nome de erc lechbruck e Pontos menores que 17?
73,471
SELECT town FROM table_name_81 WHERE municipality = "molėtai district municipality" AND population__2001_ < 470 AND population_rank = 187
What town is from the molėtai district municipality and has a population rank of 187 and a population less than 470 in 2001?
CREATE TABLE table_name_81 (town VARCHAR, population_rank VARCHAR, municipality VARCHAR, population__2001_ VARCHAR)
Que cidade é do município do distrito de moltai e tem uma classificação populacional de 187 e uma população inferior a 470 em 2001?
73,472
SELECT county FROM table_name_78 WHERE population_rank = 205
What county is the town with a rank of 205 located in?
CREATE TABLE table_name_78 (county VARCHAR, population_rank VARCHAR)
Em que município é a cidade com uma classificação de 205 localizada em?
73,473
SELECT MIN(draw) FROM table_name_95 WHERE percentage = "5.02%"
What is the fewest draws for percentages of 5.02%?
CREATE TABLE table_name_95 (draw INTEGER, percentage VARCHAR)
Qual é o menor número de sorteios para percentagens de 5,02%?
73,474
SELECT position FROM table_name_28 WHERE team = "denver broncos"
What is the position of the player from the denver broncos?
CREATE TABLE table_name_28 (position VARCHAR, team VARCHAR)
Qual é a posição do jogador dos broncos denver?
73,475
SELECT AVG(pick) FROM table_name_12 WHERE team = "kansas city chiefs"
What is the average pick of the kansas city chiefs?
CREATE TABLE table_name_12 (pick INTEGER, team VARCHAR)
Qual é a escolha média dos chefes da cidade de Kansas?
73,476
SELECT pick FROM table_name_70 WHERE college = "wiley"
What is the pick of wiley college?
CREATE TABLE table_name_70 (pick VARCHAR, college VARCHAR)
Qual é a escolha da faculdade wiley?
73,477
SELECT attendance FROM table_name_53 WHERE home_team = "alfreton town"
What was the attendance for the game with alfreton town as the home team?
CREATE TABLE table_name_53 (attendance VARCHAR, home_team VARCHAR)
Qual foi o comparecimento para o jogo com a cidade de Alfreton como equipe da casa?
73,478
SELECT score FROM table_name_92 WHERE away_team = "stafford rangers"
What was the score of the game where stafford rangers was the away team?
CREATE TABLE table_name_92 (score VARCHAR, away_team VARCHAR)
Qual foi a pontuação do jogo em que o stafford rangers era o time de fora?
73,479
SELECT home_team FROM table_name_29 WHERE tie_no = "1"
Who was the home team that has a tie no of 1?
CREATE TABLE table_name_29 (home_team VARCHAR, tie_no VARCHAR)
Quem foi a equipe da casa que tem um empate no 1?
73,480
SELECT tie_no FROM table_name_28 WHERE away_team = "southport"
What is the tie no that has southport as the away team?
CREATE TABLE table_name_28 (tie_no VARCHAR, away_team VARCHAR)
Qual é o empate não que tem Southport como a equipe de fora?
73,481
SELECT attendance FROM table_name_53 WHERE home_team = "king's lynn"
What was the attendance for the game that had the king's lynn as the home team?
CREATE TABLE table_name_53 (attendance VARCHAR, home_team VARCHAR)
Qual foi o comparecimento para o jogo que teve o lynn do rei como a equipe da casa?
73,482
SELECT score FROM table_name_56 WHERE tie_no = "1"
What was the score for the game with a tie no of 1?
CREATE TABLE table_name_56 (score VARCHAR, tie_no VARCHAR)
Qual foi a pontuação para o jogo com um empate no 1?
73,483
SELECT COUNT(game) FROM table_name_53 WHERE date = "december 21"
What is the game number on December 21?
CREATE TABLE table_name_53 (game VARCHAR, date VARCHAR)
Qual é o número do jogo em 21 de dezembro?
73,484
SELECT game FROM table_name_71 WHERE record = "19-15"
What is the Game with a Record of 19-15?
CREATE TABLE table_name_71 (game VARCHAR, record VARCHAR)
O que é o jogo com um recorde de 19-15?
73,485
SELECT date FROM table_name_59 WHERE game > 31 AND opponent = "detroit"
What is the Date of the game against Detroit in game 31 or after?
CREATE TABLE table_name_59 (date VARCHAR, game VARCHAR, opponent VARCHAR)
Qual é a data do jogo contra Detroit no jogo 31 ou depois?
73,486
SELECT year_s__won FROM table_name_42 WHERE total = 289
During which years did the golfer with the total of 289 win?
CREATE TABLE table_name_42 (year_s__won VARCHAR, total VARCHAR)
Durante quais anos o golfista com o total de 289 vitórias?
73,487
SELECT to_par FROM table_name_84 WHERE finish = "t56"
What was the To par for the player who finished t56?
CREATE TABLE table_name_84 (to_par VARCHAR, finish VARCHAR)
Qual foi o par para o jogador que terminou o t56?
73,488
SELECT country FROM table_name_53 WHERE total = 294
Which county did the player with a total of 294 represent?
CREATE TABLE table_name_53 (country VARCHAR, total VARCHAR)
Qual o país que o jogador com um total de 294 representa?
73,489
SELECT MIN(total) FROM table_name_72 WHERE country = "united states" AND player = "phil mickelson"
What was the total for united states player phil mickelson?
CREATE TABLE table_name_72 (total INTEGER, country VARCHAR, player VARCHAR)
Qual foi o total para o jogador dos Estados Unidos phil mickelson?
73,490
SELECT MIN(lane) FROM table_name_52 WHERE rank < 4 AND time < 24.42
With a less than 4 rank, and a time less than 24.42 what is the smallest lane?
CREATE TABLE table_name_52 (lane INTEGER, rank VARCHAR, time VARCHAR)
Com uma classificação inferior a 4, e um tempo inferior a 24,42 qual é a menor faixa?
73,491
SELECT AVG(time) FROM table_name_8 WHERE nationality = "united states" AND lane < 5
The swimmer from the United States in a lane less than 5, had what as the average time?
CREATE TABLE table_name_8 (time INTEGER, nationality VARCHAR, lane VARCHAR)
O nadador dos Estados Unidos em uma faixa de menos de 5, tinha o que como o tempo médio?
73,492
SELECT nationality FROM table_name_3 WHERE lane < 2
What nationality is the swimmer that is in the lane that is less than 2?
CREATE TABLE table_name_3 (nationality VARCHAR, lane INTEGER)
Que nacionalidade é o nadador que está na pista que é inferior a 2?
73,493
SELECT MAX(losses) FROM table_name_15 WHERE draws < 0
Which Losses have Draws smaller than 0?
CREATE TABLE table_name_15 (losses INTEGER, draws INTEGER)
Quais perdas têm empates menores que 0?
73,494
SELECT MAX(losses) FROM table_name_28 WHERE draws > 0
Which Losses have Draws larger than 0?
CREATE TABLE table_name_28 (losses INTEGER, draws INTEGER)
Quais perdas têm empates maiores que 0?
73,495
SELECT SUM(against) FROM table_name_66 WHERE losses < 7 AND wimmera_fl = "horsham"
How much Against has Losses smaller than 7, and a Wimmera FL of horsham?
CREATE TABLE table_name_66 (against INTEGER, losses VARCHAR, wimmera_fl VARCHAR)
Quanto Contra tem Perdas menores que 7, e um Wimmera FL de horsham?
73,496
SELECT SUM(draws) FROM table_name_83 WHERE wins > 7 AND wimmera_fl = "nhill" AND losses > 8
How many Draws have Wins larger than 7, and a Wimmera FL of nhill, and Losses larger than 8?
CREATE TABLE table_name_83 (draws INTEGER, losses VARCHAR, wins VARCHAR, wimmera_fl VARCHAR)
Quantos Draws têm vitórias maiores que 7, e um Wimmera FL de nhill, e perdas maiores que 8?
73,497
SELECT outcome FROM table_name_52 WHERE score = "3-6, 2-6"
What was the outcome of the match with a score of 3-6, 2-6?
CREATE TABLE table_name_52 (outcome VARCHAR, score VARCHAR)
Qual foi o resultado do jogo com uma pontuação de 3-6, 2-6?
73,498
SELECT tournament FROM table_name_70 WHERE opponent = "magnus larsson"
What was the tournament that had byron black playing against magnus larsson?
CREATE TABLE table_name_70 (tournament VARCHAR, opponent VARCHAR)
Qual foi o torneio que teve o Byron Black jogando contra o Magnus Larsson?
73,499
SELECT tournament FROM table_name_35 WHERE score = "6-7, 4-6"
What tournament had a game with a score of 6-7, 4-6?
CREATE TABLE table_name_35 (tournament VARCHAR, score VARCHAR)
Que torneio teve um jogo com uma pontuação de 6-7, 4-6?