Unnamed: 0
int64
0
78.6k
answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
translated_answer
stringlengths
12
992
73,300
SELECT score FROM table_name_79 WHERE date = "25 may 2007"
What was the Score on 25 May 2007?
CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)
Qual foi a pontuação em 25 de maio de 2007?
73,301
SELECT score FROM table_name_79 WHERE date = "10 november 2006"
What was the score on 10 November 2006?
CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)
Qual foi a pontuação em 10 de novembro de 2006?
73,302
SELECT partnering FROM table_name_92 WHERE score = "6-3, 4-6, 6-4"
Which Partnering has a Score of 6-3, 4-6, 6-4?
CREATE TABLE table_name_92 (partnering VARCHAR, score VARCHAR)
Qual parceiro tem uma pontuação de 6-3, 4-6, 6-4?
73,303
SELECT MAX(rank) FROM table_name_38 WHERE notes = "qs" AND country = "china"
What is the rank for the man from China with notes of QS?
CREATE TABLE table_name_38 (rank INTEGER, notes VARCHAR, country VARCHAR)
Qual é a classificação para o homem da China com notas de QS?
73,304
SELECT MIN(rank) FROM table_name_16 WHERE country = "bulgaria"
What is the rank for the competitor from Bulgaria?
CREATE TABLE table_name_16 (rank INTEGER, country VARCHAR)
Qual é a classificação para o concorrente da Bulgária?
73,305
SELECT athletes FROM table_name_62 WHERE rank < 5 AND country = "china"
Which athlete is ranked below 5 and is from China?
CREATE TABLE table_name_62 (athletes VARCHAR, rank VARCHAR, country VARCHAR)
Qual atleta está classificado abaixo de 5 e é da China?
73,306
SELECT game FROM table_name_90 WHERE genre = "platformer"
Which game was a Platformer?
CREATE TABLE table_name_90 (game VARCHAR, genre VARCHAR)
Qual jogo era um Platformer?
73,307
SELECT developer_s_ FROM table_name_98 WHERE game = "xcom: enemy unknown"
Who was the developer of XCom: Enemy Unknown?
CREATE TABLE table_name_98 (developer_s_ VARCHAR, game VARCHAR)
Quem foi o desenvolvedor de XCom: Enemy Unknown?
73,308
SELECT platform_s_ FROM table_name_50 WHERE game = "red dead redemption"
Which platform was Red Dead Redemption for?
CREATE TABLE table_name_50 (platform_s_ VARCHAR, game VARCHAR)
Qual plataforma foi Red Dead Redemption?
73,309
SELECT MAX(total) FROM table_name_49 WHERE egyptian_premier_league < 2 AND egypt_cup < 0
What is the highest total for players with under 2 Egyptian Premier League goals and 0 Egypt Cup goals?
CREATE TABLE table_name_49 (total INTEGER, egyptian_premier_league VARCHAR, egypt_cup VARCHAR)
Qual é o total mais alto para jogadores com menos de 2 gols na Premier League egípcia e 0 gols na Copa do Egito?
73,310
SELECT AVG(egypt_cup) FROM table_name_93 WHERE caf_champions_league = 0 AND egyptian_premier_league = 6 AND total < 6
What is the aveage Egypt Cup value for players with 0 CAF Champions League goals, 6 Egyptian Premier League goals, and totals under 6?
CREATE TABLE table_name_93 (egypt_cup INTEGER, total VARCHAR, caf_champions_league VARCHAR, egyptian_premier_league VARCHAR)
Qual é o valor médio da Egypt Cup para jogadores com 0 gols na CAF Champions League, 6 gols na Egyptian Premier League e um total de menos de 6?
73,311
SELECT COUNT(silver) FROM table_name_64 WHERE gold > 0 AND rank < 2
how many times is gold more than 0 and the rank less than 2?
CREATE TABLE table_name_64 (silver VARCHAR, gold VARCHAR, rank VARCHAR)
Quantas vezes o ouro é maior que 0 e a classificação menor que 2?
73,312
SELECT MAX(total) FROM table_name_71 WHERE nation = "france" AND silver > 1
what is the highest total when the nation is france and silver is more than 1?
CREATE TABLE table_name_71 (total INTEGER, nation VARCHAR, silver VARCHAR)
Qual é o total mais alto quando a nação é a França e a prata é mais de 1?
73,313
SELECT MIN(silver) FROM table_name_94 WHERE nation = "germany" AND gold > 4
what is the least silver for germany when gold is more than 4?
CREATE TABLE table_name_94 (silver INTEGER, nation VARCHAR, gold VARCHAR)
Qual é a menor prata para a Alemanha quando o ouro é mais do que 4?
73,314
SELECT COUNT(silver) FROM table_name_23 WHERE total < 15 AND rank < 5 AND bronze = 4 AND gold < 3
How many times is the total less than 15, rank less than 5, bronze is 4 and gold smaller than 3?
CREATE TABLE table_name_23 (silver VARCHAR, gold VARCHAR, bronze VARCHAR, total VARCHAR, rank VARCHAR)
Quantas vezes o total é inferior a 15, a classificação é inferior a 5, o bronze é 4 e o ouro menor que 3?
73,315
SELECT venue FROM table_name_71 WHERE date = "september 5, 1998"
What venue did the game on september 5, 1998 take place at?
CREATE TABLE table_name_71 (venue VARCHAR, date VARCHAR)
Em que local ocorreu o jogo em 5 de setembro de 1998?
73,316
SELECT venue FROM table_name_29 WHERE competition = "2000 tiger cup" AND date = "november 10, 2000"
What venue did the 2000 tiger cup take place at on November 10, 2000?
CREATE TABLE table_name_29 (venue VARCHAR, competition VARCHAR, date VARCHAR)
Em que local foi realizada a Copa do Tigre de 2000 em 10 de novembro de 2000?
73,317
SELECT date FROM table_name_63 WHERE score = "5-4"
What date had a game with a score of 5-4?
CREATE TABLE table_name_63 (date VARCHAR, score VARCHAR)
Que data teve um jogo com uma pontuação de 5-4?
73,318
SELECT SUM(s_barangay) FROM table_name_72 WHERE area___has__ > 865.13
What is the total of Barangay with an area larger than 865.13?
CREATE TABLE table_name_72 (s_barangay INTEGER, area___has__ INTEGER)
Qual é o total de Barangay com uma área maior que 865,13?
73,319
SELECT MIN(pop_density__per_km2_) FROM table_name_12 WHERE district = "santa cruz" AND s_barangay > 82
What is the lowest population density for the district of Santa Cruz and a Barangay larger than 82?
CREATE TABLE table_name_12 (pop_density__per_km2_ INTEGER, district VARCHAR, s_barangay VARCHAR)
Qual é a menor densidade populacional para o distrito de Santa Cruz e um Barangay maior que 82?
73,320
SELECT AVG(gold) FROM table_name_13 WHERE rank = "17" AND silver > 4
What is the average number of golds for teams in rank 17 with more than 4 silver?
CREATE TABLE table_name_13 (gold INTEGER, rank VARCHAR, silver VARCHAR)
Qual é o número médio de ouros para equipes no 17o lugar com mais de 4 pratas?
73,321
SELECT AVG(total) FROM table_name_88 WHERE bronze < 34 AND gold < 14 AND silver < 0
What is the average total for teams with under 34 bronzes, 0 silver, and under 14 gold?
CREATE TABLE table_name_88 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR)
Qual é o total médio para equipes com menos de 34 bronzes, 0 prata e menos de 14 ouro?
73,322
SELECT MIN(gold) FROM table_name_54 WHERE silver < 0
What is the fewest number of golds for teams with 0 silver?
CREATE TABLE table_name_54 (gold INTEGER, silver INTEGER)
Qual é o menor número de ouros para equipes com 0 prata?
73,323
SELECT nations FROM table_name_87 WHERE year = "2007"
What nations participated in 2007?
CREATE TABLE table_name_87 (nations VARCHAR, year VARCHAR)
Que países participaram em 2007?
73,324
SELECT event_type FROM table_name_57 WHERE body = "cmas" AND year = "1980" AND sport = "underwater hockey"
What event type had BODY CMAS in 1980 and underwater hockey?
CREATE TABLE table_name_57 (event_type VARCHAR, sport VARCHAR, body VARCHAR, year VARCHAR)
Que tipo de evento teve BODY CMAS em 1980 e hóquei subaquático?
73,325
SELECT body FROM table_name_12 WHERE event_type = "world championship" AND sport = "underwater target shooting"
What body is at the World Championship for Underwater Target shooting?
CREATE TABLE table_name_12 (body VARCHAR, event_type VARCHAR, sport VARCHAR)
Que corpo está no Campeonato Mundial de Tiro Subaquático?
73,326
SELECT body FROM table_name_43 WHERE year = "1973"
What body participated in 1973?
CREATE TABLE table_name_43 (body VARCHAR, year VARCHAR)
Que corpo participou em 1973?
73,327
SELECT time FROM table_name_76 WHERE event = "800m freestyle"
What was the record setting time in the 800m freestyle?
CREATE TABLE table_name_76 (time VARCHAR, event VARCHAR)
Qual foi o tempo recorde no freestyle de 800m?
73,328
SELECT power FROM table_name_26 WHERE class = "a" AND frequency = "93.7"
What power has A as the class, and 93.7 as the frequency?
CREATE TABLE table_name_26 (power VARCHAR, class VARCHAR, frequency VARCHAR)
Que potência tem A como classe e 93.7 como frequência?
73,329
SELECT city_of_license FROM table_name_77 WHERE identifier = "cbon-fm-11"
What city of license has cbon-fm-11 as the identifier?
CREATE TABLE table_name_77 (city_of_license VARCHAR, identifier VARCHAR)
Qual cidade de licença tem o cbon-fm-11 como identificador?
73,330
SELECT power FROM table_name_17 WHERE city_of_license = "thunder bay"
What power has thunder bay as the city of license?
CREATE TABLE table_name_17 (power VARCHAR, city_of_license VARCHAR)
Que poder tem a baía do trovão como a cidade da licença?
73,331
SELECT identifier FROM table_name_98 WHERE power = "100000 watts"
What identifier has 100000 watts as the power?
CREATE TABLE table_name_98 (identifier VARCHAR, power VARCHAR)
Qual identificador tem 100000 watts como potência?
73,332
SELECT identifier FROM table_name_92 WHERE frequency = "90.3"
What identifier has 90.3 as the frequency?
CREATE TABLE table_name_92 (identifier VARCHAR, frequency VARCHAR)
Qual identificador tem 90.3 como a frequência?
73,333
SELECT class FROM table_name_28 WHERE identifier = "cbon-fm-23"
What class has cbon-fm-23 as the identifier?
CREATE TABLE table_name_28 (class VARCHAR, identifier VARCHAR)
Qual classe tem o cbon-fm-23 como identificador?
73,334
SELECT COUNT(total) FROM table_name_74 WHERE bronze > 1 AND nation = "west germany" AND gold > 2
What is the total number of medals for West Germany with more than 1 bronze medal and more than 2 gold medals?
CREATE TABLE table_name_74 (total VARCHAR, gold VARCHAR, bronze VARCHAR, nation VARCHAR)
Qual é o número total de medalhas para a Alemanha Ocidental com mais de 1 medalha de bronze e mais de 2 medalhas de ouro?
73,335
SELECT rank FROM table_name_87 WHERE nation = "denmark"
What is Denmark's rank?
CREATE TABLE table_name_87 (rank VARCHAR, nation VARCHAR)
Qual é a classificação da Dinamarca?
73,336
SELECT country FROM table_name_70 WHERE notes = "fa" AND athlete = "ekaterina karsten"
What country did ekaterina karsten row for with fa listed under notes?
CREATE TABLE table_name_70 (country VARCHAR, notes VARCHAR, athlete VARCHAR)
Para que país foi que a ekaterina karsten correu com a fa listada em notas?
73,337
SELECT time FROM table_name_37 WHERE country = "france"
What time was the race for the country of france?
CREATE TABLE table_name_37 (time VARCHAR, country VARCHAR)
A que horas foi a corrida pelo país da França?
73,338
SELECT time FROM table_name_10 WHERE notes = "fb" AND country = "france"
What time was the race for the country of france with fb listed under notes?
CREATE TABLE table_name_10 (time VARCHAR, notes VARCHAR, country VARCHAR)
A que horas foi a corrida para o país da França com fb listados em notas?
73,339
SELECT SUM(rank) FROM table_name_10 WHERE country = "bulgaria"
What is the sum of the ranks for bulgaria?
CREATE TABLE table_name_10 (rank INTEGER, country VARCHAR)
Qual é a soma das classificações para a Bulgaria?
73,340
SELECT rank FROM table_name_31 WHERE notes = "fb" AND country = "new zealand"
What is the rank of the new zealand team that had fb listed under notes?
CREATE TABLE table_name_31 (rank VARCHAR, notes VARCHAR, country VARCHAR)
Qual é a classificação da nova equipe de zelândia que tinha fb listado em notas?
73,341
SELECT position FROM table_name_42 WHERE pick = 74
Which Position has a Pick of 74?
CREATE TABLE table_name_42 (position VARCHAR, pick VARCHAR)
Qual posição tem uma escolha de 74?
73,342
SELECT team FROM table_name_86 WHERE position = "linebacker"
Which Team has a Position of linebacker?
CREATE TABLE table_name_86 (team VARCHAR, position VARCHAR)
Qual equipe tem uma posição de linebacker?
73,343
SELECT team FROM table_name_87 WHERE college = "stanford"
What is the Team for Stanford College?
CREATE TABLE table_name_87 (team VARCHAR, college VARCHAR)
O que é a equipe do Stanford College?
73,344
SELECT pick FROM table_name_2 WHERE college = "southeastern louisiana"
What Pick does the College Southeastern Louisiana have?
CREATE TABLE table_name_2 (pick VARCHAR, college VARCHAR)
Que escolha tem o College Southeastern Louisiana?
73,345
SELECT gold FROM table_name_50 WHERE total > 2 AND bronze < 1
Can you tell me the Gold that has the Total larger than 2, and the Bronze smaller than 1?
CREATE TABLE table_name_50 (gold VARCHAR, total VARCHAR, bronze VARCHAR)
Você pode me dizer o Ouro que tem o Total maior que 2, e o Bronze menor que 1?
73,346
SELECT nation FROM table_name_68 WHERE bronze = 1 AND gold = 0
Can you tell me the Nation that has the Bronze of 1, and the Gold of 0?
CREATE TABLE table_name_68 (nation VARCHAR, bronze VARCHAR, gold VARCHAR)
Você pode me dizer a nação que tem o bronze de 1 e o ouro de 0?
73,347
SELECT AVG(total) FROM table_name_15 WHERE silver > 1 AND bronze < 8
Can you tell me the average Total that has the Silver larger than 1, and the Bronze smaller than 8?
CREATE TABLE table_name_15 (total INTEGER, silver VARCHAR, bronze VARCHAR)
Você pode me dizer o total médio que tem a prata maior que 1 e o bronze menor que 8?
73,348
SELECT MAX(bronze) FROM table_name_99 WHERE total = 4 AND silver = 1 AND gold < 2
What was the highest number of bronze medals when there were a total of 4 medals, 1 silver medals, and less than 2 medals?
CREATE TABLE table_name_99 (bronze INTEGER, gold VARCHAR, total VARCHAR, silver VARCHAR)
Qual foi o maior número de medalhas de bronze quando havia um total de 4 medalhas, 1 medalhas de prata e menos de 2 medalhas?
73,349
SELECT SUM(pommel_horse) FROM table_name_6 WHERE rings < 59.85 AND team_total > 361.2
Count the Pommel Horse that has Rings smaller than 59.85 and a Team Total larger than 361.2?
CREATE TABLE table_name_6 (pommel_horse INTEGER, rings VARCHAR, team_total VARCHAR)
Contar o cavalo Pommel que tem anéis menores que 59,85 e um total de equipe maior que 361,2?
73,350
SELECT MAX(parallel_bars) FROM table_name_61 WHERE country = "united states" AND vault < 63.85
Name the highest Parallel Bars of the united states with a Vault smaller than 63.85?
CREATE TABLE table_name_61 (parallel_bars INTEGER, country VARCHAR, vault VARCHAR)
Nomeie as barras paralelas mais altas dos Estados Unidos com um cofre menor que 63,85?
73,351
SELECT MAX(horizontal_bar) FROM table_name_4 WHERE country = "france" AND rings < 58.975
Name the highest Horizontal Bar which is in france and Rings smaller than 58.975?
CREATE TABLE table_name_4 (horizontal_bar INTEGER, country VARCHAR, rings VARCHAR)
Nomeie a barra horizontal mais alta que está em frança e anéis menores que 58,975?
73,352
SELECT artist FROM table_name_20 WHERE televote_sms = "3.20%"
who is the artist when the televote/sms is 3.20%?
CREATE TABLE table_name_20 (artist VARCHAR, televote_sms VARCHAR)
Quem é o artista quando o televoto/sms é de 3,20%?
73,353
SELECT SUM(place) FROM table_name_47 WHERE televote_sms = "2.39%"
what is the place when the televote/sms is 2.39%?
CREATE TABLE table_name_47 (place INTEGER, televote_sms VARCHAR)
Qual é o lugar quando o televote / sms é de 2,39%?
73,354
SELECT COUNT(draw) FROM table_name_54 WHERE televote_sms = "2.39%" AND place > 9
how many times was the televote/sms 2.39% and the place more than 9?
CREATE TABLE table_name_54 (draw VARCHAR, televote_sms VARCHAR, place VARCHAR)
Quantas vezes foi o televote / sms 2,39% e o lugar mais de 9?
73,355
SELECT release_date FROM table_name_69 WHERE production_num > 5888 AND director = "hugh harman and friz freleng"
Which Release date has a Production Num larger than 5888, and a Director of hugh harman and friz freleng?
CREATE TABLE table_name_69 (release_date VARCHAR, production_num VARCHAR, director VARCHAR)
Qual data de lançamento tem um Num de produção maior que 5888, e um diretor de hugh haran e friz freleng?
73,356
SELECT SUM(production_num) FROM table_name_93 WHERE title = "bosko in dutch"
How many production numbers have a Title of bosko in dutch?
CREATE TABLE table_name_93 (production_num INTEGER, title VARCHAR)
Quantos números de produção têm um título de bosko em holandês?
73,357
SELECT release_date FROM table_name_92 WHERE director = "tom palmer" AND production_num > 5956
Which Release date has a Director of tom palmer, and a Production Num larger than 5956?
CREATE TABLE table_name_92 (release_date VARCHAR, director VARCHAR, production_num VARCHAR)
Qual data de lançamento tem um Diretor de tom palmer, e um Num de Produção maior que 5956?
73,358
SELECT COUNT(goals) FROM table_name_9 WHERE years_at_club = "1961–1966" AND debut_year > 1961
How many Goals have Years at club of 1961–1966, and a Debut year larger than 1961?
CREATE TABLE table_name_9 (goals VARCHAR, years_at_club VARCHAR, debut_year VARCHAR)
Quantos gols têm Years no clube de 1961-1966, e um ano de estreia maior que 1961?
73,359
SELECT AVG(debut_year) FROM table_name_76 WHERE goals = 0 AND years_at_club = "1963" AND games > 5
Which Debut year has Goals of 0, and Years at club of 1963, and Games larger than 5?
CREATE TABLE table_name_76 (debut_year INTEGER, games VARCHAR, goals VARCHAR, years_at_club VARCHAR)
Que ano de estreia tem golos de 0, e Anos no clube de 1963, e Jogos maiores que 5?
73,360
SELECT AVG(debut_year) FROM table_name_44 WHERE player = "bob hayton" AND games < 2
Which Debut year has a Player of bob hayton, and Games smaller than 2?
CREATE TABLE table_name_44 (debut_year INTEGER, player VARCHAR, games VARCHAR)
Que ano de estreia tem um jogador de bob hayton, e jogos menores que 2?
73,361
SELECT name FROM table_name_38 WHERE sport = "table tennis" AND event = "women's individual class 3"
What is the name of the player who competed in the Women's Individual Class 3 in Table Tennis?
CREATE TABLE table_name_38 (name VARCHAR, sport VARCHAR, event VARCHAR)
Qual é o nome do jogador que competiu na Classe Individual Feminina 3 no Tênis de Mesa?
73,362
SELECT date FROM table_name_73 WHERE event = "women's individual class 3"
What was the date of the Women's Individual Class 3?
CREATE TABLE table_name_73 (date VARCHAR, event VARCHAR)
Qual foi a data da Classe 3 Feminina Individual?
73,363
SELECT event FROM table_name_88 WHERE name = "rastislav turecek"
What event did Rastislav Turecek participate in?
CREATE TABLE table_name_88 (event VARCHAR, name VARCHAR)
Em que evento Rastislav Turecek participou?
73,364
SELECT sport FROM table_name_16 WHERE name = "miroslav jambor richard csejtey"
What sport did Miroslav Jambor Richard Csejtey participate in?
CREATE TABLE table_name_16 (sport VARCHAR, name VARCHAR)
Em que esporte participou Miroslav Jambor Richard Csejtey?
73,365
SELECT artist FROM table_name_7 WHERE draw = 6
Which Artist has a Draw of 6?
CREATE TABLE table_name_7 (artist VARCHAR, draw VARCHAR)
Qual artista tem um sorteio de 6?
73,366
SELECT song FROM table_name_20 WHERE draw < 7 AND points > 41 AND language = "german"
Which Song has a Draw smaller than 7, and Points larger than 41, and a Language of german?
CREATE TABLE table_name_20 (song VARCHAR, language VARCHAR, draw VARCHAR, points VARCHAR)
Qual música tem um desenho menor que 7, e pontos maiores que 41, e uma língua alemã?
73,367
SELECT result FROM table_name_15 WHERE year > 2001
What was the result for the years after 2001?
CREATE TABLE table_name_15 (result VARCHAR, year INTEGER)
Qual foi o resultado dos anos posteriores a 2001?
73,368
SELECT nominee_s_ FROM table_name_83 WHERE year = 2005
Who was the nominee for 2005?
CREATE TABLE table_name_83 (nominee_s_ VARCHAR, year VARCHAR)
Quem foi o candidato em 2005?
73,369
SELECT gp_gs FROM table_name_44 WHERE receptions > 4 AND long = 55 AND avg_g = 151
what is the gp-gs when the receptions is more than 4, long is 55 and avg/g is 151?
CREATE TABLE table_name_44 (gp_gs VARCHAR, avg_g VARCHAR, receptions VARCHAR, long VARCHAR)
o que é o gp-gs quando as recepções são mais de 4, longo é 55 e avg / g é 151?
73,370
SELECT name FROM table_name_1 WHERE avg_g = 13.7
what is the name when avg/g is 13.7?
CREATE TABLE table_name_1 (name VARCHAR, avg_g VARCHAR)
Qual é o nome quando avg/g é 13.7?
73,371
SELECT COUNT(receptions) FROM table_name_82 WHERE avg_g = 2
How many times is avg/g 2?
CREATE TABLE table_name_82 (receptions VARCHAR, avg_g VARCHAR)
Quantas vezes é avg/g 2?
73,372
SELECT SUM(avg_g) FROM table_name_75 WHERE name = "john conner" AND long < 25
what is the avg/g for john conner when long is less than 25?
CREATE TABLE table_name_75 (avg_g INTEGER, name VARCHAR, long VARCHAR)
O que é o avg/g para John Conner quando o comprimento é inferior a 25?
73,373
SELECT conf FROM table_name_25 WHERE original_nfl_team = "denver broncos"
What conference did the player originally from the denver broncos play in?
CREATE TABLE table_name_25 (conf VARCHAR, original_nfl_team VARCHAR)
Em que conferência o jogador originalmente dos broncos denver jogou?
73,374
SELECT player FROM table_name_72 WHERE college = "texas southern"
Who was the player from texas southern?
CREATE TABLE table_name_72 (player VARCHAR, college VARCHAR)
Quem foi o jogador do Texas Sul?
73,375
SELECT conf FROM table_name_44 WHERE pos = "rb"
What conference did the player with the position of rb play in?
CREATE TABLE table_name_44 (conf VARCHAR, pos VARCHAR)
Em que conferência o jogador com a posição de rb jogou?
73,376
SELECT original_nfl_team FROM table_name_86 WHERE conf = "midwestern"
What was the original nfl team that the player was in from the midwestern conference?
CREATE TABLE table_name_86 (original_nfl_team VARCHAR, conf VARCHAR)
Qual foi a equipe original da NFL em que o jogador estava na conferência do meio-oeste?
73,377
SELECT pos FROM table_name_86 WHERE college = "tennessee state"
What position did athlete play from Tennessee state?
CREATE TABLE table_name_86 (pos VARCHAR, college VARCHAR)
Que posição o atleta jogou do estado do Tennessee?
73,378
SELECT affected_area_codes FROM table_name_95 WHERE effective_date = "august 30, 2014"
Which Affected area codes have an Effective date of august 30, 2014?
CREATE TABLE table_name_95 (affected_area_codes VARCHAR, effective_date VARCHAR)
Quais códigos de área afetados têm uma data efetiva de 30 de agosto de 2014?
73,379
SELECT airing_date FROM table_name_39 WHERE number_of_episodes > 20 AND genre = "modern drama"
Which Airing date has a Number of episodes larger than 20, and a Genre of modern drama?
CREATE TABLE table_name_39 (airing_date VARCHAR, number_of_episodes VARCHAR, genre VARCHAR)
Qual data de exibição tem um número de episódios maior que 20, e um gênero de drama moderno?
73,380
SELECT genre FROM table_name_92 WHERE english_title__chinese_title_ = "the romance of the white hair maiden 白髮魔女傳"
Which Genre has an English title (Chinese title) of the romance of the white hair maiden 白髮魔女傳?
CREATE TABLE table_name_92 (genre VARCHAR, english_title__chinese_title_ VARCHAR)
Qual gênero tem um título em inglês (título chinês) do romance da donzela de cabelo branco ?
73,381
SELECT grand_finalist FROM table_name_26 WHERE grand_finalists = "jonathan loh, peterson poon, nathan santos"
who is the grand finalist when the grand finalists are jonathan loh, peterson poon, nathan santos?
CREATE TABLE table_name_26 (grand_finalist VARCHAR, grand_finalists VARCHAR)
Quem é o grande finalista quando os grandes finalistas são jonathan loh, peterson poon, nathan santos?
73,382
SELECT MAX(total) FROM table_name_40 WHERE gold = 20 AND rank < 1
What is the highest total number of medals for a team ranked smaller than 1 and had 20 gold medals?
CREATE TABLE table_name_40 (total INTEGER, gold VARCHAR, rank VARCHAR)
Qual é o maior número total de medalhas para uma equipe classificada como menor que 1 e tinha 20 medalhas de ouro?
73,383
SELECT nation FROM table_name_31 WHERE gold > 1 AND total = 62
What is the nation that had more than 1 gold medal and a total of 62 medals?
CREATE TABLE table_name_31 (nation VARCHAR, gold VARCHAR, total VARCHAR)
Qual é a nação que tinha mais de 1 medalha de ouro e um total de 62 medalhas?
73,384
SELECT MAX(total) FROM table_name_62 WHERE silver = 1 AND gold < 0
What is the highest total medals when there were 0 gold medals and 1 silver?
CREATE TABLE table_name_62 (total INTEGER, silver VARCHAR, gold VARCHAR)
Quais são as maiores medalhas totais quando havia 0 medalhas de ouro e 1 de prata?
73,385
SELECT 123 AS kg FROM table_name_41 WHERE world_record = "total"
What's the 123kg of the Total world record?
CREATE TABLE table_name_41 (world_record VARCHAR)
Qual é o 123kg do recorde mundial Total?
73,386
SELECT name FROM table_name_55 WHERE constituency_number = "214"
What is the name for the assembly segment with a constituency number of 214?
CREATE TABLE table_name_55 (name VARCHAR, constituency_number VARCHAR)
Qual é o nome para o segmento de montagem com um número de círculo eleitoral de 214?
73,387
SELECT district FROM table_name_20 WHERE name = "mahidpur"
What district has an assembly segment named mahidpur?
CREATE TABLE table_name_20 (district VARCHAR, name VARCHAR)
Qual distrito tem um segmento de montagem chamado Mahidpur?
73,388
SELECT team FROM table_name_39 WHERE wrestler = "doug basham"
Who is Doug Basham's team?
CREATE TABLE table_name_39 (team VARCHAR, wrestler VARCHAR)
Quem é a equipe de Doug Basham?
73,389
SELECT elimination FROM table_name_71 WHERE wrestler = "jorge santana"
What's Jorge Santana's elimination?
CREATE TABLE table_name_71 (elimination VARCHAR, wrestler VARCHAR)
Qual é a eliminação de Jorge Santana?
73,390
SELECT wrestler FROM table_name_6 WHERE elimination = "1"
Who's the wrestler with an elimination of 1?
CREATE TABLE table_name_6 (wrestler VARCHAR, elimination VARCHAR)
Quem é o lutador com uma eliminação de 1?
73,391
SELECT eliminated_by FROM table_name_61 WHERE elimination = "1"
Who's the eliminated by when the elimination was 1?
CREATE TABLE table_name_61 (eliminated_by VARCHAR, elimination VARCHAR)
Quem é o eliminado por quando a eliminação foi 1?
73,392
SELECT date FROM table_name_94 WHERE week < 9 AND result = "l 27-10"
What is the date where the result was L 27-10 in a week before week 9?
CREATE TABLE table_name_94 (date VARCHAR, week VARCHAR, result VARCHAR)
Qual é a data em que o resultado foi L 27-10 em uma semana antes da semana 9?
73,393
SELECT SUM(draw) FROM table_name_91 WHERE jury > 22 AND televote = 130
What sum of draw had more than 22 in Jury and a Televote of 130?
CREATE TABLE table_name_91 (draw INTEGER, jury VARCHAR, televote VARCHAR)
Que soma de sorteio teve mais de 22 no Júri e uma Televotação de 130?
73,394
SELECT SUM(jury) FROM table_name_86 WHERE place = "2nd" AND total > 190
What is the total of the jury that is 2nd place and the total is larger than 190?
CREATE TABLE table_name_86 (jury INTEGER, place VARCHAR, total VARCHAR)
Qual é o total do júri que é o 2o lugar e o total é maior que 190?
73,395
SELECT AVG(l_100km_combined) FROM table_name_81 WHERE l_100km_urban__cold_ = 13.9 AND mpg_uk_combined > 28.5 AND mpg_uk_extra_urban < 38.7
What's the average L/km combines when the L/100km Urban is 13.9, the mpg-UK combined is more than 28.5 and the mpg-UK extra urban is less than 38.7?
CREATE TABLE table_name_81 (l_100km_combined INTEGER, mpg_uk_extra_urban VARCHAR, l_100km_urban__cold_ VARCHAR, mpg_uk_combined VARCHAR)
Qual é a média L / km combina quando o L/100 km Urban é 13.9, o mpg-UK combinado é mais de 28.5 e o mpg-UK extra urbano é menos de 38.7?
73,396
SELECT MIN(mpg_uk_combined) FROM table_name_42 WHERE mpg_uk_urban__cold_ = 25.4 AND l_100km_extra_urban < 6.9 AND l_100km_urban__cold_ > 11.1
What's the least mpg-UK combined when the mpg-UK urban is 25.4, the L/100km extra urban is less than 6.9 and the L/100km urban is more than 11.1?
CREATE TABLE table_name_42 (mpg_uk_combined INTEGER, l_100km_urban__cold_ VARCHAR, mpg_uk_urban__cold_ VARCHAR, l_100km_extra_urban VARCHAR)
Qual é o menor mpg-UK combinado quando o mpg-UK urbano é 25,4, o L/100km urbano extra é inferior a 6,9 e o L/100km urbano é superior a 11,1?
73,397
SELECT COUNT(co_2_g_km) FROM table_name_20 WHERE fuel_type = "diesel" AND manufacturer = "fiat" AND l_100km_urban__cold_ > 6.3 AND mpg_uk_combined = 43.5
What's the CO2 g/km of a Fiat running on diesel with the L/100km urban more than 6.3 and an mpg-UK combined of 43.5?
CREATE TABLE table_name_20 (co_2_g_km VARCHAR, mpg_uk_combined VARCHAR, l_100km_urban__cold_ VARCHAR, fuel_type VARCHAR, manufacturer VARCHAR)
O que é o CO2 g/km de um Fiat rodando a diesel com o L/100km urbano mais de 6,3 e um mpg-UK combinado de 43,5?
73,398
SELECT COUNT(l_100km_extra_urban) FROM table_name_52 WHERE mpg_uk_combined > 19.2 AND l_100km_combined < 5.7 AND fuel_type = "diesel" AND mpg_us_combined < 50
What's the total L/100km extra urban fueled by diesel, when the mpg-UK combines is more than 19.2, mpg-US is less than 50 and the L/100m combined is less than 5.7?
CREATE TABLE table_name_52 (l_100km_extra_urban VARCHAR, mpg_us_combined VARCHAR, fuel_type VARCHAR, mpg_uk_combined VARCHAR, l_100km_combined VARCHAR)
Qual é o total de L/100km extra urbano abastecido por diesel, quando o mpg-UK combina é mais de 19,2, mpg-US é menos de 50 e o L/100m combinado é menos de 5,7?
73,399
SELECT SUM(engine_capacity) FROM table_name_53 WHERE mpg_uk_urban__cold_ < 12.2 AND mpg_uk_extra_urban < 18.8 AND mpg_us_urban < 7.2
What's the engine capacity when the mpg-UK urban is less than 12.2, the mpg-UK extra urban is less than 18.8 and the mpg-US turban is less than 7.2?
CREATE TABLE table_name_53 (engine_capacity INTEGER, mpg_us_urban VARCHAR, mpg_uk_urban__cold_ VARCHAR, mpg_uk_extra_urban VARCHAR)
Qual é a capacidade do motor quando o mpg-UK urbano é inferior a 12,2, o mpg-UK urbano extra é inferior a 18,8 e o turbante mpg-US é inferior a 7,2?