Unnamed: 0
int64 0
78.6k
| answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
| translated_answer
stringlengths 12
992
|
---|---|---|---|---|
77,000 | SELECT skipper FROM table_name_90 WHERE points = "78" | Which skipper has 78 points? | CREATE TABLE table_name_90 (skipper VARCHAR, points VARCHAR) | Qual capitão tem 78 pontos? |
77,001 | SELECT overall_place FROM table_name_57 WHERE yacht_name = "lg flatron" | Which Overall place has a Yacht name of lg flatron? | CREATE TABLE table_name_57 (overall_place VARCHAR, yacht_name VARCHAR) | Qual lugar no geral tem um nome de iate de lg flatron? |
77,002 | SELECT combined_elapsed_time FROM table_name_17 WHERE skipper = "stephen wilkins" | Which Combined elapsed time has a Skipper of stephen wilkins? | CREATE TABLE table_name_17 (combined_elapsed_time VARCHAR, skipper VARCHAR) | Qual tempo combinado decorrido tem um Skipper of stephen wilkins? |
77,003 | SELECT MIN(points) FROM table_name_84 WHERE entrant = "coloni spa" AND year < 1988 | Before the year 1988, what is the lowest number of points that entrant Coloni SpA scored? | CREATE TABLE table_name_84 (points INTEGER, entrant VARCHAR, year VARCHAR) | Antes do ano de 1988, qual é o menor número de pontos que a Coloni SpA marcou? |
77,004 | SELECT chassis FROM table_name_65 WHERE points = 0 AND entrant = "automobiles gonfaronnaises sportives" | Which chassis used by the entrant Automobiles Gonfaronnaises Sportives scored 0 points? | CREATE TABLE table_name_65 (chassis VARCHAR, points VARCHAR, entrant VARCHAR) | Qual chassi usado pelo participante Automóveis Gontaronnaises Sportives marcou 0 pontos? |
77,005 | SELECT entrant FROM table_name_41 WHERE year < 1988 | Who was the entrant before 1988? | CREATE TABLE table_name_41 (entrant VARCHAR, year INTEGER) | Quem era o participante antes de 1988? |
77,006 | SELECT engine FROM table_name_89 WHERE year = 1987 | Which engine was used in 1987? | CREATE TABLE table_name_89 (engine VARCHAR, year VARCHAR) | Qual motor foi usado em 1987? |
77,007 | SELECT league FROM table_name_39 WHERE year = 2001 | What league did they play in 2001? | CREATE TABLE table_name_39 (league VARCHAR, year VARCHAR) | Qual liga eles jogaram em 2001? |
77,008 | SELECT open_cup FROM table_name_21 WHERE reg_season = "2nd, northeast" | What open cup did they play in when they finished 2nd, northeast in the reg. season? | CREATE TABLE table_name_21 (open_cup VARCHAR, reg_season VARCHAR) | Em que taça aberta eles jogaram quando terminaram em 2o, nordeste na temporada reg.? |
77,009 | SELECT COUNT(week) FROM table_name_27 WHERE date = "october 9, 1983" AND attendance < 40 OFFSET 492 | What is the week with a date of October 9, 1983, and attendance smaller than 40,492? | CREATE TABLE table_name_27 (week VARCHAR, date VARCHAR, attendance VARCHAR) | O que é a semana com uma data de 9 de outubro de 1983, e atendimento menor que 40.492? |
77,010 | SELECT MIN(attendance) FROM table_name_30 WHERE week = 14 | What is the lowest attendance with week 14? | CREATE TABLE table_name_30 (attendance INTEGER, week VARCHAR) | Qual é o menor atendimento com a semana 14? |
77,011 | SELECT game_site FROM table_name_90 WHERE week = 12 | Where did the Oakland Raiders play in week 12 of their 1976 season? | CREATE TABLE table_name_90 (game_site VARCHAR, week VARCHAR) | Onde os Oakland Raiders jogaram na semana 12 de sua temporada de 1976? |
77,012 | SELECT SUM(year) FROM table_name_43 WHERE entrant = "barclay nordica arrows bmw" AND engine = "cosworth v8" | How many years did Barclay Nordica Arrows BMW enter with Cosworth v8 engine? | CREATE TABLE table_name_43 (year INTEGER, entrant VARCHAR, engine VARCHAR) | Quantos anos o Barclay Nordica Arrows BMW entrou com o motor Cosworth v8? |
77,013 | SELECT SUM(year) FROM table_name_98 WHERE engine = "bmw str-4 t/c" AND entrant = "barclay nordica arrows bmw" AND points < 1 | How many years did barclay nordica arrows bmw enter with a bmw str-4 t/c engine with less than 1 point? | CREATE TABLE table_name_98 (year INTEGER, points VARCHAR, engine VARCHAR, entrant VARCHAR) | Quantos anos as flechas barclay nordica entraram com um motor bmw str-4 t/c com menos de 1 ponto? |
77,014 | SELECT SUM(year) FROM table_name_12 WHERE points = 4 AND chassis = "ensign n180b" | How many years was ensign n180b a Chassis with 4 points? | CREATE TABLE table_name_12 (year INTEGER, points VARCHAR, chassis VARCHAR) | Quantos anos foi a insígnia n180b um chassi com 4 pontos? |
77,015 | SELECT division_record FROM table_name_26 WHERE team = "indians" | What is the division record for the Indians? | CREATE TABLE table_name_26 (division_record VARCHAR, team VARCHAR) | Qual é o recorde de divisão para os índios? |
77,016 | SELECT overall_record FROM table_name_17 WHERE school = "indian river" | What is the overall record of Indian River? | CREATE TABLE table_name_17 (overall_record VARCHAR, school VARCHAR) | Qual é o registro geral do Rio Indiano? |
77,017 | SELECT season_outcome FROM table_name_43 WHERE school = "lake forest" | What was the season outcome of Lake Forest? | CREATE TABLE table_name_43 (season_outcome VARCHAR, school VARCHAR) | Qual foi o resultado da temporada de Lake Forest? |
77,018 | SELECT COUNT(decile) FROM table_name_51 WHERE gender = "coed" | How many Deciles are coed? | CREATE TABLE table_name_51 (decile VARCHAR, gender VARCHAR) | Quantos decis são coed? |
77,019 | SELECT MIN(decile) FROM table_name_94 WHERE gender = "coed" | Which is the lowest Decile that is coed? | CREATE TABLE table_name_94 (decile INTEGER, gender VARCHAR) | Qual é o decil mais baixo que é coed? |
77,020 | SELECT years FROM table_name_98 WHERE name = "kawerau putauaki school" | What are the years for Kawerau Putauaki School? | CREATE TABLE table_name_98 (years VARCHAR, name VARCHAR) | Quais são os anos da Escola Kawerau Putauaki? |
77,021 | SELECT round___race FROM table_name_32 WHERE winning_driver = "charles hollings" AND pole_position = "charles hollings" | What is the round or race of the winning driver Charles Hollings and what was his pole position? | CREATE TABLE table_name_32 (round___race VARCHAR, winning_driver VARCHAR, pole_position VARCHAR) | Qual foi a volta ou corrida do piloto vencedor Charles Hollings e qual foi sua pole position? |
77,022 | SELECT MIN(year) FROM table_name_69 WHERE performance = "long jump" AND competition = "world indoor championships" AND position = "5th" | What was the earliest year in which long jump was performed in the world indoor Championships in 5th position? | CREATE TABLE table_name_69 (year INTEGER, position VARCHAR, performance VARCHAR, competition VARCHAR) | Qual foi o primeiro ano em que o salto foi realizado no Campeonato Mundial de Indoor na 5a posição? |
77,023 | SELECT MAX(year) FROM table_name_12 WHERE position = "4th" AND venue = "budapest, hungary" | What was the latest year in which she took 4th position in Budapest, Hungary? | CREATE TABLE table_name_12 (year INTEGER, position VARCHAR, venue VARCHAR) | Qual foi o último ano em que ela ficou em 4o lugar em Budapeste, Hungria? |
77,024 | SELECT name FROM table_name_20 WHERE mission = "apollo 16" AND age_at_first_step = "36y 6m 18d" | Which astronaut went on the Apollo 16 mission at the age of 36y 6m 18d to step on the moon? | CREATE TABLE table_name_20 (name VARCHAR, mission VARCHAR, age_at_first_step VARCHAR) | Qual astronauta foi à missão Apollo 16 com 36 anos e 6m 18d para pisar na Lua? |
77,025 | SELECT mission FROM table_name_8 WHERE name = "david scott" | David Scott went on which mission? | CREATE TABLE table_name_8 (mission VARCHAR, name VARCHAR) | David Scott foi em que missão? |
77,026 | SELECT service FROM table_name_65 WHERE age_at_first_step = "37y 8m 4d" | The astronaut who was 37y 8m 4d when making a first step on the moon was in which service? | CREATE TABLE table_name_65 (service VARCHAR, age_at_first_step VARCHAR) | O astronauta que estava 37y 8m 4d ao dar um primeiro passo na lua estava em que serviço? |
77,027 | SELECT lunar_eva_dates FROM table_name_27 WHERE mission = "apollo 12" AND name = "pete conrad" | Pete Conrad was on the Apollo 12 mission but also had what Lunar EVA dates? | CREATE TABLE table_name_27 (lunar_eva_dates VARCHAR, mission VARCHAR, name VARCHAR) | Pete Conrad estava na missão Apollo 12, mas também tinha as datas do EVA Lunar? |
77,028 | SELECT born FROM table_name_27 WHERE age_at_first_step = "38y 9m 7d" | The Apollo astronaut who was 38y 9m 7d when first stepping on the moon is who? | CREATE TABLE table_name_27 (born VARCHAR, age_at_first_step VARCHAR) | O astronauta da Apollo que estava 38y 9m 7d quando pisou na lua é quem? |
77,029 | SELECT class FROM table_name_72 WHERE year < 2011 AND chassis = "audi r15 tdi" | Which class has a year prior to 2011 and audi r15 tdi as the chassis? | CREATE TABLE table_name_72 (class VARCHAR, year VARCHAR, chassis VARCHAR) | Qual classe tem um ano antes de 2011 e audi r15 tdi como chassi? |
77,030 | SELECT engine FROM table_name_51 WHERE year > 2006 AND points = "60" | Which engine has a year later than 2006 and 60 as the points? | CREATE TABLE table_name_51 (engine VARCHAR, year VARCHAR, points VARCHAR) | Qual motor tem um ano depois de 2006 e 60 como pontos? |
77,031 | SELECT COUNT(year) FROM table_name_10 WHERE engine = "audi 3.6l turbo v8" AND rank = "1st" AND chassis = "audi r8r" | How many years has an engine of audi 3.6l turbo v8 and 1st as the rank with an audi r8r as the chassis? | CREATE TABLE table_name_10 (year VARCHAR, chassis VARCHAR, engine VARCHAR, rank VARCHAR) | Quantos anos tem um motor de audi 3.6l turbo v8 e 1o como a classificação com um audi r8r como o chassi? |
77,032 | SELECT entrant FROM table_name_22 WHERE rank = "25th" | Which entrant has 25th as the rank? | CREATE TABLE table_name_22 (entrant VARCHAR, rank VARCHAR) | Qual participante tem a 25a posição? |
77,033 | SELECT AVG(year_won) FROM table_name_20 WHERE player = "rich beem" AND to_par < 17 | What is the average year Rich Beem had a to par less than 17? | CREATE TABLE table_name_20 (year_won INTEGER, player VARCHAR, to_par VARCHAR) | Qual é o ano médio em que Rich Beem teve um par inferior a 17? |
77,034 | SELECT MIN(year_won) FROM table_name_81 WHERE total > 156 | What is the earliest year won with a total bigger than 156? | CREATE TABLE table_name_81 (year_won INTEGER, total INTEGER) | Qual é o primeiro ano ganho com um total maior que 156? |
77,035 | SELECT COUNT(total) FROM table_name_2 WHERE year_won < 2002 AND player = "bob tway" AND to_par > 7 | What is the total for Bob Tway for the year won before 2002 with a to par bigger than 7? | CREATE TABLE table_name_2 (total VARCHAR, to_par VARCHAR, year_won VARCHAR, player VARCHAR) | Qual é o total de Bob Tway para o ano ganho antes de 2002 com um par maior que 7? |
77,036 | SELECT COUNT(to_par) FROM table_name_72 WHERE country = "united states" AND year_won > 1986 AND player = "paul azinger" AND total > 145 | What is the to par for Paul Azinger from the United States after 1986 for a total bigger than 145? | CREATE TABLE table_name_72 (to_par VARCHAR, total VARCHAR, player VARCHAR, country VARCHAR, year_won VARCHAR) | Qual é o par para Paul Azinger dos Estados Unidos depois de 1986 para um total maior do que 145? |
77,037 | SELECT MIN(year_won) FROM table_name_12 WHERE player = "paul azinger" AND to_par > 5 | What is the earliest year won Paul Azinger had with a to par higher than 5? | CREATE TABLE table_name_12 (year_won INTEGER, player VARCHAR, to_par VARCHAR) | Qual foi o primeiro ano que Paul Azinger ganhou com um par maior que 5? |
77,038 | SELECT COUNT(year_won) FROM table_name_22 WHERE country = "australia" AND to_par > 16 | What is the year won by Australia with a to par bigger than 16? | CREATE TABLE table_name_22 (year_won VARCHAR, country VARCHAR, to_par VARCHAR) | Qual é o ano ganho pela Austrália com um par maior que 16? |
77,039 | SELECT lifespan FROM table_name_96 WHERE representative = "theodore f. kluttz" | What is the Lifespan when the Representative is Theodore F. Kluttz? | CREATE TABLE table_name_96 (lifespan VARCHAR, representative VARCHAR) | O que é o Lifespan quando o representante é Theodore F. Kluttz? |
77,040 | SELECT week FROM table_name_88 WHERE result = "l 35–37" | What week's game had a result of l 35–37? | CREATE TABLE table_name_88 (week VARCHAR, result VARCHAR) | Que semana de jogo teve um resultado de l 35-37? |
77,041 | SELECT year FROM table_name_16 WHERE entrant = "trio brdeact wind allass" | What year was trio brdeact wind allass the entrant? | CREATE TABLE table_name_16 (year VARCHAR, entrant VARCHAR) | Em que ano foi o vento do trio brdeact alarmar o participante? |
77,042 | SELECT SUM(year) FROM table_name_46 WHERE chassis = "kurtis kraft 500f" | What is the year when kurtis kraft 500f was the chassis? | CREATE TABLE table_name_46 (year INTEGER, chassis VARCHAR) | Qual foi o ano em que o Kurtis Kraft 500f foi o chassi? |
77,043 | SELECT MIN(year) FROM table_name_38 WHERE points > 0 | What is the earliest year when the points were more than 0? | CREATE TABLE table_name_38 (year INTEGER, points INTEGER) | Qual foi o primeiro ano em que os pontos foram mais de 0? |
77,044 | SELECT name FROM table_name_91 WHERE area = "balclutha" AND decile < 7 AND roll > 186 | What's the school name in Balclutha that has a Decile of 7 and a roll larger than 186? | CREATE TABLE table_name_91 (name VARCHAR, roll VARCHAR, area VARCHAR, decile VARCHAR) | Qual é o nome da escola em Balclutha que tem um Decil de 7 e um rolo maior que 186? |
77,045 | SELECT name FROM table_name_52 WHERE area = "balclutha" AND roll < 55 | Which school in Balclutha has a roll smaller than 55? | CREATE TABLE table_name_52 (name VARCHAR, area VARCHAR, roll VARCHAR) | Qual escola em Balclutha tem um rolo menor que 55? |
77,046 | SELECT date FROM table_name_82 WHERE home = "winnipeg jets" AND score = "4–6" | When has winnipeg jets with a Score of 4–6? | CREATE TABLE table_name_82 (date VARCHAR, home VARCHAR, score VARCHAR) | Quando é que os jactos winnipeg têm uma pontuação de 46? |
77,047 | SELECT date FROM table_name_99 WHERE home = "edmonton oilers" | When is Edmonton Oilers in? | CREATE TABLE table_name_99 (date VARCHAR, home VARCHAR) | Quando é que a Edmonton Oilers está? |
77,048 | SELECT score FROM table_name_10 WHERE visitor = "winnipeg jets" AND date = "april 7" | What is the Score that has a Winnipeg Jets as Visitor on april 7? | CREATE TABLE table_name_10 (score VARCHAR, visitor VARCHAR, date VARCHAR) | Qual é a pontuação que tem um Winnipeg Jets como visitante em abril 7? |
77,049 | SELECT score FROM table_name_71 WHERE date = "april 6" | What is the Score on April 6? | CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR) | Qual é a pontuação em 6 de abril? |
77,050 | SELECT date FROM table_name_52 WHERE record = "1–0" | When has a Record of 1–0? | CREATE TABLE table_name_52 (date VARCHAR, record VARCHAR) | Quando tem um registro de 10? |
77,051 | SELECT llws FROM table_name_37 WHERE year = 2003 | What is the LLWS when the Year is 2003? | CREATE TABLE table_name_37 (llws VARCHAR, year VARCHAR) | O que é o LLWS quando o ano é 2003? |
77,052 | SELECT MIN(year) FROM table_name_2 WHERE city = "peabody" | What is the earliest Year when the City is Peabody? | CREATE TABLE table_name_2 (year INTEGER, city VARCHAR) | Qual é o primeiro ano em que a cidade é Peabody? |
77,053 | SELECT COUNT(year) FROM table_name_19 WHERE llws = "4th place" AND city = "westport" | What is the total number of Years when the LLWS is 4th place, and when the City is Westport? | CREATE TABLE table_name_19 (year VARCHAR, llws VARCHAR, city VARCHAR) | Qual é o número total de anos quando o LLWS é o quarto lugar, e quando a cidade é Westport? |
77,054 | SELECT team FROM table_name_9 WHERE kit_manufacturer = "pony" AND captain = "gary mabbutt" | What team has Pony as the kit manufacturer and Gary Mabbutt as the captain? | CREATE TABLE table_name_9 (team VARCHAR, kit_manufacturer VARCHAR, captain VARCHAR) | Que equipe tem Pony como o fabricante do kit e Gary Mabbutt como o capitão? |
77,055 | SELECT manager_1 FROM table_name_95 WHERE team = "leeds united" | Who is the manager 1 for Leeds United? | CREATE TABLE table_name_95 (manager_1 VARCHAR, team VARCHAR) | Quem é o treinador 1 do Leeds United? |
77,056 | SELECT team FROM table_name_27 WHERE kit_manufacturer = "pony" AND captain = "julian dicks" | What is the team with a Pony kit manufacturer and Julian Dicks as the captain? | CREATE TABLE table_name_27 (team VARCHAR, kit_manufacturer VARCHAR, captain VARCHAR) | Qual é a equipe com um fabricante de kits Pony e Julian Dicks como capitão? |
77,057 | SELECT team FROM table_name_41 WHERE kit_manufacturer = "umbro" AND captain = "eric cantona" | What team has a kit manufacturer of Umbro and Eric Cantona as captain? | CREATE TABLE table_name_41 (team VARCHAR, kit_manufacturer VARCHAR, captain VARCHAR) | Que equipa tem um fabricante de kits da Umbro e Eric Cantona como capitão? |
77,058 | SELECT manager_1 FROM table_name_29 WHERE kit_manufacturer = "puma" AND shirt_sponsor = "puma" | Who is the manager 1 with Puma as the kit manufacturer and Puma as the shirt sponsor? | CREATE TABLE table_name_29 (manager_1 VARCHAR, kit_manufacturer VARCHAR, shirt_sponsor VARCHAR) | Quem é o gerente 1 com Puma como o fabricante do kit e Puma como o patrocinador da camisa? |
77,059 | SELECT kit_manufacturer FROM table_name_1 WHERE shirt_sponsor = "walkers" | What is the kit manufacturer with Walkers as the shirt sponsor? | CREATE TABLE table_name_1 (kit_manufacturer VARCHAR, shirt_sponsor VARCHAR) | Qual é o fabricante do kit com Walkers como patrocinador da camisa? |
77,060 | SELECT AVG(points) FROM table_name_63 WHERE chassis = "dallara 3087 lola t88/50" AND year < 1988 | Name the average points for dallara 3087 lola t88/50 and year before 1988 | CREATE TABLE table_name_63 (points INTEGER, chassis VARCHAR, year VARCHAR) | Nomear os pontos médios para dallara 3087 lola t88/50 e ano anterior a 1988 |
77,061 | SELECT SUM(points) FROM table_name_38 WHERE year = 1992 | Name the sum of points for 1992 | CREATE TABLE table_name_38 (points INTEGER, year VARCHAR) | Nomear a soma dos pontos para 1992 |
77,062 | SELECT points FROM table_name_56 WHERE year > 1987 | Name the points for year more than 1987 | CREATE TABLE table_name_56 (points VARCHAR, year INTEGER) | Nomear os pontos para o ano mais de 1987 |
77,063 | SELECT year FROM table_name_62 WHERE points < 20 AND chassis = "dallara 3087" | Name the year for points less than 20 and chassis of dallara 3087 | CREATE TABLE table_name_62 (year VARCHAR, points VARCHAR, chassis VARCHAR) | Nomear o ano para pontos inferiores a 20 e chassis de dallara 3087 |
77,064 | SELECT MAX(apps) FROM table_name_22 WHERE season = "total" AND goals > 3 | What is the most apps that a has a total season and 3 goals? | CREATE TABLE table_name_22 (apps INTEGER, season VARCHAR, goals VARCHAR) | Qual é o maior número de aplicativos que um tem uma temporada total e 3 metas? |
77,065 | SELECT COUNT(apps) FROM table_name_90 WHERE goals = 2 | What is the final number of apps with 2 goals? | CREATE TABLE table_name_90 (apps VARCHAR, goals VARCHAR) | Qual é o número final de aplicativos com dois objetivos? |
77,066 | SELECT airdate FROM table_name_62 WHERE bbc_one_weekly_ranking = 14 | What date did the episode with a weekly ranking of 14 air? | CREATE TABLE table_name_62 (airdate VARCHAR, bbc_one_weekly_ranking VARCHAR) | Qual foi a data do episódio com uma classificação semanal de 14 ares? |
77,067 | SELECT COUNT(total_viewers) FROM table_name_84 WHERE share = "18.8%" AND bbc_one_weekly_ranking < 16 | What is the total number of total viewers with a share of 18.8% and a weekly ranking under 16? | CREATE TABLE table_name_84 (total_viewers VARCHAR, share VARCHAR, bbc_one_weekly_ranking VARCHAR) | Qual é o número total de espectadores com uma participação de 18,8% e um ranking semanal com menos de 16 anos? |
77,068 | SELECT rider FROM table_name_36 WHERE grid = 37 | Who has 37 grids? | CREATE TABLE table_name_36 (rider VARCHAR, grid VARCHAR) | Quem tem 37 grids? |
77,069 | SELECT AVG(grid) FROM table_name_78 WHERE laps > 23 | What is the average grid with more than 23 laps? | CREATE TABLE table_name_78 (grid INTEGER, laps INTEGER) | Qual é a grade média com mais de 23 voltas? |
77,070 | SELECT AVG(grid) FROM table_name_56 WHERE laps > 23 | What is the average grid with more than 23 laps? | CREATE TABLE table_name_56 (grid INTEGER, laps INTEGER) | Qual é a grade média com mais de 23 voltas? |
77,071 | SELECT AVG(decile) FROM table_name_84 WHERE name = "te puru school" | What is the average decile for te puru school? | CREATE TABLE table_name_84 (decile INTEGER, name VARCHAR) | Qual é o decil médio para a escola te puru? |
77,072 | SELECT SUM(decile) FROM table_name_64 WHERE area = "whitianga" AND roll < 835 | What is the total decile with an Area of whitianga, and a Roll smaller than 835? | CREATE TABLE table_name_64 (decile INTEGER, area VARCHAR, roll VARCHAR) | Qual é o decil total com uma área de whitianga, e um rolo menor que 835? |
77,073 | SELECT name FROM table_name_50 WHERE area = "kennedy bay" | Which name has an Area of kennedy bay? | CREATE TABLE table_name_50 (name VARCHAR, area VARCHAR) | Qual nome tem uma área de kennedy bay? |
77,074 | SELECT years FROM table_name_55 WHERE decile > 4 AND area = "thames" | Which years have a Decile larger than 4, and an Area of thames? | CREATE TABLE table_name_55 (years VARCHAR, decile VARCHAR, area VARCHAR) | Que anos têm um Decil maior que 4, e uma Área de Thames? |
77,075 | SELECT authority FROM table_name_68 WHERE decile < 6 AND area = "opoutere" | Which Authority has a Decile smaller than 6, and an Area of opoutere? | CREATE TABLE table_name_68 (authority VARCHAR, decile VARCHAR, area VARCHAR) | Qual Autoridade tem um Decil menor que 6 e uma Área de Oputere? |
77,076 | SELECT gender FROM table_name_17 WHERE years = "1–8" AND authority = "state" AND roll < 184 AND name = "matatoki school" | Which gender has Years of 1–8, an Authority of state, a Roll less than 184, and a Name of matatoki school? | CREATE TABLE table_name_17 (gender VARCHAR, name VARCHAR, roll VARCHAR, years VARCHAR, authority VARCHAR) | Qual gênero tem anos de 1 a 8, uma Autoridade de Estado, um Roll menor que 184 e um nome de escola de matatoki? |
77,077 | SELECT tournament FROM table_name_34 WHERE winning_score = –4(71 - 72 - 72 - 69 = 284) | What was the tournament that resulted in a winning score of –4 (71-72-72-69=284)? | CREATE TABLE table_name_34 (tournament VARCHAR, winning_score VARCHAR) | Qual foi o torneio que resultou em uma pontuação vencedora de -4 (71-72-72-69-284)? |
77,078 | SELECT winning_score FROM table_name_47 WHERE runner_s__up = "brian kamm" | What was the winning score of the event where Brian Kamm was the runner-up? | CREATE TABLE table_name_47 (winning_score VARCHAR, runner_s__up VARCHAR) | Qual foi a pontuação vencedora do evento em que Brian Kamm foi o vice-campeão? |
77,079 | SELECT runner_s__up FROM table_name_27 WHERE winning_score = –15(66 - 67 - 70 - 70 = 273) | Who was the runner-up for the event that ended with a winning score of –15 (66-67-70-70=273)? | CREATE TABLE table_name_27 (runner_s__up VARCHAR, winning_score VARCHAR) | Quem foi o vice-campeão do evento que terminou com uma pontuação vencedora de –15 (66-67-70-273)? |
77,080 | SELECT date FROM table_name_39 WHERE tournament = "nike colorado classic" | On what date was the Nike Colorado Classic held? | CREATE TABLE table_name_39 (date VARCHAR, tournament VARCHAR) | Em que data foi realizado o Nike Colorado Classic? |
77,081 | SELECT winning_score FROM table_name_57 WHERE tournament = "buy.com siouxland open" | What was the winning score of the Buy.com Siouxland Open? | CREATE TABLE table_name_57 (winning_score VARCHAR, tournament VARCHAR) | Qual foi a pontuação vencedora do Buy.com Siouxland Open? |
77,082 | SELECT MIN(total) FROM table_name_63 WHERE rank > 8 AND routine_score > 27.6 AND difficulty_score = "13.8" | What is the total with lower than rank 8, and higher than 27.6 score and 13.8 difficulty? | CREATE TABLE table_name_63 (total INTEGER, difficulty_score VARCHAR, rank VARCHAR, routine_score VARCHAR) | Qual é o total com menor do que a classificação 8, e maior do que 27,6 escore e 13,8 dificuldade? |
77,083 | SELECT AVG(total) FROM table_name_41 WHERE games < 15 AND silver < 0 | What is the average medal total of the country who had 0 silver medals and participated in less than 15 games? | CREATE TABLE table_name_41 (total INTEGER, games VARCHAR, silver VARCHAR) | Qual é o total médio de medalhas do país que teve 0 medalhas de prata e participou em menos de 15 jogos? |
77,084 | SELECT MIN(points) FROM table_name_41 WHERE chassis = "forti fg01b forti fg03" AND year < 1996 | What is the least Points with Chassis of forti fg01b forti fg03, and a year less than 1996? | CREATE TABLE table_name_41 (points INTEGER, chassis VARCHAR, year VARCHAR) | Qual é o mínimo Pontos com Chassis de forti fg01b forti fg03, e um ano menos do que 1996? |
77,085 | SELECT MIN(year) FROM table_name_47 WHERE engine = "ford zetec-r v8" AND points > 0 | What is the lowest year for an engine of ford zetec-r v8, and points greater than 0? | CREATE TABLE table_name_47 (year INTEGER, engine VARCHAR, points VARCHAR) | Qual é o ano mais baixo para um motor de ford zetec-r v8 e pontos maiores que 0? |
77,086 | SELECT AVG(points) FROM table_name_63 WHERE engine = "ford zetec-r v8" | What are the average points for an engine of ford zetec-r v8? | CREATE TABLE table_name_63 (points INTEGER, engine VARCHAR) | Quais são os pontos médios para um motor de ford zetec-r v8? |
77,087 | SELECT years FROM table_name_78 WHERE name = "elsthorpe school" | Name the years for elsthorpe school | CREATE TABLE table_name_78 (years VARCHAR, name VARCHAR) | Nomeie os anos para a escola elsthorpe |
77,088 | SELECT COUNT(roll) FROM table_name_19 WHERE name = "st joseph's school" AND decile < 5 | Name the total number of roll for st joseph's school when decile is less than 5 | CREATE TABLE table_name_19 (roll VARCHAR, name VARCHAR, decile VARCHAR) | Nomeie o número total de rolo para a escola de St. joseph quando o decil for inferior a 5 |
77,089 | SELECT gender FROM table_name_63 WHERE name = "elsthorpe school" | Name the gender for elsthorpe school | CREATE TABLE table_name_63 (gender VARCHAR, name VARCHAR) | Nomear o gênero para elsthorpe school |
77,090 | SELECT drivers FROM table_name_88 WHERE chassis = "season cancelled" | Name the drivers for chassis of season cancelled | CREATE TABLE table_name_88 (drivers VARCHAR, chassis VARCHAR) | Nomeie os pilotos para o chassi da temporada cancelado |
77,091 | SELECT teams FROM table_name_95 WHERE third__points_ = "season cancelled" | Name the teams for third points of season cancelled | CREATE TABLE table_name_95 (teams VARCHAR, third__points_ VARCHAR) | Nomeie as equipes para o terceiro ponto da temporada cancelado |
77,092 | SELECT engine FROM table_name_29 WHERE rounds = "11" AND teams = "25" | Name the engine with rounds of 11 and teams of 25 | CREATE TABLE table_name_29 (engine VARCHAR, rounds VARCHAR, teams VARCHAR) | Nomeie o motor com rodadas de 11 e equipes de 25 |
77,093 | SELECT score FROM table_name_39 WHERE loss = "mcdowell (12-7)" | What was the score for the loss of McDowell (12-7)? | CREATE TABLE table_name_39 (score VARCHAR, loss VARCHAR) | Qual foi a pontuação para a perda de McDowell (12-7)? |
77,094 | SELECT SUM(laps) FROM table_name_1 WHERE year = 2011 | What is the total laps for the year 2011? | CREATE TABLE table_name_1 (laps INTEGER, year VARCHAR) | Qual é o total de voltas para o ano de 2011? |
77,095 | SELECT class AS pos FROM table_name_98 WHERE pos = "9th" | Which team is in 9th place? | CREATE TABLE table_name_98 (class VARCHAR, pos VARCHAR) | Qual equipe está em 9o lugar? |
77,096 | SELECT SUM(division) FROM table_name_69 WHERE country = "serbia and montenegro" AND apps < 12 AND goals > 0 | What is the total of the Divison that is from the country Serbia and Montenegro with apps smaller than 12 with more goals than 0? | CREATE TABLE table_name_69 (division INTEGER, goals VARCHAR, country VARCHAR, apps VARCHAR) | Qual é o total da Divison que é do país Sérvia e Montenegro com aplicativos menores que 12 com mais gols do que 0? |
77,097 | SELECT SUM(goals) FROM table_name_8 WHERE team = "partizan" AND country = "serbia" AND division > 1 | What is the total number of goals that the Partizan team from the country of serbia had that was larger than 1? | CREATE TABLE table_name_8 (goals INTEGER, division VARCHAR, team VARCHAR, country VARCHAR) | Qual é o número total de gols que a equipe Partizan do país da Sérvia teve que foi maior que 1? |
77,098 | SELECT year FROM table_name_47 WHERE engine = "honda ra168e 1.5 v6 t" | What year was the Honda ra168e 1.5 v6 t engine used? | CREATE TABLE table_name_47 (year VARCHAR, engine VARCHAR) | Em que ano foi utilizado o motor Honda ra168e 1.5 v6 t? |
77,099 | SELECT tyres FROM table_name_40 WHERE chassis = "mp4/14" | What tyres were used with the mp4/14 chassis? | CREATE TABLE table_name_40 (tyres VARCHAR, chassis VARCHAR) | Quais pneus foram usados com o chassi mp4/14? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.