Unnamed: 0
int64
0
78.6k
answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
translated_answer
stringlengths
12
992
72,300
SELECT MIN(viewership__millions_) FROM table_name_54 WHERE broadcast_date = "7 september 2001"
What is the lowest viewership in millions of the episode broadcast on 7 September 2001?
CREATE TABLE table_name_54 (viewership__millions_ INTEGER, broadcast_date VARCHAR)
Qual é a audiência mais baixa em milhões do episódio transmitido em 7 de setembro de 2001?
72,301
SELECT episode_number FROM table_name_79 WHERE broadcast_date = "21 september 2001"
What is the episode number of the episode broadcast on 21 September 2001?
CREATE TABLE table_name_79 (episode_number VARCHAR, broadcast_date VARCHAR)
Qual é o número do episódio transmitido em 21 de setembro de 2001?
72,302
SELECT COUNT(draw) FROM table_name_65 WHERE points = 8 AND place > 8
How many times is the points 8 and the place larger than 8?
CREATE TABLE table_name_65 (draw VARCHAR, points VARCHAR, place VARCHAR)
Quantas vezes são os pontos 8 e o lugar maior que 8?
72,303
SELECT AVG(draw) FROM table_name_62 WHERE place = 5 AND points > 15
what is the average draw when the place is 5 and points more than 15?
CREATE TABLE table_name_62 (draw INTEGER, place VARCHAR, points VARCHAR)
Qual é o sorteio médio quando o lugar é 5 e aponta mais de 15?
72,304
SELECT MAX(draw) FROM table_name_54 WHERE points < 11 AND language = "norwegian"
what is the highest draw when points is less than 11 and language is norwegian?
CREATE TABLE table_name_54 (draw INTEGER, points VARCHAR, language VARCHAR)
Qual é o maior empate quando os pontos são menores que 11 e a linguagem é norueguesa?
72,305
SELECT COUNT(pick) FROM table_name_62 WHERE pba_team = "purefoods tender juicy hotdogs"
What is the total number of picks from the PBA team of purefoods tender juicy hotdogs?
CREATE TABLE table_name_62 (pick VARCHAR, pba_team VARCHAR)
Qual é o número total de picaretas da equipe PBA de hotdogs suculentos e macios?
72,306
SELECT pba_team FROM table_name_50 WHERE college = "santo tomas"
What is the pba team for the player who went to santo tomas college?
CREATE TABLE table_name_50 (pba_team VARCHAR, college VARCHAR)
Qual é a equipe do pba para o jogador que foi para a faculdade santo tomas?
72,307
SELECT pba_team FROM table_name_41 WHERE pick < 11 AND player = "roberto jabar"
What is the PBA team for roberto jabar who was picked before number 11?
CREATE TABLE table_name_41 (pba_team VARCHAR, pick VARCHAR, player VARCHAR)
Qual é a equipe da PBA para o roberto jabar que foi escolhido antes do número 11?
72,308
SELECT most_spoken_language FROM table_name_91 WHERE code > 70403 AND area__km_2__ > 3.79 AND population > 73 OFFSET 283
What is the Most Spoken language in the Place with Code 70403 with an Area (km 2) larger than 3.79 and a Population larger than 73,283?
CREATE TABLE table_name_91 (most_spoken_language VARCHAR, population VARCHAR, code VARCHAR, area__km_2__ VARCHAR)
Qual é a língua mais falada no local com o código 70403 com uma área (km 2) maior que 3.79 e uma população maior que 73.283?
72,309
SELECT COUNT(population) FROM table_name_51 WHERE area__km_2__ > 498.77
What is the Population of the Place with an Area (km 2) larger than 498.77?
CREATE TABLE table_name_51 (population VARCHAR, area__km_2__ INTEGER)
Qual é a população do lugar com uma área (km 2) maior que 498,77?
72,310
SELECT MIN(population) FROM table_name_66 WHERE code < 70409 AND area__km_2__ < 5.97 AND place = "tshepiso"
What is the Population of Tshepiso with a Code of 70409 or smaller and an Area (km 2) smaller than 5.97?
CREATE TABLE table_name_66 (population INTEGER, place VARCHAR, code VARCHAR, area__km_2__ VARCHAR)
Qual é a população de Tshepiso com um código de 70409 ou menor e uma área (km 2) menor que 5.97?
72,311
SELECT time FROM table_name_76 WHERE react > 0.187 AND athlete = "paul hession"
What the time of Paul Hession with more than an 0.187 react?
CREATE TABLE table_name_76 (time VARCHAR, react VARCHAR, athlete VARCHAR)
Qual é o tempo de Paulo Hession com mais de uma reação de 0,187?
72,312
SELECT MAX(lane) FROM table_name_85 WHERE react < 0.164 AND time = "20.45"
What's the lane number when time was 20.45 and the react was less than 0.164?
CREATE TABLE table_name_85 (lane INTEGER, react VARCHAR, time VARCHAR)
Qual é o número da pista quando o tempo era 20.45 e a reação era inferior a 0.164?
72,313
SELECT 1958 FROM table_name_67 WHERE 1957 = "2" AND 1956 = "3"
what is 1958 when 1957 is 2 and 1956 is 3?
CREATE TABLE table_name_67 (Id VARCHAR)
O que é 1958 quando 1957 é 2 e 1956 é 3?
72,314
SELECT 1955 FROM table_name_78 WHERE 1961 = "n/a"
what is 1955 when 1961 is n/a?
CREATE TABLE table_name_78 (Id VARCHAR)
O que é 1955 quando 1961 é n/a?
72,315
SELECT date FROM table_name_80 WHERE tie_no = "7"
What date has 7 as the tie no.?
CREATE TABLE table_name_80 (date VARCHAR, tie_no VARCHAR)
Que data tem 7 como o empate no.?
72,316
SELECT year FROM table_name_87 WHERE venue = "beijing"
Which year was held in beijing?
CREATE TABLE table_name_87 (year VARCHAR, venue VARCHAR)
Que ano foi realizado em Pequim?
72,317
SELECT COUNT(year) FROM table_name_88 WHERE venue = "eindhoven"
How many years had a Venue of eindhoven?
CREATE TABLE table_name_88 (year VARCHAR, venue VARCHAR)
Quantos anos teve um lugar de eindhoven?
72,318
SELECT competition FROM table_name_92 WHERE venue = "manchester" AND year = 2009
Which Competition has a Venue of manchester in 2009?
CREATE TABLE table_name_92 (competition VARCHAR, venue VARCHAR, year VARCHAR)
Qual competição tem um lugar de manchester em 2009?
72,319
SELECT year FROM table_name_4 WHERE position = "2nd" AND notes = "-63kg" AND venue = "manchester"
Which Year has a Position of 2nd, and Notes of -63kg, and a Venue of manchester?
CREATE TABLE table_name_4 (year VARCHAR, venue VARCHAR, position VARCHAR, notes VARCHAR)
Que ano tem uma posição de 2o, e notas de -63kg, e um local de manchester?
72,320
SELECT best FROM table_name_12 WHERE name = "rodolfo lavín"
Name the the Best of rodolfo lavín
CREATE TABLE table_name_12 (best VARCHAR, name VARCHAR)
Nomeie o melhor de rodolfo lavín
72,321
SELECT qual_2 FROM table_name_15 WHERE team = "american spirit team johansson" AND best = "59.073"
Name the Qual 2 of a Team of american spirit team johansson and a Best of 59.073?
CREATE TABLE table_name_15 (qual_2 VARCHAR, team VARCHAR, best VARCHAR)
Nomeie o Qual 2 de uma equipe de espirito americano johansson e um Best de 59.073?
72,322
SELECT best FROM table_name_47 WHERE qual_2 = "58.700"
Name the Best which has a Qual 2 of 58.700?
CREATE TABLE table_name_47 (best VARCHAR, qual_2 VARCHAR)
Qual o melhor que tem um Qual 2 de 58.700?
72,323
SELECT qual_1 FROM table_name_98 WHERE qual_2 = "58.861"
Which Qual 1 has a Qual 2 of 58.861?
CREATE TABLE table_name_98 (qual_1 VARCHAR, qual_2 VARCHAR)
Qual o valor 1 tem um Qual 2 de 58.861?
72,324
SELECT qual_1 FROM table_name_76 WHERE qual_2 = "59.822"
Which Qual 1 has a Qual 2 of 59.822?
CREATE TABLE table_name_76 (qual_1 VARCHAR, qual_2 VARCHAR)
Qual o valor 1 tem um Qual 2 de 59.822?
72,325
SELECT qual_1 FROM table_name_91 WHERE team = "team player's" AND best = "58.405"
Which Qual 1 has a Team of team player's, and a Best of 58.405?
CREATE TABLE table_name_91 (qual_1 VARCHAR, team VARCHAR, best VARCHAR)
Qual o Qual 1 tem uma Equipe de jogadores de equipe e um Melhor de 58.405?
72,326
SELECT height__m_ FROM table_name_19 WHERE nation = "sweden (swe)" AND weight__kg_ = "102"
what is the height (m) when the nation is sweden (swe) and the weight (kg) is 102?
CREATE TABLE table_name_19 (height__m_ VARCHAR, nation VARCHAR, weight__kg_ VARCHAR)
Qual é a altura (m) quando a nação é sueca (swe) e o peso (kg) é 102?
72,327
SELECT nation FROM table_name_35 WHERE world_rank = "2" AND birth_date = "1976-12-20"
what is the nation when the world rank is 2 and the birth date is 1976-12-20?
CREATE TABLE table_name_35 (nation VARCHAR, world_rank VARCHAR, birth_date VARCHAR)
Qual é a nação quando a classificação mundial é 2 e a data de nascimento é 1976-12-20?
72,328
SELECT nation FROM table_name_88 WHERE world_rank = "6" AND birth_date = "1971-07-31"
what is the nation when the world rank is 6 and the birth date is 1971-07-31?
CREATE TABLE table_name_88 (nation VARCHAR, world_rank VARCHAR, birth_date VARCHAR)
Qual é a nação quando o ranking mundial é 6 e a data de nascimento é 1971-07-31?
72,329
SELECT birth_date FROM table_name_3 WHERE weight__kg_ = "100" AND world_rank = "2"
what is the birth date when the weight (kg) is 100 and the world rank is 2?
CREATE TABLE table_name_3 (birth_date VARCHAR, weight__kg_ VARCHAR, world_rank VARCHAR)
Qual é a data de nascimento quando o peso (kg) é 100 e a classificação mundial é 2?
72,330
SELECT nation FROM table_name_83 WHERE height__m_ = "1.91" AND weight__kg_ = "99"
what is the nation when the height (m) is 1.91 and the weight (kg) is 99?
CREATE TABLE table_name_83 (nation VARCHAR, height__m_ VARCHAR, weight__kg_ VARCHAR)
Qual é a nação quando a altura (m) é 1,91 e o peso (kg) é 99?
72,331
SELECT height__m_ FROM table_name_89 WHERE birth_date = "1968-07-01"
what is the height (m) when the birth date is 1968-07-01?
CREATE TABLE table_name_89 (height__m_ VARCHAR, birth_date VARCHAR)
Qual é a altura (m) quando a data de nascimento é 1968-07-01?
72,332
SELECT nationality FROM table_name_80 WHERE time = "2:12.56"
What is the nationality of the athlete with a time of 2:12.56?
CREATE TABLE table_name_80 (nationality VARCHAR, time VARCHAR)
Qual é a nacionalidade do atleta com um tempo de 2:12.56?
72,333
SELECT time FROM table_name_40 WHERE name = "sara nordenstam"
What time did Sara Nordenstam get?
CREATE TABLE table_name_40 (time VARCHAR, name VARCHAR)
A que horas é que Sara Nordenstam conseguiu?
72,334
SELECT nationality FROM table_name_52 WHERE name = "jessica pengelly"
What nationality is Jessica Pengelly?
CREATE TABLE table_name_52 (nationality VARCHAR, name VARCHAR)
Qual é a nacionalidade de Jessica Pengelly?
72,335
SELECT league_apps FROM table_name_38 WHERE flt_apps = "1" AND total_goals > 0 AND league_goals > 1
What league apps with 1 flt apps, 0 goals, and more than 1 league goals?
CREATE TABLE table_name_38 (league_apps VARCHAR, league_goals VARCHAR, flt_apps VARCHAR, total_goals VARCHAR)
Quais aplicativos da liga com 1 flt apps, 0 gols e mais de 1 gols da liga?
72,336
SELECT COUNT(league_goals) FROM table_name_14 WHERE name = "simon charlton"
What is the total number of league goals for Simon Charlton?
CREATE TABLE table_name_14 (league_goals VARCHAR, name VARCHAR)
Qual é o número total de golos na liga para Simon Charlton?
72,337
SELECT place FROM table_name_35 WHERE score = 65 - 70 - 72 = 207
What was the place when the score was 65-70-72=207?
CREATE TABLE table_name_35 (place VARCHAR, score VARCHAR)
Qual foi o lugar quando a pontuação foi de 65-70-72207?
72,338
SELECT score FROM table_name_21 WHERE place = "4"
What was the score for place 4?
CREATE TABLE table_name_21 (score VARCHAR, place VARCHAR)
Qual foi a pontuação para o lugar 4?
72,339
SELECT player FROM table_name_93 WHERE score = 67 - 73 - 70 = 210
Who scored 67-73-70=210?
CREATE TABLE table_name_93 (player VARCHAR, score VARCHAR)
Quem marcou 67-73-70210?
72,340
SELECT MIN(poles) FROM table_name_61 WHERE wins = 0 AND top_5 = 0 AND position = "66th"
What is the lowest poles that have 0 as a win, 0 as the top 5, with 66th as the postion?
CREATE TABLE table_name_61 (poles INTEGER, position VARCHAR, wins VARCHAR, top_5 VARCHAR)
Quais são os pólos mais baixos que têm 0 como uma vitória, 0 como o top 5, com 66 como a postura?
72,341
SELECT Music AS director FROM table_name_7 WHERE year = 1971 AND movie__in_kannada__ = "kalyani"
Who was the music director in 1971 for the movie Kalyani?
CREATE TABLE table_name_7 (Music VARCHAR, year VARCHAR, movie__in_kannada__ VARCHAR)
Quem foi o diretor musical em 1971 para o filme Kalyani?
72,342
SELECT county FROM table_name_99 WHERE median_family_income = "$50,227"
Which county has a median family income of $50,227?
CREATE TABLE table_name_99 (county VARCHAR, median_family_income VARCHAR)
Qual município tem uma renda familiar média de US $ 50.227?
72,343
SELECT tournament FROM table_name_86 WHERE 2010 = "not held"
What is the tournament when 2010 is not held?
CREATE TABLE table_name_86 (tournament VARCHAR)
O que é o torneio quando 2010 não é realizado?
72,344
SELECT 2009 FROM table_name_98 WHERE 2008 = "a" AND 2012 = "1r" AND 2010 = "q2" AND 2011 = "2r"
What shows for 2009 when 2008 is A, 2012 is 1r, 2010 is q2, and 2011 is 2r?
CREATE TABLE table_name_98 (Id VARCHAR)
O que mostra para 2009 quando 2008 é A, 2012 é 1r, 2010 é q2, e 2011 é 2r?
72,345
SELECT tournament FROM table_name_93 WHERE 2010 = "q2" AND 2009 = "1r"
What is the tournament when 2010 is q2, and 2009 is 1r?
CREATE TABLE table_name_93 (tournament VARCHAR)
Qual é o torneio quando 2010 é q2, e 2009 é 1r?
72,346
SELECT tournament FROM table_name_26 WHERE 2007 = "wta premier 5 tournaments"
What is the tournament when 2007 is WTA Premier 5 tournaments?
CREATE TABLE table_name_26 (tournament VARCHAR)
Qual é o torneio quando 2007 é WTA Premier 5 torneios?
72,347
SELECT tournament FROM table_name_64 WHERE 2012 = "q2"
What is the tournament when 2012 is q2?
CREATE TABLE table_name_64 (tournament VARCHAR)
Qual é o torneio quando 2012 é q2?
72,348
SELECT 2008 FROM table_name_2 WHERE 2010 = "138"
What shows for 2008 when 2010 is 138?
CREATE TABLE table_name_2 (Id VARCHAR)
O que mostra para 2008 quando 2010 é 138?
72,349
SELECT country FROM table_name_55 WHERE time = "7:03.91"
Which country timed at 7:03.91?
CREATE TABLE table_name_55 (country VARCHAR, time VARCHAR)
Que país teve a hora de 7:03.91?
72,350
SELECT time FROM table_name_87 WHERE country = "denmark"
What did Denmark time at?
CREATE TABLE table_name_87 (time VARCHAR, country VARCHAR)
Em que foi a Dinamarca?
72,351
SELECT internet_explorer FROM table_name_47 WHERE firefox = "24.98%"
What was the internet explorer % when firefox was 24.98%?
CREATE TABLE table_name_47 (internet_explorer VARCHAR, firefox VARCHAR)
O que era o Internet Explorer % quando o firefox tinha 24,98%?
72,352
SELECT firefox FROM table_name_95 WHERE chrome = "23.90%"
What was the percentage of firefox was chrome was 23.90%
CREATE TABLE table_name_95 (firefox VARCHAR, chrome VARCHAR)
Qual foi a porcentagem de firefox foi cromo foi 23.90%
72,353
SELECT safari FROM table_name_98 WHERE internet_explorer = "20.27%"
What was the percentage of safari when internet explorer was 20.27%?
CREATE TABLE table_name_98 (safari VARCHAR, internet_explorer VARCHAR)
Qual foi a porcentagem de safári quando o explorador da internet era de 20,27%?
72,354
SELECT firefox FROM table_name_86 WHERE chrome = "25.08%"
What was the firefox % was chrome was 25.08%?
CREATE TABLE table_name_86 (firefox VARCHAR, chrome VARCHAR)
O que foi o firefox % foi cromo foi 25.08%?
72,355
SELECT safari FROM table_name_10 WHERE firefox = "24.66%"
What was the percentage of safari when firefox was 24.66%
CREATE TABLE table_name_10 (safari VARCHAR, firefox VARCHAR)
Qual foi a porcentagem de safári quando o firefox foi de 24,66%
72,356
SELECT label FROM table_name_77 WHERE date = "february 18, 2009"
Which label released on February 18, 2009?
CREATE TABLE table_name_77 (label VARCHAR, date VARCHAR)
Qual selo lançado em 18 de fevereiro de 2009?
72,357
SELECT date FROM table_name_22 WHERE format = "cd" AND label = "avex entertainment"
When did Avex Entertainment release a CD?
CREATE TABLE table_name_22 (date VARCHAR, format VARCHAR, label VARCHAR)
Quando a Avex Entertainment lançou um CD?
72,358
SELECT date FROM table_name_87 WHERE label = "hollywood records" AND format = "digital download"
When did Hollywood Records release a digital download?
CREATE TABLE table_name_87 (date VARCHAR, label VARCHAR, format VARCHAR)
Quando a Hollywood Records lançou um download digital?
72,359
SELECT edition FROM table_name_69 WHERE date = "september 23, 2008" AND region = "united states"
What kind of edition was released September 23, 2008 from the United States?
CREATE TABLE table_name_69 (edition VARCHAR, date VARCHAR, region VARCHAR)
Que tipo de edição foi lançada em 23 de setembro de 2008 nos Estados Unidos?
72,360
SELECT format FROM table_name_55 WHERE date = "april 16, 2009"
What format was released April 16, 2009?
CREATE TABLE table_name_55 (format VARCHAR, date VARCHAR)
Que formato foi lançado em 16 de abril de 2009?
72,361
SELECT call_sign FROM table_name_6 WHERE branding = "1062 dxki koronadal"
What's the call sign if the branding is 1062 DXKI Koronadal?
CREATE TABLE table_name_6 (call_sign VARCHAR, branding VARCHAR)
Qual é o sinal de chamada se a marca é 1062 DXKI Koronadal?
72,362
SELECT branding FROM table_name_5 WHERE frequency = "1233khz"
What's the branding for frequency 1233khz?
CREATE TABLE table_name_5 (branding VARCHAR, frequency VARCHAR)
Qual é a marca da frequência 1233khz?
72,363
SELECT call_sign FROM table_name_17 WHERE power__kw_ = "20kw"
What's the call sign that has 20kw of power?
CREATE TABLE table_name_17 (call_sign VARCHAR, power__kw_ VARCHAR)
Qual é o sinal de chamada que tem 20kw de poder?
72,364
SELECT location FROM table_name_89 WHERE branding = "1116 dxas zamboanga"
What's the location when the branding is 1116 DXAS Zamboanga?
CREATE TABLE table_name_89 (location VARCHAR, branding VARCHAR)
Qual é a localização quando a marca é 1116 DXAS Zamboanga?
72,365
SELECT location FROM table_name_22 WHERE frequency = "1197khz"
What's the location of the 1197khz frequency?
CREATE TABLE table_name_22 (location VARCHAR, frequency VARCHAR)
Qual é a localização da freqência 1197khz?
72,366
SELECT frequency FROM table_name_50 WHERE power__kw_ = "10kw" AND call_sign = "dyfr"
What's the frequency of the call sign DYFR with 10KW of power?
CREATE TABLE table_name_50 (frequency VARCHAR, power__kw_ VARCHAR, call_sign VARCHAR)
Qual é a frequência do sinal de chamada DYFR com 10KW de potência?
72,367
SELECT MAX(rank) FROM table_name_38 WHERE country = "hungary"
What is Hungary's highest Rank?
CREATE TABLE table_name_38 (rank INTEGER, country VARCHAR)
Qual é a classificação mais alta da Hungria?
72,368
SELECT notes FROM table_name_31 WHERE rank = 4
What is the Notes of the Country with a Rank of 4?
CREATE TABLE table_name_31 (notes VARCHAR, rank VARCHAR)
O que são as notas do país com uma classificação de 4?
72,369
SELECT country FROM table_name_14 WHERE time = "6:14.84"
What country had a Time of 6:14.84?
CREATE TABLE table_name_14 (country VARCHAR, time VARCHAR)
Que país teve um Tempo de 6:14.84?
72,370
SELECT nationality FROM table_name_36 WHERE lane = 5 AND time = "7:08.04"
Which Nationality has a Lane of 5, and a Time of 7:08.04?
CREATE TABLE table_name_36 (nationality VARCHAR, lane VARCHAR, time VARCHAR)
Qual Nacionalidade tem uma Faixa de 5, e uma Hora de 7:08.04?
72,371
SELECT MAX(heat) FROM table_name_16 WHERE rank = 8
Which Heat has a Rank of 8?
CREATE TABLE table_name_16 (heat INTEGER, rank VARCHAR)
Qual calor tem uma classificação de 8?
72,372
SELECT season FROM table_name_88 WHERE finals = "out of playoffs."
Which Season has Finals of out of playoffs.?
CREATE TABLE table_name_88 (season VARCHAR, finals VARCHAR)
Qual temporada tem finais fora dos playoffs?
72,373
SELECT assist_pass FROM table_name_22 WHERE location = "albufeira"
What's Albufeira's assist/pass?
CREATE TABLE table_name_22 (assist_pass VARCHAR, location VARCHAR)
O que é o passe/assistência de Albufeira?
72,374
SELECT lineup FROM table_name_42 WHERE assist_pass = "unassisted"
What's the lineup when the assist/pass was Unassisted?
CREATE TABLE table_name_42 (lineup VARCHAR, assist_pass VARCHAR)
Qual é a programação quando a assistência/passagem não foi assistida?
72,375
SELECT date FROM table_name_13 WHERE result = "3-1" AND location = "hague"
What date was the result 3-1 in Hague?
CREATE TABLE table_name_13 (date VARCHAR, result VARCHAR, location VARCHAR)
Qual foi a data do resultado 3-1 em Haia?
72,376
SELECT SUM(total) FROM table_name_35 WHERE rank = "total" AND silver < 10
what is the total when the rank is total and the silver is less than 10?
CREATE TABLE table_name_35 (total INTEGER, rank VARCHAR, silver VARCHAR)
Qual é o total quando a classificação é total e a prata é menor que 10?
72,377
SELECT MIN(silver) FROM table_name_93 WHERE gold < 0
what is the least silver when gold is 0?
CREATE TABLE table_name_93 (silver INTEGER, gold INTEGER)
Qual é a menor prata quando o ouro é 0?
72,378
SELECT COUNT(silver) FROM table_name_85 WHERE total = 30 AND bronze > 10
what is the total silver when total is 30 and bronze is more than 10?
CREATE TABLE table_name_85 (silver VARCHAR, total VARCHAR, bronze VARCHAR)
Qual é a prata total quando o total é 30 e o bronze é mais do que 10?
72,379
SELECT SUM(total) FROM table_name_37 WHERE bronze > 1 AND nation = "hong kong (hkg)" AND gold < 3
what is the total when bronze is more than 1, nation is hong kong (hkg) and gold is less than 3?
CREATE TABLE table_name_37 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR)
Qual é o total quando o bronze é maior que 1, a nação é hong kong (hkg) e o ouro é menor que 3?
72,380
SELECT position FROM table_name_92 WHERE class = "a" AND laps = 125
The driver in class A with 125 laps is in what position?
CREATE TABLE table_name_92 (position VARCHAR, class VARCHAR, laps VARCHAR)
O condutor da classe A com 125 voltas está em que posição?
72,381
SELECT COUNT(laps) FROM table_name_53 WHERE entrant = "peter hopwood"
Peter Hopwood has how many laps in all?
CREATE TABLE table_name_53 (laps VARCHAR, entrant VARCHAR)
Peter Hopwood tem quantas voltas?
72,382
SELECT class FROM table_name_65 WHERE laps = 66
For what class is the laps 66?
CREATE TABLE table_name_65 (class VARCHAR, laps VARCHAR)
Para que classe são as voltas 66?
72,383
SELECT SUM(matches) FROM table_name_78 WHERE average > 6.33 AND rank = 1
What is the number of matches with an average larger than 6.33, with a rank of 1?
CREATE TABLE table_name_78 (matches INTEGER, average VARCHAR, rank VARCHAR)
Qual é o número de jogos com uma média maior que 6,33, com uma classificação de 1?
72,384
SELECT MIN(total) FROM table_name_41 WHERE matches < 3 AND rank < 2
What is the total when matches is less than 3, and rank is smaller than 2?
CREATE TABLE table_name_41 (total INTEGER, matches VARCHAR, rank VARCHAR)
Qual é o total quando as partidas são menores que 3 e a classificação é menor que 2?
72,385
SELECT COUNT(average) FROM table_name_27 WHERE tally = "3–11" AND matches > 4
What is the average when the tally is 3–11, with more than 4 matches??
CREATE TABLE table_name_27 (average VARCHAR, tally VARCHAR, matches VARCHAR)
Qual é a média quando a contagem é de 311, com mais de 4 partidas??
72,386
SELECT AVG(rank) FROM table_name_23 WHERE average = 6.33
What rank has an average of 6.33?
CREATE TABLE table_name_23 (rank INTEGER, average VARCHAR)
Qual classificação tem uma média de 6,33?
72,387
SELECT AVG(laps) FROM table_name_6 WHERE pos = "dnf"
What is the average number of laps with a dnf pos.?
CREATE TABLE table_name_6 (laps INTEGER, pos VARCHAR)
Qual é o número médio de voltas com um dnf pos.?
72,388
SELECT MIN(rank) FROM table_name_77 WHERE country = "guam"
What is the lowest Rank for a Guam Player?
CREATE TABLE table_name_77 (rank INTEGER, country VARCHAR)
Qual é a classificação mais baixa para um jogador de Guam?
72,389
SELECT AVG(rank) FROM table_name_83 WHERE country = "guam"
What is the Rank of the Guam Player?
CREATE TABLE table_name_83 (rank INTEGER, country VARCHAR)
Qual é a classificação do jogador de Guam?
72,390
SELECT MAX(week) FROM table_name_8 WHERE result = "l 20–13" AND attendance > 49 OFFSET 598
Which Week has a Result of l 20–13, and an Attendance larger than 49,598?
CREATE TABLE table_name_8 (week INTEGER, result VARCHAR, attendance VARCHAR)
Qual semana tem um resultado de 20-13, e um comparecimento maior que 49.598?
72,391
SELECT COUNT(week) FROM table_name_12 WHERE opponent = "at san francisco 49ers" AND attendance < 34 OFFSET 354
How many weeks have an Opponent of at san francisco 49ers, and an Attendance smaller than 34,354?
CREATE TABLE table_name_12 (week VARCHAR, opponent VARCHAR, attendance VARCHAR)
Quantas semanas tem um adversário em São Francisco 49ers, e um comparecimento menor que 34.354?
72,392
SELECT result FROM table_name_3 WHERE opponent = "washington redskins"
Which Result has an Opponent of washington redskins?
CREATE TABLE table_name_3 (result VARCHAR, opponent VARCHAR)
Qual resultado tem um oposto de washington redskins?
72,393
SELECT SUM(week) FROM table_name_78 WHERE opponent = "dallas cowboys"
What week did the dallas cowboys play?
CREATE TABLE table_name_78 (week INTEGER, opponent VARCHAR)
Que semana é que os cowboys dallas jogaram?
72,394
SELECT AVG(react) FROM table_name_53 WHERE time < 20.05 AND nationality = "jamaica" AND lane > 5
Name the average React of the Time smaller than 20.05 in jamaica with a Lane larger than 5?
CREATE TABLE table_name_53 (react INTEGER, lane VARCHAR, time VARCHAR, nationality VARCHAR)
Nomeie o React médio do Tempo menor que 20.05 em jamaica com uma Faixa maior que 5?
72,395
SELECT fencing_victories__pts_ FROM table_name_61 WHERE shooting_score__pts_ = "187 (1180)" AND total < 5640
Which Fencing Victories (pts) has a Shooting Score (pts) of 187 (1180) and a Total smaller than 5640? Question 1
CREATE TABLE table_name_61 (fencing_victories__pts_ VARCHAR, shooting_score__pts_ VARCHAR, total VARCHAR)
Which Esgrima Vitórias (pts) tem um Shooting Score (pts) de 187 (1180) e um Total menor que 5640? Pergunta 1
72,396
SELECT equestrian_time__pts_ FROM table_name_3 WHERE athlete = "omnia fakhry ( egy )"
Which Equestrian Time (pts) has an Athlete of omnia fakhry ( egy )?
CREATE TABLE table_name_3 (equestrian_time__pts_ VARCHAR, athlete VARCHAR)
Qual tempo equestre (pts) tem um atleta de omnia fakhry (egy)?
72,397
SELECT shooting_score__pts_ FROM table_name_7 WHERE total > 5464 AND athlete = "heather fell ( gbr )"
Which Shooting Score (pts) has a Total larger than 5464 and a Athlete of heather fell ( gbr )?
CREATE TABLE table_name_7 (shooting_score__pts_ VARCHAR, total VARCHAR, athlete VARCHAR)
Qual Shooting Score (pts) tem um Total maior que 5464 e um Atleta de urze caiu (gbr)?
72,398
SELECT fencing_victories__pts_ FROM table_name_78 WHERE equestrian_time__pts_ = "67.88 (1144)"
Which Fencing Victories (pts) that has a Equestrian Time (pts) of 67.88 (1144)?
CREATE TABLE table_name_78 (fencing_victories__pts_ VARCHAR, equestrian_time__pts_ VARCHAR)
Que Vitórias de Esgrima (pts) que tem um Tempo Equestre (pts) de 67,88 (1144)?
72,399
SELECT fencing_victories__pts_ FROM table_name_68 WHERE total = 5640
Which Fencing Victories (pts) has a Total of 5640?
CREATE TABLE table_name_68 (fencing_victories__pts_ VARCHAR, total VARCHAR)
Quais vitórias de esgrima (pts) tem um total de 5640?