Unnamed: 0
int64
0
78.6k
answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
translated_answer
stringlengths
12
992
78,400
SELECT stadium FROM table_name_41 WHERE date = "november 29"
What is the Stadium held on november 29?
CREATE TABLE table_name_41 (stadium VARCHAR, date VARCHAR)
O que é o Estádio no dia 29 de novembro?
78,401
SELECT visiting_team FROM table_name_99 WHERE date = "december 20"
Who is the Visiting team on december 20?
CREATE TABLE table_name_99 (visiting_team VARCHAR, date VARCHAR)
Quem é a equipe visitante no dia 20 de dezembro?
78,402
SELECT stadium FROM table_name_44 WHERE visiting_team = "pittsburgh steelers"
Which Stadium has a Visiting team of pittsburgh steelers?
CREATE TABLE table_name_44 (stadium VARCHAR, visiting_team VARCHAR)
Qual estádio tem uma equipe visitante de aços pittsburgh?
78,403
SELECT host_team FROM table_name_61 WHERE visiting_team = "chicago bears"
Who is the Host team that has a chicago bears as a visiting team?
CREATE TABLE table_name_61 (host_team VARCHAR, visiting_team VARCHAR)
Quem é a equipe anfitriã que tem um chicago ursos como uma equipe visitante?
78,404
SELECT final_score FROM table_name_48 WHERE date = "november 22"
What is the Final score on november 22?
CREATE TABLE table_name_48 (final_score VARCHAR, date VARCHAR)
Qual é a pontuação final em 22 de novembro?
78,405
SELECT host_team FROM table_name_71 WHERE visiting_team = "indianapolis colts"
What is the Host team that has indianapolis colts as a Visiting team?
CREATE TABLE table_name_71 (host_team VARCHAR, visiting_team VARCHAR)
Qual é a equipe anfitriã que tem indianapolis colts como uma equipe Visitante?
78,406
SELECT winners FROM table_name_34 WHERE runners_up = "np cooper av cooke"
Who won when np cooper av cooke was runner up?
CREATE TABLE table_name_34 (winners VARCHAR, runners_up VARCHAR)
Quem ganhou quando o Cooper Av Cooke foi vice-campeão?
78,407
SELECT record FROM table_name_35 WHERE time = "1:44"
What was the record of the match that had a time of 1:44?
CREATE TABLE table_name_35 (record VARCHAR, time VARCHAR)
Qual foi o recorde do jogo que teve um tempo de 1:44?
78,408
SELECT opponent FROM table_name_54 WHERE event = "gcm – d.o.g. 4"
Who was the opponent at GCM – D.O.G. 4?
CREATE TABLE table_name_54 (opponent VARCHAR, event VARCHAR)
Quem foi o adversário no GCM – D.O.G. 4?
78,409
SELECT location FROM table_name_48 WHERE round < 2 AND opponent = "hikaru sato"
What was the location of the match that ended before round 2, against Hikaru Sato?
CREATE TABLE table_name_48 (location VARCHAR, round VARCHAR, opponent VARCHAR)
Qual foi a localização do jogo que terminou antes da rodada 2, contra Hikaru Sato?
78,410
SELECT company_or_product_name FROM table_name_25 WHERE money_requested__£_ = "75,000" AND entrepreneur_s_ = "geoff and colette bell"
What was the Company or Product name where Entrepreneurs Geoff and Colette Bell requested £75,000?
CREATE TABLE table_name_25 (company_or_product_name VARCHAR, money_requested__£_ VARCHAR, entrepreneur_s_ VARCHAR)
Qual era o nome da empresa ou produto onde os empresários Geoff e Colette Bell pediram 75.000?
78,411
SELECT investing_dragon_s_ FROM table_name_82 WHERE episode = "episode 9" AND entrepreneur_s_ = "ashley sayed"
Which Investing Dragon(s) belong to Episode 9 with the Entrepreneur Ashley Sayed?
CREATE TABLE table_name_82 (investing_dragon_s_ VARCHAR, episode VARCHAR, entrepreneur_s_ VARCHAR)
Qual o(s) Dragão(s) de Investimento que pertence(m) ao Episódio 9 com o Empreendedor Ashley Sayed?
78,412
SELECT episode FROM table_name_99 WHERE entrepreneur_s_ = "luke booth and christopher eves"
What Episode did Entrepreneur(s) Luke Booth and Christopher Eves take part?
CREATE TABLE table_name_99 (episode VARCHAR, entrepreneur_s_ VARCHAR)
Que episódio o Empreendedor(s) Luke Booth e Christopher Eves participaram?
78,413
SELECT company_or_product_name FROM table_name_17 WHERE episode = "episode 11" AND money_requested__£_ = "70,000"
Which Company or Product name requested £70,000 on Episode 11?
CREATE TABLE table_name_17 (company_or_product_name VARCHAR, episode VARCHAR, money_requested__£_ VARCHAR)
Qual empresa ou nome do produto solicitou 70.000 no episódio 11?
78,414
SELECT MIN(height) FROM table_name_52 WHERE player = "stephen arigbabu"
What is stephen arigbabu's height?
CREATE TABLE table_name_52 (height INTEGER, player VARCHAR)
Qual é a altura de Stephen Arigbabu?
78,415
SELECT MAX(attendance) FROM table_name_12 WHERE visitor = "los angeles"
For all games with los angeles as visitor, what is the highest attendance of all?
CREATE TABLE table_name_12 (attendance INTEGER, visitor VARCHAR)
Para todos os jogos com los angeles como visitante, qual é o maior comparecimento de todos?
78,416
SELECT AVG(attendance) FROM table_name_1 WHERE home = "calgary"
For all games with calgary as home, what is the average number of attendees?
CREATE TABLE table_name_1 (attendance INTEGER, home VARCHAR)
Para todos os jogos com calgary como casa, qual é o número médio de participantes?
78,417
SELECT no5 FROM table_name_29 WHERE no1 = "lena claudisabel" AND no2 = "lena sylvie"
Who is no. 5 when Lena Claudisabel is no. 1 and Lena Sylvie is no. 2?
CREATE TABLE table_name_29 (no5 VARCHAR, no1 VARCHAR, no2 VARCHAR)
Quem é o número 5 quando Lena Claudisabel é o número 1 e Lena Sylvie é o número 2?
78,418
SELECT no3 FROM table_name_62 WHERE no1 = "claudio sylvie"
Who is no.3 when Claudio Sylvie is no.1?
CREATE TABLE table_name_62 (no3 VARCHAR, no1 VARCHAR)
Quem é o número 3 quando Claudio Sylvie é o número 1?
78,419
SELECT score FROM table_name_77 WHERE record = "18-20"
What was the score of the game when the record was 18-20?
CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR)
Qual foi a pontuação do jogo quando o recorde era de 18-20?
78,420
SELECT partner FROM table_name_7 WHERE opponents_in_the_final = "flavio cipolla simone vagnozzi"
Who was the Partner for Flavio Cipolla Simone Vagnozzi Opponents in the final?
CREATE TABLE table_name_7 (partner VARCHAR, opponents_in_the_final VARCHAR)
Quem foi o parceiro de Flavio Cipolla Simone Vagnozzi Oponentes na final?
78,421
SELECT opponents_in_the_final FROM table_name_62 WHERE surface = "carpet (i)"
Who were the Opponents in the final that played on a carpet (i) Surface?
CREATE TABLE table_name_62 (opponents_in_the_final VARCHAR, surface VARCHAR)
Quem foram os oponentes na final que jogou em um tapete (i) Surface?
78,422
SELECT score_in_the_final FROM table_name_70 WHERE surface = "clay" AND tournament = "dortmund"
Played on Clay Surface, what was the Score of the Dortmund Tournament?
CREATE TABLE table_name_70 (score_in_the_final VARCHAR, surface VARCHAR, tournament VARCHAR)
Jogado no Clay Surface, qual foi a pontuação do torneio do Dortmund?
78,423
SELECT opponents_in_the_final FROM table_name_38 WHERE partner = "frederik nielsen"
Who is Partner Frederik Nielsen's Opponents in the final?
CREATE TABLE table_name_38 (opponents_in_the_final VARCHAR, partner VARCHAR)
Quem são os oponentes do parceiro Frederik Nielsen na final?
78,424
SELECT score_in_the_final FROM table_name_48 WHERE partner = "tomas behrend"
What is Partner Tomas Behrend's Score in the final?
CREATE TABLE table_name_48 (score_in_the_final VARCHAR, partner VARCHAR)
Qual é a pontuação do parceiro Tomas Behrend na final?
78,425
SELECT country FROM table_name_67 WHERE player = "larry mize"
What Country does Larry Mize play for?
CREATE TABLE table_name_67 (country VARCHAR, player VARCHAR)
Para que país joga Larry Mize?
78,426
SELECT MAX(total) FROM table_name_20 WHERE year_s__won = "1976"
What is the winning total from 1976?
CREATE TABLE table_name_20 (total INTEGER, year_s__won VARCHAR)
Qual é o total de vitórias de 1976?
78,427
SELECT MAX(year) FROM table_name_42 WHERE owner = "michael e. pegram"
What year was owner Michael E. Pegram's last win?
CREATE TABLE table_name_42 (year INTEGER, owner VARCHAR)
Em que ano foi a última vitória do proprietário Michael E. Pegram?
78,428
SELECT trainer FROM table_name_94 WHERE owner = "cherry valley farm"
Who is the trainer for Cherry Valley Farm?
CREATE TABLE table_name_94 (trainer VARCHAR, owner VARCHAR)
Quem é o treinador de Cherry Valley Farm?
78,429
SELECT owner FROM table_name_75 WHERE year > 2009 AND winner = "blueeyesintherein"
Who owned winner Blueeyesintherein after 2009?
CREATE TABLE table_name_75 (owner VARCHAR, year VARCHAR, winner VARCHAR)
Quem é o dono do vencedor Blueeyesintherein depois de 2009?
78,430
SELECT opponent FROM table_name_8 WHERE record = "33-15"
Who was the Blue Jays' opponent when their record was 33-15?
CREATE TABLE table_name_8 (opponent VARCHAR, record VARCHAR)
Quem era o adversário dos Blue Jays quando seu recorde era de 33-15?
78,431
SELECT loss FROM table_name_3 WHERE record = "36-20"
Who did the Blue Jays lose to when their record was 36-20?
CREATE TABLE table_name_3 (loss VARCHAR, record VARCHAR)
Para quem os Blue Jays perderam quando o recorde era de 36-20?
78,432
SELECT rank FROM table_name_3 WHERE qual = "141.471"
What is the rank of the qual 141.471?
CREATE TABLE table_name_3 (rank VARCHAR, qual VARCHAR)
Qual é a classificação do qual 141.471?
78,433
SELECT start FROM table_name_18 WHERE laps = 55
What is the start of lap 55?
CREATE TABLE table_name_18 (start VARCHAR, laps VARCHAR)
Qual é o início da volta 55?
78,434
SELECT rank FROM table_name_63 WHERE year = "1956"
What is rank of the year 1956?
CREATE TABLE table_name_63 (rank VARCHAR, year VARCHAR)
O que é o ranking do ano de 1956?
78,435
SELECT laps FROM table_name_78 WHERE rank = "13"
What is the lap number for the rank of 13?
CREATE TABLE table_name_78 (laps VARCHAR, rank VARCHAR)
Qual é o número da volta para o posto de 13?
78,436
SELECT rank FROM table_name_33 WHERE year = "1961"
What is the rank for 1961?
CREATE TABLE table_name_33 (rank VARCHAR, year VARCHAR)
Qual é a classificação para 1961?
78,437
SELECT SUM(laps) FROM table_name_60 WHERE finish = "24"
What is the sum of the lap with a finish of 24?
CREATE TABLE table_name_60 (laps INTEGER, finish VARCHAR)
Qual é a soma da volta com um final de 24?
78,438
SELECT band FROM table_name_17 WHERE album_or_song = "self versus self - immersion"
Which band plays Self Versus Self - Immersion?
CREATE TABLE table_name_17 (band VARCHAR, album_or_song VARCHAR)
Qual banda toca Self Versus Self - Immersion?
78,439
SELECT event FROM table_name_11 WHERE method = "submission (rear naked choke)" AND record = "9-4"
What Event used submission (rear naked choke) with 9-4?
CREATE TABLE table_name_11 (event VARCHAR, method VARCHAR, record VARCHAR)
Que Evento usou submissão (rear nu choke) com 9-4?
78,440
SELECT event FROM table_name_41 WHERE opponent = "donald ouimet"
What event was Donald Ouimet involved?
CREATE TABLE table_name_41 (event VARCHAR, opponent VARCHAR)
Qual foi o evento em que Donald Ouimet esteve envolvido?
78,441
SELECT event FROM table_name_37 WHERE position = "3rd" AND year = 2010
What event did she finish 3rd in 2010?
CREATE TABLE table_name_37 (event VARCHAR, position VARCHAR, year VARCHAR)
Que evento ela terminou em 3o em 2010?
78,442
SELECT AVG(year) FROM table_name_95 WHERE venue = "tampere, finland"
What year did she compete in tampere, finland?
CREATE TABLE table_name_95 (year INTEGER, venue VARCHAR)
Em que ano ela competiu em adulteração, Finland?
78,443
SELECT place FROM table_name_77 WHERE score > 66 AND player = "ben hogan"
Ben Hogan with a score larger than 66 had a place listed of what?
CREATE TABLE table_name_77 (place VARCHAR, score VARCHAR, player VARCHAR)
Ben Hogan com uma pontuação superior a 66 tinha um lugar listado de quê?
78,444
SELECT player FROM table_name_27 WHERE score = 70
With a score of 70, this player's name is listed as what?
CREATE TABLE table_name_27 (player VARCHAR, score VARCHAR)
Com uma pontuação de 70, o nome deste jogador está listado como o quê?
78,445
SELECT to_par FROM table_name_69 WHERE score < 71 AND place = "t6"
With a score smaller than 71 along with a place of t6, what is the To par score?
CREATE TABLE table_name_69 (to_par VARCHAR, score VARCHAR, place VARCHAR)
Com uma pontuação menor que 71, juntamente com um lugar de t6, o que é a pontuação To par?
78,446
SELECT hanyu_pinyin FROM table_name_98 WHERE gdp_2011__billion_yuan_ > 688.02 AND regional_population_2010_ = "8,700,400"
Which Hanyu Pinyin has a GDP in 2011 larger than 688.02 billion yuan and a regional population of 8,700,400 in 2010?
CREATE TABLE table_name_98 (hanyu_pinyin VARCHAR, gdp_2011__billion_yuan_ VARCHAR, regional_population_2010_ VARCHAR)
Qual país tem um PIB em 2011 maior que 688,02 bilhões de yuans e uma população regional de 8.700.400 em 2010?
78,447
SELECT hanzi FROM table_name_92 WHERE regional_population_2010_ = "4,591,972"
Which Hanzi has a Regional Population of 4,591,972 in 2010?
CREATE TABLE table_name_92 (hanzi VARCHAR, regional_population_2010_ VARCHAR)
Qual o país que tem uma população regional de 4.791.972 em 2010?
78,448
SELECT name FROM table_name_19 WHERE rank < 5 AND time < 55.62 AND lane < 5 AND nationality = "netherlands"
What is the Name of the person from the Netherlands in a Lane lower than 5, with a Rank better than 5, and a time of less than 55.62?
CREATE TABLE table_name_19 (name VARCHAR, nationality VARCHAR, lane VARCHAR, rank VARCHAR, time VARCHAR)
Qual é o nome da pessoa da Holanda em uma faixa inferior a 5, com um Rank melhor que 5, e um tempo inferior a 55,62?
78,449
SELECT MAX(rank) FROM table_name_59 WHERE name = "karen pickering" AND time < 55.71
What is the highest Rank of Karen Pickering when she had a time of less than 55.71?
CREATE TABLE table_name_59 (rank INTEGER, name VARCHAR, time VARCHAR)
Qual é o maior Rank de Karen Pickering quando ela teve um tempo de menos de 55,71?
78,450
SELECT MAX(lane) FROM table_name_68 WHERE time > 55.94 AND rank > 8
What is the highest Lane number of a person with a time of 55.94 with a Rank that's bigger than 8?
CREATE TABLE table_name_68 (lane INTEGER, time VARCHAR, rank VARCHAR)
Qual é o maior número de faixa de uma pessoa com um tempo de 55,94 com um Rank que é maior que 8?
78,451
SELECT date FROM table_name_85 WHERE loss = "burns (0-1)"
What was the date of the game that had a loss of Burns (0-1)?
CREATE TABLE table_name_85 (date VARCHAR, loss VARCHAR)
Qual foi a data do jogo que teve uma perda de Burns (0-1)?
78,452
SELECT loss FROM table_name_77 WHERE record = "20-16"
What was the loss of the game when the record was 20-16?
CREATE TABLE table_name_77 (loss VARCHAR, record VARCHAR)
Qual foi a perda do jogo quando o recorde era de 20-16?
78,453
SELECT loss FROM table_name_22 WHERE attendance = "18,769"
What was the loss of the game that had an attendance of 18,769?
CREATE TABLE table_name_22 (loss VARCHAR, attendance VARCHAR)
Qual foi a perda do jogo que teve uma participação de 18.769?
78,454
SELECT date FROM table_name_5 WHERE loss = "geisel (0-1)"
What was the date of the game that had a loss of Geisel (0-1)?
CREATE TABLE table_name_5 (date VARCHAR, loss VARCHAR)
Qual foi a data do jogo que teve uma perda de Geisel (0-1)?
78,455
SELECT date FROM table_name_12 WHERE opponent = "royals" AND attendance = "12,699"
What is the date of the game against the Royals that had an attendance of 12,699?
CREATE TABLE table_name_12 (date VARCHAR, opponent VARCHAR, attendance VARCHAR)
Qual é a data do jogo contra os Royals que tiveram uma participação de 12.699?
78,456
SELECT MAX(floors) FROM table_name_62 WHERE name = "regions center" AND rank < 11
When Regions center has a rank less than 11, what is the greatest number o floors?
CREATE TABLE table_name_62 (floors INTEGER, name VARCHAR, rank VARCHAR)
Quando o centro de regiões tem uma classificação inferior a 11, qual é o maior número de andares?
78,457
SELECT AVG(rank) FROM table_name_84 WHERE floors = 24
What is the average rank for a building with 24 floors?
CREATE TABLE table_name_84 (rank INTEGER, floors VARCHAR)
Qual é a classificação média para um edifício com 24 andares?
78,458
SELECT SUM(rank) FROM table_name_89 WHERE name = "omni nashville hotel"
What is the rank for Omni nashville hotel?
CREATE TABLE table_name_89 (rank INTEGER, name VARCHAR)
Qual é a classificação para Omni nashville hotel?
78,459
SELECT MAX(rank) FROM table_name_27 WHERE name = "fifth third center"
What is the greatest rank for Fifth third center?
CREATE TABLE table_name_27 (rank INTEGER, name VARCHAR)
Qual é a melhor classificação para o quinto terceiro centro?
78,460
SELECT AVG(year) FROM table_name_77 WHERE floors < 23 AND height_ft__m_ = "292 (89)" AND rank < 14
When a building is 292 (89) ft (m) tall, has less than 23 floors, and ranks less than 14, what is the average year?
CREATE TABLE table_name_77 (year INTEGER, rank VARCHAR, floors VARCHAR, height_ft__m_ VARCHAR)
Quando um edifício tem 292 (89) pés (m) de altura, tem menos de 23 andares e ocupa menos de 14, qual é o ano médio?
78,461
SELECT regular_season___preseason FROM table_name_70 WHERE date = "august 25, 2007"
What type of regular season/preseason game was played on August 25, 2007?
CREATE TABLE table_name_70 (regular_season___preseason VARCHAR, date VARCHAR)
Que tipo de jogo regular de temporada/pré-temporada foi jogado em 25 de agosto de 2007?
78,462
SELECT stadium FROM table_name_36 WHERE date = "august 22, 2008"
In what stadium was the game on August 22, 2008 played?
CREATE TABLE table_name_36 (stadium VARCHAR, date VARCHAR)
Em que estádio foi jogado o jogo em 22 de agosto de 2008?
78,463
SELECT stadium FROM table_name_89 WHERE home_team = "dallas cowboys 21"
In what stadium was the home team Dallas Cowboys 21?
CREATE TABLE table_name_89 (stadium VARCHAR, home_team VARCHAR)
Em que estádio foi o time da casa Dallas Cowboys 21?
78,464
SELECT date FROM table_name_28 WHERE home_team = "dallas cowboys 34"
On what date was the home team the Dallas Cowboys 34?
CREATE TABLE table_name_28 (date VARCHAR, home_team VARCHAR)
Em que data foi a equipe da casa do Dallas Cowboys 34?
78,465
SELECT visiting_team FROM table_name_59 WHERE date = "october 15, 2006"
Who was the visiting team on October 15, 2006?
CREATE TABLE table_name_59 (visiting_team VARCHAR, date VARCHAR)
Quem foi a equipe visitante em 15 de outubro de 2006?
78,466
SELECT MIN(laps) FROM table_name_49 WHERE finish = "7" AND start = "6"
What's the smallest amount of Laps that had a finish of 7 with a start of 6?
CREATE TABLE table_name_49 (laps INTEGER, finish VARCHAR, start VARCHAR)
Qual é a menor quantidade de Laps que teve um final de 7 com um início de 6?
78,467
SELECT MIN(bronze) FROM table_name_36 WHERE gold < 3 AND silver > 1 AND rank = 6 AND nation = "hungary"
What is the smallest bronze with a Gold smaller than 3, and a Silver larger than 1, and a Rank of 6, and a Nation of hungary?
CREATE TABLE table_name_36 (bronze INTEGER, nation VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR)
Qual é o menor bronze com um Ouro menor que 3, e uma Prata maior que 1, e um Rank de 6, e uma Nação de Hungria?
78,468
SELECT AVG(bronze) FROM table_name_73 WHERE rank = 4 AND silver < 1
What is the average bronze with a rank of 4 and less than 1 silver?
CREATE TABLE table_name_73 (bronze INTEGER, rank VARCHAR, silver VARCHAR)
Qual é o bronze médio com uma classificação de 4 e menos de 1 prata?
78,469
SELECT silver FROM table_name_74 WHERE gold > 4 AND rank = 1
Which silver has a Gold larger than 4, and a Rank of 1?
CREATE TABLE table_name_74 (silver VARCHAR, gold VARCHAR, rank VARCHAR)
Qual prata tem um ouro maior que 4 e uma classificação de 1?
78,470
SELECT MIN(bronze) FROM table_name_52 WHERE total = 3 AND nation = "hungary" AND gold < 0
What lowest bronze has a total of 3, a Nation of hungary, and a Gold smaller than 0?
CREATE TABLE table_name_52 (bronze INTEGER, gold VARCHAR, total VARCHAR, nation VARCHAR)
Que bronze mais baixo tem um total de 3, uma Nação de Hungria, e um Ouro menor que 0?
78,471
SELECT SUM(gold) FROM table_name_29 WHERE rank = 7 AND bronze = 1 AND silver < 0
How many gold have a Rank of 7, and a Bronze of 1, and a Silver smaller than 0?
CREATE TABLE table_name_29 (gold INTEGER, silver VARCHAR, rank VARCHAR, bronze VARCHAR)
Quantos ouros têm um Rank de 7, e um Bronze de 1, e uma Prata menor que 0?
78,472
SELECT COUNT(total) FROM table_name_71 WHERE silver < 2 AND nation = "ukraine" AND gold < 3
How many Totals have a Silver smaller than 2, and a Nation of ukraine, and a Gold smaller than 3?
CREATE TABLE table_name_71 (total VARCHAR, gold VARCHAR, silver VARCHAR, nation VARCHAR)
Quantos totais têm uma prata menor que 2 e uma nação de ucrânia e um ouro menor que 3?
78,473
SELECT player FROM table_name_17 WHERE season = "2007"
Which player played in 2007?
CREATE TABLE table_name_17 (player VARCHAR, season VARCHAR)
Qual jogador jogou em 2007?
78,474
SELECT bowling FROM table_name_7 WHERE player = "min patel"
What was Min Patel's bowling?
CREATE TABLE table_name_7 (bowling VARCHAR, player VARCHAR)
O que foi o boliche de Min Patel?
78,475
SELECT week_1 FROM table_name_35 WHERE week_2 = "piia jarkko"
Who was the week 1 nomination when the week 2 nomination was Piia Jarkko?
CREATE TABLE table_name_35 (week_1 VARCHAR, week_2 VARCHAR)
Quem foi a nomeação da semana 1 quando a nomeação da semana 2 foi Piia Jarkko?
78,476
SELECT week_12 FROM table_name_10 WHERE week_9 = "walked (day 11)"
Who was the week 12 nomination when the week 9 nomination walked (day 11)?
CREATE TABLE table_name_10 (week_12 VARCHAR, week_9 VARCHAR)
Quem foi a nomeação da semana 12 quando a nomeação da semana 9 andou (dia 11)?
78,477
SELECT week_12 FROM table_name_1 WHERE week_1 = "maria maxine" AND week_2 = "henri satu"
What is the week 12 nomination that had a week 1 nomination of Maria Maxine and a week 2 nomination of Henri Satu?
CREATE TABLE table_name_1 (week_12 VARCHAR, week_1 VARCHAR, week_2 VARCHAR)
Qual é a semana 12 nomeação que teve uma semana 1 nomeação de Maria Maxine e uma semana 2 nomeação de Henri Satu?
78,478
SELECT height_m___ft__ FROM table_name_44 WHERE city_of_license = "malone, ny"
Name the heightfor city of license of malone, ny
CREATE TABLE table_name_44 (height_m___ft__ VARCHAR, city_of_license VARCHAR)
Nomear a altura para a cidade de licença de malone, ny
78,479
SELECT class FROM table_name_74 WHERE call_sign = "wmhn"
Name the class with call sign of wmhn
CREATE TABLE table_name_74 (class VARCHAR, call_sign VARCHAR)
Nomeie a classe com o sinal de chamada de wmhn
78,480
SELECT frequency FROM table_name_78 WHERE class = "b"
Name the frequency with class of b
CREATE TABLE table_name_78 (frequency VARCHAR, class VARCHAR)
Nomear a frequência com a classe de b
78,481
SELECT city_of_license FROM table_name_37 WHERE frequency = "90.1 fm"
Name the city of license with frequency of 90.1 fm
CREATE TABLE table_name_37 (city_of_license VARCHAR, frequency VARCHAR)
Nomear a cidade de licença com frequência de 90.1 fm
78,482
SELECT COUNT(erp___power_w) FROM table_name_34 WHERE frequency = "89.3 fm" AND facility_id < 40430
Name the total number of ERP/Power W for frequency of 89.3 fm and facility ID less than 40430
CREATE TABLE table_name_34 (erp___power_w VARCHAR, frequency VARCHAR, facility_id VARCHAR)
Nomeie o número total de ERP / Power W para frequência de 89,3 fm e ID de instalação inferior a 40430
78,483
SELECT engine_s_ FROM table_name_68 WHERE tyres = "f" AND year = 1971
What is the Engine(s) that has f Tyres in 1971?
CREATE TABLE table_name_68 (engine_s_ VARCHAR, tyres VARCHAR, year VARCHAR)
Qual é o(s) motor(es) que tem pneus em 1971?
78,484
SELECT MIN(att) FROM table_name_6 WHERE date = "june 27"
What was the attendance on June 27?
CREATE TABLE table_name_6 (att INTEGER, date VARCHAR)
Qual foi o comparecimento em 27 de junho?
78,485
SELECT surface FROM table_name_3 WHERE date = "12 september 2006"
Name the surface for 12 september 2006
CREATE TABLE table_name_3 (surface VARCHAR, date VARCHAR)
Nomeie a superfície para 12 de setembro de 2006
78,486
SELECT score FROM table_name_46 WHERE opponent_in_the_final = "paul baccanello"
Name the score for opponent in the final being paul baccanello
CREATE TABLE table_name_46 (score VARCHAR, opponent_in_the_final VARCHAR)
Nomear a pontuação para o adversário na final sendo paul baccanello
78,487
SELECT surface FROM table_name_5 WHERE date = "20 march 2007"
Name the surface for 20 march 2007
CREATE TABLE table_name_5 (surface VARCHAR, date VARCHAR)
Nomeie a superfície para 20 de março de 2007
78,488
SELECT date FROM table_name_5 WHERE opponent_in_the_final = "ignasi villacampa"
Name the date for opponent in the final being ignasi villacampa
CREATE TABLE table_name_5 (date VARCHAR, opponent_in_the_final VARCHAR)
Nomear a data para o adversário na final sendo gnasi villacampa
78,489
SELECT tournament FROM table_name_11 WHERE surface = "grass" AND opponent_in_the_final = "paul baccanello"
Name the tournament for grass surface and opponent in the final being paul baccanello
CREATE TABLE table_name_11 (tournament VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
Nomear o torneio para superfície de grama e adversário na final sendo paul baccanello
78,490
SELECT MIN(year) FROM table_name_43 WHERE location = "milan" AND champion = "guillermo vilas"
When is the earliest year in milan that guillermo vilas was champion?
CREATE TABLE table_name_43 (year INTEGER, location VARCHAR, champion VARCHAR)
Quando é o primeiro ano em Milão que Guillermo Vilas foi campeão?
78,491
SELECT location FROM table_name_13 WHERE year > 1985 AND runner_up = "tim mayotte"
Where in 1985 was tim mayotte runner up?
CREATE TABLE table_name_13 (location VARCHAR, year VARCHAR, runner_up VARCHAR)
Onde em 1985 foi o tim mayotte runner?
78,492
SELECT score FROM table_name_68 WHERE year > 1978 AND champion = "stefan edberg"
What was the score when stefan edberg won after 1978?
CREATE TABLE table_name_68 (score VARCHAR, year VARCHAR, champion VARCHAR)
Qual foi a pontuação quando stefan edberg ganhou depois de 1978?
78,493
SELECT MAX(facility_id) FROM table_name_52 WHERE city_of_license = "wheeling" AND erp_kw < 4.5
What is the Facility ID that has a City of license of wheeling, and a ERP kW less than 4.5?
CREATE TABLE table_name_52 (facility_id INTEGER, city_of_license VARCHAR, erp_kw VARCHAR)
Qual é a Facility ID que tem uma Cidade de licença de rodas, e um ERP kW inferior a 4,5?
78,494
SELECT city_of_license FROM table_name_45 WHERE erp_kw > 4.5 AND station = "w23dr-d"
What is the City of license that has a ERP kW more than 4.5 and w23dr-d?
CREATE TABLE table_name_45 (city_of_license VARCHAR, erp_kw VARCHAR, station VARCHAR)
Qual é a cidade de licença que tem um ERP kW mais de 4,5 e w23dr-d?
78,495
SELECT location FROM table_name_46 WHERE date_of_demolition = 1940 AND church_name = "christ church greyfriars"
What is the location that has a date of demolition of 1940 and has a church named Christ Church Greyfriars?
CREATE TABLE table_name_46 (location VARCHAR, date_of_demolition VARCHAR, church_name VARCHAR)
Qual é o local que tem uma data de demolição de 1940 e tem uma igreja chamada Christ Church Greyfriars?
78,496
SELECT COUNT(date_of_demolition) FROM table_name_7 WHERE location = "wood street"
How many dates of demolition are located on Wood Street?
CREATE TABLE table_name_7 (date_of_demolition VARCHAR, location VARCHAR)
Quantas datas de demolição estão localizadas na Wood Street?
78,497
SELECT score FROM table_name_11 WHERE surface = "clay" AND date = "19 may 2008"
What was Olga Govortsova's score when she played on a clay surface on 19 May 2008?
CREATE TABLE table_name_11 (score VARCHAR, surface VARCHAR, date VARCHAR)
Qual foi a pontuação de Olga Govortsova quando jogou em uma superfície de argila em 19 de maio de 2008?
78,498
SELECT outcome FROM table_name_59 WHERE surface = "grass"
What was Olga Govortsova's outcome when she played on a grass surface?
CREATE TABLE table_name_59 (outcome VARCHAR, surface VARCHAR)
Qual foi o resultado de Olga Govortsova quando ela jogou em uma superfície de grama?
78,499
SELECT score FROM table_name_84 WHERE surface = "clay" AND date = "26 may 2012"
What was Olga Govortsova's goal when she played on a clay surface on 26 May 2012?
CREATE TABLE table_name_84 (score VARCHAR, surface VARCHAR, date VARCHAR)
Qual foi o objetivo de Olga Govortsova quando ela jogou em uma superfície de argila em 26 de maio de 2012?