Unnamed: 0
int64
0
78.6k
answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
translated_answer
stringlengths
12
992
75,900
SELECT against FROM table_name_99 WHERE result = "3–6, 2–6"
Who was played against with a result of 3–6, 2–6?
CREATE TABLE table_name_99 (against VARCHAR, result VARCHAR)
Quem foi jogado contra com um resultado de 36, 26?
75,901
SELECT MIN(year) FROM table_name_92 WHERE venue = "paris, france"
Name the least year for paris, france venue
CREATE TABLE table_name_92 (year INTEGER, venue VARCHAR)
Nomear o ano mínimo para paris, local da França
75,902
SELECT SUM(pick) FROM table_name_72 WHERE school = "mckinney high school"
What's the total number of picks for mckinney high school?
CREATE TABLE table_name_72 (pick INTEGER, school VARCHAR)
Qual é o número total de escolhas para a escola secundária de McKinney?
75,903
SELECT MAX(pick) FROM table_name_31 WHERE player = "adam jones"
What was the highest pick for the player Adam Jones?
CREATE TABLE table_name_31 (pick INTEGER, player VARCHAR)
Qual foi a melhor escolha para o jogador Adam Jones?
75,904
SELECT SUM(pick) FROM table_name_25 WHERE player = "matt murton"
What's the total number of picks for the player Matt Murton?
CREATE TABLE table_name_25 (pick INTEGER, player VARCHAR)
Qual é o número total de escolhas para o jogador Matt Murton?
75,905
SELECT position FROM table_name_86 WHERE pick = 32
What position was pick 32?
CREATE TABLE table_name_86 (position VARCHAR, pick VARCHAR)
Qual foi a posição escolhida 32?
75,906
SELECT winner FROM table_name_49 WHERE circuit = "barbagallo raceway"
Who won at the Barbagallo Raceway circuit?
CREATE TABLE table_name_49 (winner VARCHAR, circuit VARCHAR)
Quem ganhou no circuito de Barbagallo Raceway?
75,907
SELECT race_title FROM table_name_72 WHERE circuit = "oran park raceway"
What was the title of the race at Oran Park Raceway?
CREATE TABLE table_name_72 (race_title VARCHAR, circuit VARCHAR)
Qual foi o título da corrida no Oran Park Raceway?
75,908
SELECT winner FROM table_name_17 WHERE circuit = "oran park raceway"
Who won at the Oran Park Raceway?
CREATE TABLE table_name_17 (winner VARCHAR, circuit VARCHAR)
Quem ganhou no Oran Park Raceway?
75,909
SELECT city___state FROM table_name_70 WHERE winner = "jim richards" AND circuit = "winton motor raceway"
When Jim Richards won at the Winton Motor Raceway circuit, what was the city and state listed?
CREATE TABLE table_name_70 (city___state VARCHAR, winner VARCHAR, circuit VARCHAR)
Quando Jim Richards venceu no circuito Winton Motor Raceway, qual era a cidade e o estado listados?
75,910
SELECT capacity__thousands_of_metric_tons_ FROM table_name_83 WHERE operator = "cyprus amax minerals"
What is the capacity of the mine that is operated by Cyprus Amax minerals?
CREATE TABLE table_name_83 (capacity__thousands_of_metric_tons_ VARCHAR, operator VARCHAR)
Qual é a capacidade da mina que é operada por minerais Cyprus Amax?
75,911
SELECT rank FROM table_name_56 WHERE county = "pima" AND mine = "silver bell"
What rank is the Silver Bell mine of Pima county?
CREATE TABLE table_name_56 (rank VARCHAR, county VARCHAR, mine VARCHAR)
Qual é a classificação da mina Silver Bell do condado de Pima?
75,912
SELECT capacity__thousands_of_metric_tons_ FROM table_name_67 WHERE county = "gila" AND mine = "pinto valley"
What is the capacity of the Pinto Valley mine in Gila county?
CREATE TABLE table_name_67 (capacity__thousands_of_metric_tons_ VARCHAR, county VARCHAR, mine VARCHAR)
Qual é a capacidade da mina do Vale do Pinto no condado de Gila?
75,913
SELECT 1 AS st_leg FROM table_name_31 WHERE agg = "10-2"
What is the first leg with an agg of 10-2?
CREATE TABLE table_name_31 (agg VARCHAR)
Qual é a primeira perna com um agg de 10-2?
75,914
SELECT agg FROM table_name_38 WHERE team_2 = "vantour club mangoungou"
What is the agg of team 2 for Vantour Club Mangoungou?
CREATE TABLE table_name_38 (agg VARCHAR, team_2 VARCHAR)
Qual é a vantagem da equipe 2 para o Vantour Club Mangoungou?
75,915
SELECT 1 AS st_leg FROM table_name_19 WHERE team_1 = "hardware stars"
What is the first leg of team 1 for Hardware stars?
CREATE TABLE table_name_19 (team_1 VARCHAR)
Qual é a primeira etapa da equipe 1 para estrelas de hardware?
75,916
SELECT date FROM table_name_58 WHERE opponent = "siena" AND ground = "home"
On what date was the game played at home against the opponent Siena?
CREATE TABLE table_name_58 (date VARCHAR, opponent VARCHAR, ground VARCHAR)
Em que data o jogo foi jogado em casa contra o oponente Siena?
75,917
SELECT time FROM table_name_32 WHERE opponent = "cagliari" AND round = "16"
What time was the game played against Cagliari that lasted 16 rounds?
CREATE TABLE table_name_32 (time VARCHAR, opponent VARCHAR, round VARCHAR)
A que horas foi jogado o jogo contra Cagliari, que durou 16 rounds?
75,918
SELECT ground FROM table_name_7 WHERE score = "3-2" AND time = "15:00 cet"
Where was the game played that had a score of 3-2 and a time of 15:00 cet?
CREATE TABLE table_name_7 (ground VARCHAR, score VARCHAR, time VARCHAR)
Onde foi jogado o jogo que teve uma pontuação de 3-2 e um tempo de 15:00 cet?
75,919
SELECT score FROM table_name_49 WHERE date = "april 18"
What was the score on April 18?
CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR)
Qual foi a pontuação em 18 de abril?
75,920
SELECT attendance FROM table_name_77 WHERE loss = "nakamura (0-1)"
What was the attendance when Nakamura (0-1) lost?
CREATE TABLE table_name_77 (attendance VARCHAR, loss VARCHAR)
Qual foi o comparecimento quando Nakamura (0-1) perdeu?
75,921
SELECT record FROM table_name_6 WHERE loss = "lilly (0-1)"
What was their record when they lost with Lilly (0-1) pitching?
CREATE TABLE table_name_6 (record VARCHAR, loss VARCHAR)
Qual foi o seu recorde quando eles perderam com Lilly (0-1) arremesso?
75,922
SELECT record FROM table_name_51 WHERE attendance = "26,827"
What was their record when the attendance was 26,827?
CREATE TABLE table_name_51 (record VARCHAR, attendance VARCHAR)
Qual era o registro deles quando a assistência era de 26.827?
75,923
SELECT december FROM table_name_76 WHERE february = "anne-marie fox"
Who is the December playmate with a February playmate Anne-Marie Fox?
CREATE TABLE table_name_76 (december VARCHAR, february VARCHAR)
Quem é o companheiro de dezembro com um companheiro de fevereiro Anne-Marie Fox?
75,924
SELECT august FROM table_name_51 WHERE october = "shannon long"
Who is the August playmate with the October playmate Shannon Long?
CREATE TABLE table_name_51 (august VARCHAR, october VARCHAR)
Quem é o companheiro de jogo de agosto com o companheiro de outubro Shannon Long?
75,925
SELECT december FROM table_name_72 WHERE november = "marlene janssen"
Who is the December playmate with a November playmate Marlene Janssen?
CREATE TABLE table_name_72 (december VARCHAR, november VARCHAR)
Quem é a companheira de dezembro com uma colega de novembro, Marlene Janssen?
75,926
SELECT november FROM table_name_66 WHERE july = "hope marie carlton"
Who is the November playmate with the July playmate Hope Marie Carlton?
CREATE TABLE table_name_66 (november VARCHAR, july VARCHAR)
Quem é o companheiro de novembro com a companheira de julho Hope Marie Carlton?
75,927
SELECT march FROM table_name_53 WHERE august = "gianna amore"
Who is the March playmate with an August playmate Gianna Amore?
CREATE TABLE table_name_53 (march VARCHAR, august VARCHAR)
Quem é o companheiro de março com uma companheira de agosto Gianna Amore?
75,928
SELECT january FROM table_name_66 WHERE november = "donna edmondson"
Who is the January playmate with the November playmate Donna Edmondson?
CREATE TABLE table_name_66 (january VARCHAR, november VARCHAR)
Quem é o companheiro de janeiro com a companheira de novembro Donna Edmondson?
75,929
SELECT stadium FROM table_name_10 WHERE host_team = "tennessee titans"
What is the home stadium of the Tennessee Titans?
CREATE TABLE table_name_10 (stadium VARCHAR, host_team VARCHAR)
Qual é o estádio do Tennessee Titans?
75,930
SELECT MAX(week) FROM table_name_29 WHERE visiting_team = "houston texans"
When were the Houston Texans the visiting team later in the season?
CREATE TABLE table_name_29 (week INTEGER, visiting_team VARCHAR)
Quando os Houston Texans foram a equipe visitante no final da temporada?
75,931
SELECT date FROM table_name_18 WHERE final_score = "24-34"
The final score was 24-34 on what date?
CREATE TABLE table_name_18 (date VARCHAR, final_score VARCHAR)
A pontuação final foi 24-34 em que data?
75,932
SELECT SUM(gold) FROM table_name_24 WHERE silver = 2 AND total < 7
What is the total number of gold medals won by nations that won 2 silver medals but fewer than 7 in total?
CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, total VARCHAR)
Qual é o número total de medalhas de ouro conquistadas por nações que ganharam 2 medalhas de prata, mas menos de 7 no total?
75,933
SELECT SUM(total) FROM table_name_26 WHERE bronze = 7 AND gold > 18
What is the total number of medals won by nations that had 7 bronze medals and more than 18 gold medals?
CREATE TABLE table_name_26 (total INTEGER, bronze VARCHAR, gold VARCHAR)
Qual é o número total de medalhas conquistadas por nações que tinham 7 medalhas de bronze e mais de 18 medalhas de ouro?
75,934
SELECT MIN(gold) FROM table_name_47 WHERE silver > 11 AND rank = "1" AND bronze < 7
What nation with Rank 1 won the fewest gold medals while winning more than 11 silver but fewer than 7 bronze medals?
CREATE TABLE table_name_47 (gold INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR)
Qual nação com o Rank 1 ganhou o menor número de medalhas de ouro enquanto ganhava mais de 11 medalhas de prata, mas menos de 7 medalhas de bronze?
75,935
SELECT MAX(total) FROM table_name_43 WHERE bronze = 7 AND silver > 12
What is the highest total medals won by a nation that had 7 bronze but more than 12 silver medals?
CREATE TABLE table_name_43 (total INTEGER, bronze VARCHAR, silver VARCHAR)
Quais são as maiores medalhas totais conquistadas por uma nação que tinha 7 medalhas de bronze, mas mais de 12 medalhas de prata?
75,936
SELECT MIN(gold) FROM table_name_4 WHERE total = 37 AND rank = "1" AND bronze > 7
What nation won the fewest gold medals while being in Rank 1, with a total of 37 medals and more than 7 bronze medals?
CREATE TABLE table_name_4 (gold INTEGER, bronze VARCHAR, total VARCHAR, rank VARCHAR)
Que nação ganhou o menor número de medalhas de ouro enquanto estava no Rank 1, com um total de 37 medalhas e mais de 7 medalhas de bronze?
75,937
SELECT score FROM table_name_84 WHERE opponent = "yuliya ustyuzhanina"
Name the score for yuliya ustyuzhanina
CREATE TABLE table_name_84 (score VARCHAR, opponent VARCHAR)
Nomear a pontuação para yuliya ustyuzhanina
75,938
SELECT date FROM table_name_84 WHERE surface = "hard" AND tournament = "fort walton beach"
Name the date for hard surface and tournament of fort walton beach
CREATE TABLE table_name_84 (date VARCHAR, surface VARCHAR, tournament VARCHAR)
Nomear a data para a superfície dura e torneio de Fort Walton Beach
75,939
SELECT opponent FROM table_name_7 WHERE score = "1–6, 6–4, 6–4"
Name the opponent with score of 1–6, 6–4, 6–4
CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR)
Nomeie o adversário com uma pontuação de 16, 64, 64
75,940
SELECT score FROM table_name_43 WHERE date = "10 april 2007" AND opponent = "selima sfar"
Name the score for 10 april 2007 and opponent of selima sfar
CREATE TABLE table_name_43 (score VARCHAR, date VARCHAR, opponent VARCHAR)
Nomear o resultado para 10 de abril de 2007 e adversário de selima sfar
75,941
SELECT COUNT(runners) FROM table_name_34 WHERE placing > 8
How many runners had placings over 8?
CREATE TABLE table_name_34 (runners VARCHAR, placing INTEGER)
Quantos corredores tiveram mais de 8?
75,942
SELECT course FROM table_name_22 WHERE jockey = "royston ffrench"
Which course had a jockey of Royston FFrench?
CREATE TABLE table_name_22 (course VARCHAR, jockey VARCHAR)
Qual curso tinha um jóquei de Royston FFrench?
75,943
SELECT AVG(prize__) AS £k_ FROM table_name_33 WHERE race = "buttercross limited stakes"
What is the average prize for the Buttercross Limited Stakes?
CREATE TABLE table_name_33 (prize__ INTEGER, race VARCHAR)
Qual é o prêmio médio para o Buttercross Limited Stakes?
75,944
SELECT SUM(runners) FROM table_name_81 WHERE jockey = "olivier peslier" AND placing < 2
How many total runners had jockeys of Olivier Peslier with placings under 2?
CREATE TABLE table_name_81 (runners INTEGER, jockey VARCHAR, placing VARCHAR)
Quantos corredores totais tiveram jockeys de Olivier Peslier com colocações abaixo de 2?
75,945
SELECT games FROM table_name_71 WHERE marks = "21"
Name the games with marks of 21
CREATE TABLE table_name_71 (games VARCHAR, marks VARCHAR)
Nomeie os jogos com marcas de 21
75,946
SELECT kicks FROM table_name_40 WHERE goals = "1"
Name the kicks with goals of 1
CREATE TABLE table_name_40 (kicks VARCHAR, goals VARCHAR)
Nomeie os chutes com gols de 1
75,947
SELECT goals FROM table_name_65 WHERE games = "6"
Name the goals with games of 6
CREATE TABLE table_name_65 (goals VARCHAR, games VARCHAR)
Nomeie os gols com jogos de 6
75,948
SELECT date FROM table_name_35 WHERE final_score = "7-23"
What game had the date was it with the final score of 7-23
CREATE TABLE table_name_35 (date VARCHAR, final_score VARCHAR)
Que jogo teve a data foi com a pontuação final de 7-23
75,949
SELECT final_score FROM table_name_74 WHERE stadium = "astrodome"
What was the final score of the game at the astrodome?
CREATE TABLE table_name_74 (final_score VARCHAR, stadium VARCHAR)
Qual foi a pontuação final do jogo no astrodome?
75,950
SELECT final_score FROM table_name_99 WHERE date = "december 30"
What was the final score for the date of December 30?
CREATE TABLE table_name_99 (final_score VARCHAR, date VARCHAR)
Qual foi a pontuação final para a data de 30 de dezembro?
75,951
SELECT visiting_team FROM table_name_90 WHERE stadium = "jack murphy stadium"
What was the name of the Visiting team at Jack Murphy Stadium?
CREATE TABLE table_name_90 (visiting_team VARCHAR, stadium VARCHAR)
Qual era o nome da equipe visitante no Jack Murphy Stadium?
75,952
SELECT host_team FROM table_name_1 WHERE stadium = "texas stadium"
What was the name of the host team at Texas stadium?
CREATE TABLE table_name_1 (host_team VARCHAR, stadium VARCHAR)
Qual era o nome da equipe anfitriã no estádio do Texas?
75,953
SELECT host_team FROM table_name_39 WHERE date = "december 16"
What was the name of the host team dated December 16?
CREATE TABLE table_name_39 (host_team VARCHAR, date VARCHAR)
Qual era o nome da equipe anfitriã datada de 16 de dezembro?
75,954
SELECT team FROM table_name_21 WHERE year > 1997
Are there any Teams after 1997?
CREATE TABLE table_name_21 (team VARCHAR, year INTEGER)
Há equipes depois de 1997?
75,955
SELECT class FROM table_name_85 WHERE laps < 77
Which class has laps under 77?
CREATE TABLE table_name_85 (class VARCHAR, laps INTEGER)
Qual classe tem menos de 77 voltas?
75,956
SELECT boarded FROM table_name_48 WHERE class = "first"
Who boarded first class?
CREATE TABLE table_name_48 (boarded VARCHAR, class VARCHAR)
Quem embarcou na primeira classe?
75,957
SELECT MIN(attendance) FROM table_name_80 WHERE away_fans < 151 AND opponent = "bury"
What was the lowest attendance at a game when there were fewer than 151 away fans and an opponent of Bury?
CREATE TABLE table_name_80 (attendance INTEGER, away_fans VARCHAR, opponent VARCHAR)
Qual foi o menor comparecimento em um jogo quando havia menos de 151 torcedores fora e um oponente de Bury?
75,958
SELECT MIN(points) FROM table_name_15 WHERE year = 1978 AND chassis = "ensign n177"
What are the lowest number of points with a Year of 1978, and a Chassis of ensign n177?
CREATE TABLE table_name_15 (points INTEGER, year VARCHAR, chassis VARCHAR)
Qual é o menor número de pontos com um ano de 1978, e um chassi de insígnia n177?
75,959
SELECT MAX(points) FROM table_name_8 WHERE entrant = "warsteiner brewery"
What are the highest number of points with an Entrant of warsteiner brewery?
CREATE TABLE table_name_8 (points INTEGER, entrant VARCHAR)
Qual é o maior número de pontos com um participante da cervejaria Warsteiner?
75,960
SELECT d_43 FROM table_name_68 WHERE d_46 = "r 6"
What is the D 43 when D 46 is R 6?
CREATE TABLE table_name_68 (d_43 VARCHAR, d_46 VARCHAR)
O que é o D 43 quando D 46 é R 6?
75,961
SELECT d_44 FROM table_name_64 WHERE d_43 = "r 14"
What is the D44 when D43 is R 14?
CREATE TABLE table_name_64 (d_44 VARCHAR, d_43 VARCHAR)
O que é o D44 quando D43 é R 14?
75,962
SELECT d_48 FROM table_name_27 WHERE d_43 = "plurality ↑"
What is the D48 when D 43 is plurality ↑??
CREATE TABLE table_name_27 (d_48 VARCHAR, d_43 VARCHAR)
O que é o D48 quando D 43 é pluralidade ??
75,963
SELECT d_44 FROM table_name_70 WHERE d_41 = "d 16"
What is the D44 when D41 is D 16?
CREATE TABLE table_name_70 (d_44 VARCHAR, d_41 VARCHAR)
O que é o D44 quando D41 é D 16?
75,964
SELECT gender FROM table_name_95 WHERE decile = 5 AND area = "dalefield"
What gender is the team that has a decile of 5 and in the Dalefield area?
CREATE TABLE table_name_95 (gender VARCHAR, decile VARCHAR, area VARCHAR)
Qual é o gênero da equipe que tem um decil de 5 e na área de Dalefield?
75,965
SELECT name FROM table_name_61 WHERE roll < 81 AND area = "dalefield"
What school in Dalefield has a roll less than 81?
CREATE TABLE table_name_61 (name VARCHAR, roll VARCHAR, area VARCHAR)
Que escola em Dalefield tem um rolo menos de 81?
75,966
SELECT MIN(height__m_) FROM table_name_22 WHERE island = "burray"
What is the lowest Height (m) on the island of Burray?
CREATE TABLE table_name_22 (height__m_ INTEGER, island VARCHAR)
Qual é a altura mais baixa (m) na ilha de Burray?
75,967
SELECT group FROM table_name_99 WHERE height__m_ = 32 AND population = "0" AND island = "faray"
What group on the island of Faray has a Height (m) of 32 and a Population of 0?
CREATE TABLE table_name_99 (group VARCHAR, island VARCHAR, height__m_ VARCHAR, population VARCHAR)
Que grupo na ilha de Faray tem uma Altura (m) de 32 e uma População de 0?
75,968
SELECT group FROM table_name_23 WHERE population = "see hoy"
What group has a Population of see hoy?
CREATE TABLE table_name_23 (group VARCHAR, population VARCHAR)
Qual o grupo que tem uma população de See Hoy?
75,969
SELECT group FROM table_name_49 WHERE population = "0" AND island = "muckle green holm"
What group on the island of Muckle Green Holm has a population of 0?
CREATE TABLE table_name_49 (group VARCHAR, population VARCHAR, island VARCHAR)
Que grupo na ilha de Muckle Green Holm tem uma população de 0?
75,970
SELECT area___ha__ FROM table_name_31 WHERE height__m_ > 7 AND island = "linga holm"
What is the area (ha) of the group on the island of Linga Holm that has a Height (m) larger than 7?
CREATE TABLE table_name_31 (area___ha__ VARCHAR, height__m_ VARCHAR, island VARCHAR)
Qual é a área (ha) do grupo na ilha de Linga Holm que tem uma altura (m) maior que 7?
75,971
SELECT population FROM table_name_30 WHERE height__m_ = 15 AND area___ha__ = "00017 17"
What is the Population of the group that has a Height (m) of 15 and an Area (ha) of 00017 17?
CREATE TABLE table_name_30 (population VARCHAR, height__m_ VARCHAR, area___ha__ VARCHAR)
Qual é a População do grupo que tem uma Altura (m) de 15 e uma Área (ha) de 00017 17?
75,972
SELECT roll FROM table_name_86 WHERE area = "aramoho" AND decile = 1
What is the roll number of the school in Aramoho with a decile of 1?
CREATE TABLE table_name_86 (roll VARCHAR, area VARCHAR, decile VARCHAR)
Qual é o número de rolo da escola em Aramoho com um decil de 1?
75,973
SELECT area FROM table_name_54 WHERE name = "mangamahu primary school"
What is the area of Mangamahu primary school?
CREATE TABLE table_name_54 (area VARCHAR, name VARCHAR)
Qual é a área da escola primária de Mangamahu?
75,974
SELECT area FROM table_name_17 WHERE authority = "state" AND gender = "coed" AND roll = 122
What is the area of the coed school with a state authority and a roll number of 122?
CREATE TABLE table_name_17 (area VARCHAR, roll VARCHAR, authority VARCHAR, gender VARCHAR)
Qual é a área da escola coed com uma autoridade estatal e um número de rolo de 122?
75,975
SELECT result___category FROM table_name_18 WHERE year < 2007
Which result is older than 2007?
CREATE TABLE table_name_18 (result___category VARCHAR, year INTEGER)
Qual resultado é mais antigo que 2007?
75,976
SELECT SUM(year) FROM table_name_39 WHERE album___song = "speaking louder than before"
What year was the Album/Song Speaking louder than before?
CREATE TABLE table_name_39 (year INTEGER, album___song VARCHAR)
Em que ano o álbum/canção falava mais alto do que antes?
75,977
SELECT MAX(year) FROM table_name_19 WHERE album___song = "the best worst-case scenario"
What is the most recent year with the Album/Song "the best worst-case scenario"?
CREATE TABLE table_name_19 (year INTEGER, album___song VARCHAR)
Qual é o ano mais recente com o álbum/canção "o melhor cenário de pior caso"?
75,978
SELECT score FROM table_name_23 WHERE surface = "clay" AND partner = "remi tezuka"
What was the score of the final in which Melanie South played with partner Remi Tezuka on a clay surface?
CREATE TABLE table_name_23 (score VARCHAR, surface VARCHAR, partner VARCHAR)
Qual foi a pontuação da final em que Melanie South jogou com o parceiro Remi Tezuka em uma superfície de argila?
75,979
SELECT score FROM table_name_59 WHERE partner = "ksenia lykina" AND tournament = "kurume"
What was the score of the final in which Melanie South played with partner Ksenia Lykina during the Kurume Cup tournament?
CREATE TABLE table_name_59 (score VARCHAR, partner VARCHAR, tournament VARCHAR)
Qual foi a pontuação da final em que Melanie South jogou com a parceira Ksenia Lykina durante o torneio da Copa Kurume?
75,980
SELECT score FROM table_name_27 WHERE partner = "katie o'brien"
What was the score of the final in which Melanie South played with partner Katie O'Brien?
CREATE TABLE table_name_27 (score VARCHAR, partner VARCHAR)
Qual foi a pontuação da final em que Melanie South jogou com a parceira Katie O'Brien?
75,981
SELECT outcome FROM table_name_82 WHERE tournament = "edinburgh"
What was the outcome of the tournament in Edinburgh?
CREATE TABLE table_name_82 (outcome VARCHAR, tournament VARCHAR)
Qual foi o resultado do torneio em Edimburgo?
75,982
SELECT SUM(decile) FROM table_name_66 WHERE authority = "state" AND name = "newfield park school"
What is the total decile with an Authority of state, and a Name of newfield park school?
CREATE TABLE table_name_66 (decile INTEGER, authority VARCHAR, name VARCHAR)
Qual é o decil total com uma autoridade do estado, e um nome da escola do parque de newfield?
75,983
SELECT MAX(decile) FROM table_name_47 WHERE roll > 34 AND gender = "coed" AND authority = "state integrated" AND area = "georgetown"
What is the largest decile with a Roll larger than 34, a Gender of coed, and an Authority of state integrated, and an Area of georgetown?
CREATE TABLE table_name_47 (decile INTEGER, area VARCHAR, authority VARCHAR, roll VARCHAR, gender VARCHAR)
Qual é o maior decil com um rolo maior que 34, um gênero de coed, e uma autoridade de estado integrada, e uma área de georgetown?
75,984
SELECT MIN(roll) FROM table_name_97 WHERE authority = "state" AND name = "newfield park school" AND decile < 2
What is the smallest roll with an Authority of state, a Name of newfield park school, and a Decile smaller than 2?
CREATE TABLE table_name_97 (roll INTEGER, decile VARCHAR, authority VARCHAR, name VARCHAR)
Qual é o menor rolo com uma Autoridade de Estado, um nome de escola de parque newfield, e um Decile menor que 2?
75,985
SELECT name FROM table_name_65 WHERE area = "makarewa"
Which name has an Area of makarewa?
CREATE TABLE table_name_65 (name VARCHAR, area VARCHAR)
Qual nome tem uma área de makarewa?
75,986
SELECT name FROM table_name_35 WHERE gender = "coed" AND decile > 5 AND roll = 131
Which name has a Gender of coed, and a Decile larger than 5, and a Roll of 131?
CREATE TABLE table_name_35 (name VARCHAR, roll VARCHAR, gender VARCHAR, decile VARCHAR)
Qual nome tem um gênero de coed, e um decil maior que 5, e um rolo de 131?
75,987
SELECT SUM(ends) FROM table_name_65 WHERE goals < 0
Add up all the Ends columns that have goals smaller than 0.
CREATE TABLE table_name_65 (ends INTEGER, goals INTEGER)
Adicione todas as colunas Finais que tenham metas menores que 0.
75,988
SELECT competition FROM table_name_43 WHERE year = 2003
What was the competition in 2003?
CREATE TABLE table_name_43 (competition VARCHAR, year VARCHAR)
Qual foi a competição em 2003?
75,989
SELECT competition FROM table_name_76 WHERE year = 2003
What was the competition in 2003?
CREATE TABLE table_name_76 (competition VARCHAR, year VARCHAR)
Qual foi a competição em 2003?
75,990
SELECT MAX(position) FROM table_name_92 WHERE points = "50+12" AND draws < 10
Which position has 50+12 points and fewer than 10 draws?
CREATE TABLE table_name_92 (position INTEGER, points VARCHAR, draws VARCHAR)
Qual posição tem 50+12 pontos e menos de 10 empates?
75,991
SELECT COUNT(position) FROM table_name_62 WHERE goals_for < 40 AND played > 38
How many positions have goals of fewer than 40 and more than 38 played?
CREATE TABLE table_name_62 (position VARCHAR, goals_for VARCHAR, played VARCHAR)
Quantas posições têm golos inferiores a 40 e mais de 38 jogados?
75,992
SELECT SUM(losses) FROM table_name_26 WHERE goal_difference < -2 AND club = "cd sabadell" AND played > 38
How many losses are there in the CD Sabadell club with a goal difference less than -2, and more than 38 played?
CREATE TABLE table_name_26 (losses INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)
Quantas derrotas há no clube CD Sabadell com diferença de gols inferior a -2, e mais de 38 jogadas?
75,993
SELECT AVG(played) FROM table_name_64 WHERE goals_for < 43 AND draws > 9 AND position > 17 AND points = "30-8"
What are the average number of played with goals of less than 43, more than 9 draws, a higher position than 17 and 30-8 points?
CREATE TABLE table_name_64 (played INTEGER, points VARCHAR, position VARCHAR, goals_for VARCHAR, draws VARCHAR)
Qual é o número médio de partidas com golos inferiores a 43, mais de 9 empates, uma posição superior a 17 e 30-8 pontos?
75,994
SELECT COUNT(loss) FROM table_name_86 WHERE avg_g < -3.3 AND gain > 126
What is the total number of losses of the player with an avg/g smaller than -3.3 and a gain larger than 126?
CREATE TABLE table_name_86 (loss VARCHAR, avg_g VARCHAR, gain VARCHAR)
Qual é o número total de perdas do jogador com um avg/g menor que -3.3 e um ganho maior que 126?
75,995
SELECT COUNT(loss) FROM table_name_41 WHERE gain > 27 AND avg_g < 55.9 AND name = "jackson, t." AND long < 34
What is the total number of losses Jackson, T., who had more than 27 gain, an avg/g smaller than 55.9, and a long less than 34, had?
CREATE TABLE table_name_41 (loss VARCHAR, long VARCHAR, name VARCHAR, gain VARCHAR, avg_g VARCHAR)
Qual é o número total de perdas que Jackson, T., que teve mais de 27 ganhos, um avg/g menor que 55,9 e um longo menor que 34, teve?
75,996
SELECT COUNT(long) FROM table_name_45 WHERE loss = 0 AND gain < 17 AND avg_g > 0 AND name = "dubose, e."
What is the total number of long Dubose, E., who had 0 losses, a gain less than 17, and an avg/g bigger than 0, had?
CREATE TABLE table_name_45 (long VARCHAR, name VARCHAR, avg_g VARCHAR, loss VARCHAR, gain VARCHAR)
Qual é o número total de Dubose, E., que teve 0 perdas, um ganho menor que 17, e um avg/g maior que 0, teve?
75,997
SELECT date FROM table_name_38 WHERE record = "20–16"
What date was the record 20–16?
CREATE TABLE table_name_38 (date VARCHAR, record VARCHAR)
Qual foi a data do recorde 20-16?
75,998
SELECT attendance FROM table_name_43 WHERE opponent = "brewers" AND score = "9–6"
What was the attendance in the gave versus the Brewers with a score of 9–6?
CREATE TABLE table_name_43 (attendance VARCHAR, opponent VARCHAR, score VARCHAR)
Qual foi o comparecimento no dado versus os Brewers com uma pontuação de 9-6?
75,999
SELECT attendance FROM table_name_90 WHERE date = "may 26"
What was the attendance on May 26?
CREATE TABLE table_name_90 (attendance VARCHAR, date VARCHAR)
Qual foi o comparecimento no dia 26 de maio?