Unnamed: 0
int64
0
78.6k
answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
translated_answer
stringlengths
12
992
78,100
SELECT gender FROM table_name_86 WHERE decile = 5 AND roll = 90
What is the Gender of students at a school with a Decile of 5 and a Roll of 90?
CREATE TABLE table_name_86 (gender VARCHAR, decile VARCHAR, roll VARCHAR)
Qual é o gênero dos alunos em uma escola com um decil de 5 e um rolo de 90?
78,101
SELECT years FROM table_name_27 WHERE roll > 23 AND decile > 5
Name the Years of schools with a Roll Larger than 23 and a Decile greater than 5.
CREATE TABLE table_name_27 (years VARCHAR, roll VARCHAR, decile VARCHAR)
Nomeie os anos de escolas com um rolo maior que 23 e um decil maior que 5.
78,102
SELECT COUNT(roll) FROM table_name_56 WHERE authority = "state" AND area = "hapuku" AND decile > 4
What is the total number of Rolls of State schools in Hapuku with a Decile greater than 4?
CREATE TABLE table_name_56 (roll VARCHAR, decile VARCHAR, authority VARCHAR, area VARCHAR)
Qual é o número total de Rolls de escolas estaduais em Hapuku com um Decil maior que 4?
78,103
SELECT d_45 FROM table_name_23 WHERE d_42 = "r 22"
What is the D45 associated with a D42 of r 22?
CREATE TABLE table_name_23 (d_45 VARCHAR, d_42 VARCHAR)
O que é o D45 associado a um D42 de r 22?
78,104
SELECT d_43 FROM table_name_44 WHERE d_41 = "r 21"
What is the D43 associated with a D41 of r 21?
CREATE TABLE table_name_44 (d_43 VARCHAR, d_41 VARCHAR)
O que é o D43 associado a um D41 de r 21?
78,105
SELECT d_42 FROM table_name_31 WHERE d_47 = "d 27"
What is the D42 associated with a D47 of d 27?
CREATE TABLE table_name_31 (d_42 VARCHAR, d_47 VARCHAR)
O que é o D42 associado a um D47 de d 27?
78,106
SELECT d_43 FROM table_name_92 WHERE d_41 = "r 16"
What is the D43 associated with a D41 of r 16?
CREATE TABLE table_name_92 (d_43 VARCHAR, d_41 VARCHAR)
O que é o D43 associado a um D41 de r 16?
78,107
SELECT record FROM table_name_84 WHERE loss = "hargan (14–13)"
What is the record for the game when the loss was hargan (14–13)?
CREATE TABLE table_name_84 (record VARCHAR, loss VARCHAR)
Qual é o recorde para o jogo quando a perda foi hargan (14-13)?
78,108
SELECT record FROM table_name_10 WHERE score = "7–5"
What is the record for the game with a score of 7–5?
CREATE TABLE table_name_10 (record VARCHAR, score VARCHAR)
Qual é o recorde do jogo com uma pontuação de 75?
78,109
SELECT date FROM table_name_4 WHERE loss = "aker (3–8)"
What date was the game with loss of Aker (3–8)?
CREATE TABLE table_name_4 (date VARCHAR, loss VARCHAR)
Qual foi a data do jogo com a perda de Aker (38)?
78,110
SELECT opponent FROM table_name_86 WHERE score = "7–1"
What team was the opponent when the score was 7–1?
CREATE TABLE table_name_86 (opponent VARCHAR, score VARCHAR)
Qual foi o adversário quando o placar foi de 7 a 1?
78,111
SELECT score FROM table_name_18 WHERE opponent = "orioles" AND loss = "morehead (5–4)"
What was the score when the opponent was the Orioles and the loss shows morehead (5–4)?
CREATE TABLE table_name_18 (score VARCHAR, opponent VARCHAR, loss VARCHAR)
Qual foi a pontuação quando o adversário era o Orioles e a perda mostra mais cabeça (54)?
78,112
SELECT opponent FROM table_name_35 WHERE record = "60-61"
Name the opponent with a record of 60-61
CREATE TABLE table_name_35 (opponent VARCHAR, record VARCHAR)
Nomeie o adversário com um recorde de 60-61
78,113
SELECT name FROM table_name_94 WHERE perfection = "77.96%"
Who had a perfection percentage of 77.96%?
CREATE TABLE table_name_94 (name VARCHAR, perfection VARCHAR)
Quem teve uma porcentagem de perfeição de 77,96%?
78,114
SELECT rank FROM table_name_46 WHERE name = "svetlana fedorenko"
What was the rank of Svetlana Fedorenko?
CREATE TABLE table_name_46 (rank VARCHAR, name VARCHAR)
Qual era a classificação de Svetlana Fedorenko?
78,115
SELECT name FROM table_name_62 WHERE perfection = "73.24%"
Who had a perfection percentage of 73.24%?
CREATE TABLE table_name_62 (name VARCHAR, perfection VARCHAR)
Quem teve uma porcentagem de perfeição de 73,24%?
78,116
SELECT score FROM table_name_38 WHERE date = "june 1"
What was the score of the game on June 1?
CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR)
Qual foi a pontuação do jogo em 1o de junho?
78,117
SELECT score FROM table_name_6 WHERE opponent = "andrei pavel"
What was the score against andrei pavel?
CREATE TABLE table_name_6 (score VARCHAR, opponent VARCHAR)
Qual foi o resultado contra Andrei Pavel?
78,118
SELECT date FROM table_name_52 WHERE tournament = "bologna"
When was the tournament of bologna?
CREATE TABLE table_name_52 (date VARCHAR, tournament VARCHAR)
Quando foi o torneio de Bolonha?
78,119
SELECT opponent FROM table_name_31 WHERE surface = "clay" AND score = "6–1, 7–6"
Who played on clay and had a score of 6–1, 7–6?
CREATE TABLE table_name_31 (opponent VARCHAR, surface VARCHAR, score VARCHAR)
Quem jogou na clay e teve uma pontuação de 6, 76?
78,120
SELECT opponent FROM table_name_16 WHERE surface = "clay" AND date = "3 march 2012"
Who played on clay on 3 march 2012?
CREATE TABLE table_name_16 (opponent VARCHAR, surface VARCHAR, date VARCHAR)
Quem jogou no Clay em 3 de março de 2012?
78,121
SELECT score FROM table_name_66 WHERE opponent = "fabrice martin"
What was the score against fabrice martin?
CREATE TABLE table_name_66 (score VARCHAR, opponent VARCHAR)
Qual foi o resultado contra o Fabrice Martin?
78,122
SELECT surface FROM table_name_58 WHERE score = "7–5, 3–6, 7–6"
What was the surface of the score of 7–5, 3–6, 7–6?
CREATE TABLE table_name_58 (surface VARCHAR, score VARCHAR)
Qual foi a superfície do escore de 75, 36, 76?
78,123
SELECT order FROM table_name_61 WHERE elector = "marino bulcani"
What's the Order with an Elector of Marino Bulcani?
CREATE TABLE table_name_61 (order VARCHAR, elector VARCHAR)
Qual é a Ordem com um Eleitor de Marino Bulcani?
78,124
SELECT elevator FROM table_name_25 WHERE elevated = "1378, september 18" AND order = "cardinal-priest" AND elector = "poncello orsini"
What's the Elevator that has Elevated: 1378, September 18, an Order of Cardinal-Priest, and an Elector of Poncello Orsini?
CREATE TABLE table_name_25 (elevator VARCHAR, elector VARCHAR, elevated VARCHAR, order VARCHAR)
Qual é o elevador que elevou: 1378, 18 de setembro, uma ordem de cardeal-sacerdote e um eleitor de Poncello Orsini?
78,125
SELECT elector FROM table_name_62 WHERE title = "deacon of s. maria in domnica"
What is listed as the Elector with the Title of Deacon of S. Maria in Domnica?
CREATE TABLE table_name_62 (elector VARCHAR, title VARCHAR)
O que é listado como o Eleitor com o Título de Diácono de S. Maria em Domnica?
78,126
SELECT elevated FROM table_name_78 WHERE order = "cardinal-bishop"
What's listed for the Elevated category that has an Order of Cardinal-Bishop?
CREATE TABLE table_name_78 (elevated VARCHAR, order VARCHAR)
O que está listado para a categoria Elevada que tem uma Ordem do Cardeal-Bispo?
78,127
SELECT division_record FROM table_name_79 WHERE school = "milford"
The Milford School has what Division Record?
CREATE TABLE table_name_79 (division_record VARCHAR, school VARCHAR)
A escola de Milford tem o recorde de divisão?
78,128
SELECT team FROM table_name_29 WHERE school = "sussex tech"
What is the name of the School of the Sussex Tech's Team?
CREATE TABLE table_name_29 (team VARCHAR, school VARCHAR)
Qual é o nome da Escola da Equipe Técnica de Sussex?
78,129
SELECT score FROM table_name_5 WHERE player = "arnold palmer"
What was Arnold Palmer's score in the tournamnet?
CREATE TABLE table_name_5 (score VARCHAR, player VARCHAR)
Qual foi a pontuação de Arnold Palmer no Tournamnet?
78,130
SELECT party FROM table_name_31 WHERE member = "peter white"
What the name of Peter White's party?
CREATE TABLE table_name_31 (party VARCHAR, member VARCHAR)
Qual é o nome da festa de Peter White?
78,131
SELECT term_in_office FROM table_name_73 WHERE electorate = "indi"
What term did an Electorate of indi have in office?
CREATE TABLE table_name_73 (term_in_office VARCHAR, electorate VARCHAR)
Que mandato teve um eleitorado de indi no cargo?
78,132
SELECT term_in_office FROM table_name_9 WHERE member = "hon ralph hunt"
What term did hon ralph hunt serve in office?
CREATE TABLE table_name_9 (term_in_office VARCHAR, member VARCHAR)
A que termo serviu a caçada hon ralph no cargo?
78,133
SELECT party FROM table_name_65 WHERE state = "vic" AND member = "peter fisher"
What party is Peter Fisher from Vic serve in office?
CREATE TABLE table_name_65 (party VARCHAR, state VARCHAR, member VARCHAR)
Qual é a festa que Peter Fisher, do Vic, serve no cargo?
78,134
SELECT SUM(laps) FROM table_name_26 WHERE year = 2012
How many laps were done in 2012?
CREATE TABLE table_name_26 (laps INTEGER, year VARCHAR)
Quantas voltas foram feitas em 2012?
78,135
SELECT date FROM table_name_12 WHERE score = "1–6 6–1 3–6"
On what day was the score of 1–6 6–1 3–6 achieved?
CREATE TABLE table_name_12 (date VARCHAR, score VARCHAR)
Em que dia foi alcançado o resultado de 16 636?
78,136
SELECT AVG(gold) FROM table_name_62 WHERE total < 14 AND bronze < 1 AND nation = "czech republic"
Name the average gold for czech republic and bronze less than 1 when total is less than 14
CREATE TABLE table_name_62 (gold INTEGER, nation VARCHAR, total VARCHAR, bronze VARCHAR)
Nomear o ouro médio para a República Checa e bronze inferior a 1 quando o total for inferior a 14
78,137
SELECT MAX(rank) FROM table_name_13 WHERE silver = 4 AND bronze < 3
Name the highest rank when silver is 4 and bronze is less than 3
CREATE TABLE table_name_13 (rank INTEGER, silver VARCHAR, bronze VARCHAR)
Nomeie o posto mais alto quando a prata for 4 e o bronze for inferior a 3
78,138
SELECT COUNT(total) FROM table_name_59 WHERE bronze = 4 AND silver > 6
Name the total number of total for bronze of 4 and silver more than 6
CREATE TABLE table_name_59 (total VARCHAR, bronze VARCHAR, silver VARCHAR)
Nomeie o número total do total para bronze de 4 e prata mais de 6
78,139
SELECT outcome FROM table_name_11 WHERE surface = "carpet (i)"
When the Surface was Carpet (i), what was the Outcome?
CREATE TABLE table_name_11 (outcome VARCHAR, surface VARCHAR)
Quando a superfície era tapete (i), qual era o resultado?
78,140
SELECT SUM(draw) FROM table_name_49 WHERE place > 6 AND votes > 38
What is the draw number of the song with a place lower than 6 and more than 38 votes?
CREATE TABLE table_name_49 (draw INTEGER, place VARCHAR, votes VARCHAR)
Qual é o número de empate da música com um lugar inferior a 6 e mais de 38 votos?
78,141
SELECT COUNT(votes) FROM table_name_4 WHERE artist = "sahlene" AND place > 1
What is the total number of votes Sahlene with a place below 1 has?
CREATE TABLE table_name_4 (votes VARCHAR, artist VARCHAR, place VARCHAR)
Qual é o número total de votos Sahlene com um lugar abaixo de 1 tem?
78,142
SELECT MAX(place) FROM table_name_8 WHERE votes = 38 AND draw > 3
What is the highest place of the song with 38 votes and a draw great than 3?
CREATE TABLE table_name_8 (place INTEGER, votes VARCHAR, draw VARCHAR)
Qual é o lugar mais alto da música com 38 votos e um empate maior que 3?
78,143
SELECT SUM(votes) FROM table_name_93 WHERE draw < 4 AND artist = "yvetta kadakas & ivo linna"
How many votes did Yvetta Kadakas & Ivo Linna, who had less than 4 draws, have?
CREATE TABLE table_name_93 (votes INTEGER, draw VARCHAR, artist VARCHAR)
Quantos votos Yvetta Kadakas e Ivo Linna, que tiveram menos de 4 empates, tiveram?
78,144
SELECT year FROM table_name_27 WHERE finish = "3"
What year was there a finish of 3?
CREATE TABLE table_name_27 (year VARCHAR, finish VARCHAR)
Em que ano houve um final de 3?
78,145
SELECT SUM(year) FROM table_name_97 WHERE start = "33"
What year was the start 33?
CREATE TABLE table_name_97 (year INTEGER, start VARCHAR)
Em que ano começou o 33?
78,146
SELECT year FROM table_name_48 WHERE team = "simon" AND start = "3"
When was there a team of Simon and the start was 3?
CREATE TABLE table_name_48 (year VARCHAR, team VARCHAR, start VARCHAR)
Quando houve uma equipe de Simon e o início foi 3?
78,147
SELECT city FROM table_name_69 WHERE spire__m_ = "105" AND roof___m__ < 96 AND built = 1985
What's the name of the 1985 city with a Spire (m) of 105, and a Roof (m) smaller than 96?
CREATE TABLE table_name_69 (city VARCHAR, built VARCHAR, spire__m_ VARCHAR, roof___m__ VARCHAR)
Qual é o nome da cidade de 1985 com um Spire (m) de 105, e um Roof (m) menor que 96?
78,148
SELECT AVG(floors) FROM table_name_67 WHERE built = 2004 AND roof___m__ = 106
What's the average number of floors that were built in 2004, and have a roof (m) of 106?
CREATE TABLE table_name_67 (floors INTEGER, built VARCHAR, roof___m__ VARCHAR)
Qual é o número médio de pisos que foram construídos em 2004, e têm um telhado (m) de 106?
78,149
SELECT SUM(floors) FROM table_name_73 WHERE built > 2006 AND rank = 12
What's the total number of floors built after 2006, and have a rank of 12?
CREATE TABLE table_name_73 (floors INTEGER, built VARCHAR, rank VARCHAR)
Qual é o número total de pisos construídos após 2006, e têm uma classificação de 12?
78,150
SELECT SUM(attendance) FROM table_name_80 WHERE h___a = "n"
What is the sum of attendance for H/A values of "n"?
CREATE TABLE table_name_80 (attendance INTEGER, h___a VARCHAR)
Qual é a soma dos valores de H/A de "n"?
78,151
SELECT score FROM table_name_85 WHERE opponent = "stefano galvani"
Name the score which has opponent of stefano galvani
CREATE TABLE table_name_85 (score VARCHAR, opponent VARCHAR)
Nomeie a pontuação que tem oponente de stefano galvani
78,152
SELECT score FROM table_name_44 WHERE opponent = "javier genaro-martinez"
Name the score with opponent of javier genaro-martinez
CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR)
Nomeie a pontuação com o oponente de javier genaro-martinez
78,153
SELECT outcome FROM table_name_58 WHERE tournament = "dunlop world challenge"
Name the outcome for dunlop world challenge
CREATE TABLE table_name_58 (outcome VARCHAR, tournament VARCHAR)
Nomeie o resultado para o desafio mundial do dunlop
78,154
SELECT visiting_team FROM table_name_31 WHERE date = "december 6"
Who was the visiting team on December 6?
CREATE TABLE table_name_31 (visiting_team VARCHAR, date VARCHAR)
Quem foi a equipe visitante no dia 6 de dezembro?
78,155
SELECT host_team FROM table_name_31 WHERE date = "october 4"
Who was the host team on October 4?
CREATE TABLE table_name_31 (host_team VARCHAR, date VARCHAR)
Quem foi a equipe anfitriã no dia 4 de outubro?
78,156
SELECT value___usd__ FROM table_name_70 WHERE date = "unknown" AND business = "energy" AND country = "new zealand"
In New Zealand, what's the value that has an unknown date and is an energy business?
CREATE TABLE table_name_70 (value___usd__ VARCHAR, country VARCHAR, date VARCHAR, business VARCHAR)
Na Nova Zelândia, qual é o valor que tem uma data desconhecida e é um negócio de energia?
78,157
SELECT company FROM table_name_20 WHERE business = "energy" AND date = "unknown"
What company has an unknown date and is an energy business?
CREATE TABLE table_name_20 (company VARCHAR, business VARCHAR, date VARCHAR)
Que empresa tem uma data desconhecida e é um negócio de energia?
78,158
SELECT company FROM table_name_35 WHERE business = "energy" AND date = "unknown" AND country = "united kingdom"
In the United Kingdom, what company has an unknown date and is an energy business?
CREATE TABLE table_name_35 (company VARCHAR, country VARCHAR, business VARCHAR, date VARCHAR)
No Reino Unido, qual empresa tem uma data desconhecida e é um negócio de energia?
78,159
SELECT date FROM table_name_88 WHERE country = "united kingdom"
For the United Kingdom, what's the date?
CREATE TABLE table_name_88 (date VARCHAR, country VARCHAR)
Para o Reino Unido, qual é a data?
78,160
SELECT country FROM table_name_15 WHERE date = "unknown" AND company = "enernoc australia pty ltd"
For the Enernoc Australia Pty Ltd, what's the country with an unknown date?
CREATE TABLE table_name_15 (country VARCHAR, date VARCHAR, company VARCHAR)
Para a Enernoc Australia Pty Ltd, qual é o país com uma data desconhecida?
78,161
SELECT date FROM table_name_29 WHERE venue = "luxembourg"
Which date is associated with a venue of Luxembourg?
CREATE TABLE table_name_29 (date VARCHAR, venue VARCHAR)
Qual é a data associada a um local de Luxemburgo?
78,162
SELECT SUM(year) FROM table_name_10 WHERE chassis = "kurtis kraft 500a" AND points < 1.5
What is the year with a Kurtis Kraft 500a chassis, and less than 1.5 points?
CREATE TABLE table_name_10 (year INTEGER, chassis VARCHAR, points VARCHAR)
Qual é o ano com um chassi Kurtis Kraft 500a e menos de 1,5 pontos?
78,163
SELECT SUM(year) FROM table_name_86 WHERE chassis = "kurtis kraft 500a"
What is the year with a kurtis kraft 500a chassis?
CREATE TABLE table_name_86 (year INTEGER, chassis VARCHAR)
Qual é o ano com um chassi kurtis kraft 500a?
78,164
SELECT MIN(pick__number) FROM table_name_78 WHERE college = "saint vincent college"
What is the lowest Pick # of Saint Vincent College?
CREATE TABLE table_name_78 (pick__number INTEGER, college VARCHAR)
Qual é a escolha mais baixa de Saint Vincent College?
78,165
SELECT MIN(overall) FROM table_name_45 WHERE name = "jack harmon" AND pick__number < 5
What is the Overall for Pick # less than 5 Jack Harmon?
CREATE TABLE table_name_45 (overall INTEGER, name VARCHAR, pick__number VARCHAR)
Qual é o geral para escolher # menos de 5 Jack Harmon?
78,166
SELECT rank FROM table_name_98 WHERE total_gdp__€_bn__ = "€11.243"
Which rank has a Total GDP (€ bn) of €11.243??
CREATE TABLE table_name_98 (rank VARCHAR, total_gdp__€_bn__ VARCHAR)
Qual classificação tem um PIB total ( bn) de 11,243?
78,167
SELECT region FROM table_name_58 WHERE total_gdp__€_bn__ = "€11,745.353"
What is the Region that has a Total GDP (€ bn ) of €11,745.353?
CREATE TABLE table_name_58 (region VARCHAR, total_gdp__€_bn__ VARCHAR)
Qual é a Região que tem um PIB total ( bn ) de 11.745.353?
78,168
SELECT region FROM table_name_24 WHERE _percentage_growth = "−3.6"
Which Region that has a growth of −3.6%?
CREATE TABLE table_name_24 (region VARCHAR, _percentage_growth VARCHAR)
Que região tem um crescimento de 3,6%?
78,169
SELECT per_capita FROM table_name_42 WHERE region = "greece"
What is the per capita of Greece?
CREATE TABLE table_name_42 (per_capita VARCHAR, region VARCHAR)
O que é o per capita da Grécia?
78,170
SELECT MIN(silver) FROM table_name_97 WHERE bronze = 40 AND gold > 42
What is the fewest number of silver medals received by a nation who received 40 bronze medals and more than 42 gold medals?
CREATE TABLE table_name_97 (silver INTEGER, bronze VARCHAR, gold VARCHAR)
Qual é o menor número de medalhas de prata recebidas por uma nação que recebeu 40 medalhas de bronze e mais de 42 medalhas de ouro?
78,171
SELECT MIN(silver) FROM table_name_72 WHERE total > 3 AND bronze > 22 AND gold < 395 AND nation = "austria"
What is the lowest number of silver medals received by Austria when they receive more than 3 total medals, more than 22 bronze medals, and fewer than 395 gold medals?
CREATE TABLE table_name_72 (silver INTEGER, nation VARCHAR, gold VARCHAR, total VARCHAR, bronze VARCHAR)
Qual é o menor número de medalhas de prata recebidas pela Áustria quando recebem mais de 3 medalhas totais, mais de 22 medalhas de bronze e menos de 395 medalhas de ouro?
78,172
SELECT AVG(silver) FROM table_name_53 WHERE gold > 6 AND bronze < 5
What is the average number of silver medals with more than 6 gold meals and less than 5 bronze medals?
CREATE TABLE table_name_53 (silver INTEGER, gold VARCHAR, bronze VARCHAR)
Qual é o número médio de medalhas de prata com mais de 6 refeições de ouro e menos de 5 medalhas de bronze?
78,173
SELECT COUNT(rank) FROM table_name_39 WHERE nation = "switzerland" AND total > 2
How many ranks are for Switzerland with more than 2 total medals?
CREATE TABLE table_name_39 (rank VARCHAR, nation VARCHAR, total VARCHAR)
Quantos postos são para a Suíça com mais de 2 medalhas totais?
78,174
SELECT event FROM table_name_39 WHERE round > 2 AND method = "ko (kick)"
What is the event of the match with a round larger than 2 and ended with a method of ko (kick)?
CREATE TABLE table_name_39 (event VARCHAR, round VARCHAR, method VARCHAR)
Qual é o evento da partida com uma rodada maior que 2 e terminou com um método de ko (chute)?
78,175
SELECT method FROM table_name_82 WHERE round > 1 AND event = "k-1 andy memorial 2001 japan gp final"
What is the method of the match after round 1 in the k-1 andy memorial 2001 japan gp final?
CREATE TABLE table_name_82 (method VARCHAR, round VARCHAR, event VARCHAR)
Qual é o método da partida após a rodada 1 na final do k-1 andy memorial 2001 japan gp?
78,176
SELECT MAX(round) FROM table_name_91 WHERE opponent = "rene rooze" AND location = "saitama, japan"
What is the highest round of the match with Rene Rooze as the opponent in Saitama, Japan?
CREATE TABLE table_name_91 (round INTEGER, opponent VARCHAR, location VARCHAR)
Qual é a rodada mais alta da partida com Rene Rooze como oponente em Saitama, Japão?
78,177
SELECT MAX(round) FROM table_name_97 WHERE time = "0:57"
What is the highest round of the match with a time of 0:57?
CREATE TABLE table_name_97 (round INTEGER, time VARCHAR)
Qual é a rodada mais alta do jogo com um tempo de 0:57?
78,178
SELECT points_for FROM table_name_52 WHERE tries_for = "52" AND try_bonus = "7"
How many points did the Club score that has a try bonus of 7 and 52 tries for ?
CREATE TABLE table_name_52 (points_for VARCHAR, tries_for VARCHAR, try_bonus VARCHAR)
Quantos pontos o clube marcou que tem um bônus de tentativa de 7 e 52 tentativas para ?
78,179
SELECT losing_bonus FROM table_name_64 WHERE tries_against = "80"
What is the Losing bonus of the club that has 80 tries against ?
CREATE TABLE table_name_64 (losing_bonus VARCHAR, tries_against VARCHAR)
Qual é o bônus de perder do clube que tem 80 tentativas contra?
78,180
SELECT tries_for FROM table_name_2 WHERE club = "waunarlwydd rfc"
How many tries for does waunarlwydd rfc have ?
CREATE TABLE table_name_2 (tries_for VARCHAR, club VARCHAR)
Quantas tentativas para o waunarlwydd rfc tem?
78,181
SELECT lost FROM table_name_7 WHERE points = "47"
How many losses did the club with 47 points have ?
CREATE TABLE table_name_7 (lost VARCHAR, points VARCHAR)
Quantas derrotas teve o clube com 47 pontos?
78,182
SELECT points_against FROM table_name_92 WHERE try_bonus = "6" AND tries_against = "54"
How many points against does the club that has a try bonus of 6 and tries against of 54 have ?
CREATE TABLE table_name_92 (points_against VARCHAR, try_bonus VARCHAR, tries_against VARCHAR)
Quantos pontos contra o clube que tem um bônus de tentativa de 6 e tenta contra de 54 tem?
78,183
SELECT co_drivers FROM table_name_81 WHERE year = 2008
Who were the co-drivers in 2008?
CREATE TABLE table_name_81 (co_drivers VARCHAR, year VARCHAR)
Quem foram os co-pilotos em 2008?
78,184
SELECT pos FROM table_name_66 WHERE year = 2006
What was the position in 2006?
CREATE TABLE table_name_66 (pos VARCHAR, year VARCHAR)
Qual foi a posição em 2006?
78,185
SELECT class FROM table_name_32 WHERE laps = 325
What was the class when there were 325 laps?
CREATE TABLE table_name_32 (class VARCHAR, laps VARCHAR)
Qual era a classe quando havia 325 voltas?
78,186
SELECT english_title FROM table_name_89 WHERE year = 2001
What is the English title of the film from 2001?
CREATE TABLE table_name_89 (english_title VARCHAR, year VARCHAR)
Qual é o título em inglês do filme de 2001?
78,187
SELECT original_title FROM table_name_95 WHERE year < 2003 AND country = "japan/taiwan"
What is the original title of the film from Japan/Taiwan before 2003?
CREATE TABLE table_name_95 (original_title VARCHAR, year VARCHAR, country VARCHAR)
Qual é o título original do filme do Japão/Taiwan antes de 2003?
78,188
SELECT english_title FROM table_name_53 WHERE director_s_ = "fernando meirelles"
What is the English title of the film directed by Fernando Meirelles?
CREATE TABLE table_name_53 (english_title VARCHAR, director_s_ VARCHAR)
Qual é o título em inglês do filme dirigido por Fernando Meirelles?
78,189
SELECT country FROM table_name_69 WHERE original_title = "cidade de deus"
What is the country of the original title Cidade de deus?
CREATE TABLE table_name_69 (country VARCHAR, original_title VARCHAR)
Qual é o país do título original Cidade de Deus?
78,190
SELECT MIN(year) FROM table_name_44 WHERE country = "mexico"
What is the earliest year of a film from Mexico?
CREATE TABLE table_name_44 (year INTEGER, country VARCHAR)
Qual é o primeiro ano de um filme do México?
78,191
SELECT AVG(year) FROM table_name_74 WHERE country = "france/hong kong"
What is the average year of the film from France/Hong Kong?
CREATE TABLE table_name_74 (year INTEGER, country VARCHAR)
Qual é o ano médio do filme de França/Hong Kong?
78,192
SELECT country FROM table_name_45 WHERE place = "t3"
Name the country for t3 place
CREATE TABLE table_name_45 (country VARCHAR, place VARCHAR)
Nomear o país para o lugar t3
78,193
SELECT country FROM table_name_28 WHERE to_par = "+2"
Name the country with +2 to par
CREATE TABLE table_name_28 (country VARCHAR, to_par VARCHAR)
Nomear o país com +2 ao par
78,194
SELECT to_par FROM table_name_30 WHERE player = "colin montgomerie"
Name the to par for colin montgomerie
CREATE TABLE table_name_30 (to_par VARCHAR, player VARCHAR)
Nome do par para colin montgomerie
78,195
SELECT score FROM table_name_64 WHERE country = "scotland"
Name the score for scotland
CREATE TABLE table_name_64 (score VARCHAR, country VARCHAR)
Nomear a pontuação para scotland
78,196
SELECT island FROM table_name_3 WHERE population > 76 AND height__m_ > 210 AND area___ha__ > 12068
What island has a population over 76, a height over 210, and an area larger than 12068?
CREATE TABLE table_name_3 (island VARCHAR, area___ha__ VARCHAR, population VARCHAR, height__m_ VARCHAR)
Que ilha tem uma população superior a 76, uma altura superior a 210 e uma área superior a 12068?
78,197
SELECT MAX(population) FROM table_name_17 WHERE location = "scalloway islands" AND island = "trondra"
What is the highest population of Trondra Island in the Scalloway Islands?
CREATE TABLE table_name_17 (population INTEGER, location VARCHAR, island VARCHAR)
Qual é a maior população de Ilhas Trondra nas Ilhas Scalloway?
78,198
SELECT COUNT(drawn) FROM table_name_57 WHERE percentage = "7.14%" AND lost > 12
How many matches were drawn associated with a percentage of 7.14% and more than 12 losses?
CREATE TABLE table_name_57 (drawn VARCHAR, percentage VARCHAR, lost VARCHAR)
Quantos jogos foram sorteados associados a uma porcentagem de 7,14% e mais de 12 perdas?
78,199
SELECT percentage FROM table_name_27 WHERE first_game < 1997 AND lost < 2 AND played < 5
Which percentage has a first game before 1997, fewer than 2 losses, and fewer than 5 matches played?
CREATE TABLE table_name_27 (percentage VARCHAR, played VARCHAR, first_game VARCHAR, lost VARCHAR)
Qual porcentagem tem um primeiro jogo antes de 1997, menos de 2 derrotas e menos de 5 partidas jogadas?