Unnamed: 0
int64 0
78.6k
| answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
| translated_answer
stringlengths 12
992
|
---|---|---|---|---|
78,300 | SELECT date FROM table_name_98 WHERE loss = "gott (2-7)" | What was the date of the game that had a loss of Gott (2-7)? | CREATE TABLE table_name_98 (date VARCHAR, loss VARCHAR) | Qual foi a data do jogo que teve uma perda de Gott (2-7)? |
78,301 | SELECT opponent FROM table_name_13 WHERE record = "54-58" | Who was the opponent at the game when the record was 54-58? | CREATE TABLE table_name_13 (opponent VARCHAR, record VARCHAR) | Quem era o adversário no jogo quando o recorde era de 54-58? |
78,302 | SELECT score FROM table_name_77 WHERE record = "59-65" | What was the score of the game when the record was 59-65? | CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR) | Qual foi a pontuação do jogo quando o recorde foi de 59-65? |
78,303 | SELECT opponent FROM table_name_35 WHERE loss = "caldwell (10-11)" | Who was the opponent at the game that had a loss of Caldwell (10-11)? | CREATE TABLE table_name_35 (opponent VARCHAR, loss VARCHAR) | Quem foi o adversário no jogo que teve uma perda de Caldwell (10-11)? |
78,304 | SELECT opponent FROM table_name_1 WHERE time = "1:26" | Which opponent had a time of 1:26? | CREATE TABLE table_name_1 (opponent VARCHAR, time VARCHAR) | Qual adversário teve um tempo de 1:26? |
78,305 | SELECT date FROM table_name_77 WHERE opponent = "royals" AND record = "18-12" | What was the date of the game with the Kansas City Royals when the Blue Jays record was 18-12? | CREATE TABLE table_name_77 (date VARCHAR, opponent VARCHAR, record VARCHAR) | Qual foi a data do jogo com o Kansas City Royals quando o recorde do Blue Jays foi de 18-12? |
78,306 | SELECT catalogue FROM table_name_33 WHERE region = "uk" AND format = "vinyl" AND date = "1986" | Which catalogue is from the UK region, and is on vinyl, and was dated in 1986? | CREATE TABLE table_name_33 (catalogue VARCHAR, date VARCHAR, region VARCHAR, format VARCHAR) | Qual catálogo é da região do Reino Unido, e está em vinil, e foi datado em 1986? |
78,307 | SELECT region FROM table_name_82 WHERE label = "bronze" AND catalogue = "202 876-270" | What region has a bronze label and a catalogue of 202 876-270? | CREATE TABLE table_name_82 (region VARCHAR, label VARCHAR, catalogue VARCHAR) | Que região tem uma etiqueta de bronze e um catálogo de 202 876-270? |
78,308 | SELECT label FROM table_name_52 WHERE region = "germany" | Which label is from the Germany region? | CREATE TABLE table_name_52 (label VARCHAR, region VARCHAR) | Qual é a marca da Alemanha? |
78,309 | SELECT label FROM table_name_31 WHERE catalogue = "brol 34531" | What label has brol 34531 as it's catalogue? | CREATE TABLE table_name_31 (label VARCHAR, catalogue VARCHAR) | Qual rótulo tem o brol 34531 como catálogo? |
78,310 | SELECT label FROM table_name_61 WHERE region = "uk" AND date = "1986" AND format = "cd" | Which label has UK for its region, is on a CD, and is dated from 1986? | CREATE TABLE table_name_61 (label VARCHAR, format VARCHAR, region VARCHAR, date VARCHAR) | Qual rótulo tem o Reino Unido para sua região, está em um CD, e é datado de 1986? |
78,311 | SELECT catalogue FROM table_name_46 WHERE label = "essential, castle music" | Which catalogue has essential, castle music as it's label? | CREATE TABLE table_name_46 (catalogue VARCHAR, label VARCHAR) | Qual catálogo tem a música essencial do castelo como se fosse o rótulo? |
78,312 | SELECT period_active FROM table_name_83 WHERE release_year_of_first_charted_record = 1973 AND genre = "rock" | What's the period of a rock album released in 1973? | CREATE TABLE table_name_83 (period_active VARCHAR, release_year_of_first_charted_record VARCHAR, genre VARCHAR) | Qual é o período de um álbum de rock lançado em 1973? |
78,313 | SELECT pick__number FROM table_name_15 WHERE name = "bill atessis" | Name the pick number for bill atessis | CREATE TABLE table_name_15 (pick__number VARCHAR, name VARCHAR) | Nomeie o número de escolha para o Bill Atessis |
78,314 | SELECT COUNT(overall) FROM table_name_6 WHERE position = "defensive tackle" | Name the total number of overall for defensive tackle | CREATE TABLE table_name_6 (overall VARCHAR, position VARCHAR) | Nomear o número total de geral para tackle defensivo |
78,315 | SELECT engine FROM table_name_7 WHERE entrant = "daimler benz ag" | Which engine has daimler benz ag as an entrant? | CREATE TABLE table_name_7 (engine VARCHAR, entrant VARCHAR) | Qual motor tem o daimler benz ag como participante? |
78,316 | SELECT year_s__won FROM table_name_86 WHERE to_par = "+6" | In which years was the to par +6? | CREATE TABLE table_name_86 (year_s__won VARCHAR, to_par VARCHAR) | Em que anos foi o par +6? |
78,317 | SELECT MIN(total) FROM table_name_31 WHERE year_s__won = "1991" | In 1991, what was the lowest total? | CREATE TABLE table_name_31 (total INTEGER, year_s__won VARCHAR) | Em 1991, qual foi o menor total? |
78,318 | SELECT SUM(lane) FROM table_name_11 WHERE rank > 22 | What are the total lanes that have a rank larger than 22? | CREATE TABLE table_name_11 (lane INTEGER, rank INTEGER) | Quais são as faixas totais que têm uma classificação maior que 22? |
78,319 | SELECT name FROM table_name_55 WHERE rank > 2 AND lane = 1 AND nationality = "hong kong" | Which one has a rank bigger than 2, lane of 1, and is from Hong Kong? | CREATE TABLE table_name_55 (name VARCHAR, nationality VARCHAR, rank VARCHAR, lane VARCHAR) | Qual deles tem uma classificação maior que 2, faixa de 1, e é de Hong Kong? |
78,320 | SELECT SUM(rank) FROM table_name_52 WHERE nationality = "japan" AND lane < 7 AND heat < 3 | What rank is from Japan, has a lane smaller than 7 and a heat smaller than 3? | CREATE TABLE table_name_52 (rank INTEGER, heat VARCHAR, nationality VARCHAR, lane VARCHAR) | Qual é a classificação do Japão, tem uma faixa menor que 7 e um calor menor que 3? |
78,321 | SELECT SUM(losses) FROM table_name_9 WHERE manager = "jim hoff" AND wins < 12 | What was Jim Hoff's sum of losses and a wins smaller than 12? | CREATE TABLE table_name_9 (losses INTEGER, manager VARCHAR, wins VARCHAR) | Qual foi a soma de perdas de Jim Hoff e uma vitória menor que 12? |
78,322 | SELECT AVG(wins) FROM table_name_42 WHERE years = "1978" AND games < 141 | What was the average of games that were one in 1978 that were smaller than 141? | CREATE TABLE table_name_42 (wins INTEGER, years VARCHAR, games VARCHAR) | Qual era a média de jogos que eram menores que 141 em 1978? |
78,323 | SELECT SUM(games) FROM table_name_80 WHERE manager = "richie hebner" AND wins < 34 | What was the sum of Richie Hebner winning games that were smaller 34? | CREATE TABLE table_name_80 (games INTEGER, manager VARCHAR, wins VARCHAR) | Qual foi a soma dos jogos vencedores de Richie Hebner que eram menores 34? |
78,324 | SELECT AVG(wins) FROM table_name_91 WHERE games < 3 AND manager = "george scherger" AND losses < 1 | What was the average of wins with manager George Scherger smaller than 3 and losses smaller than 1? | CREATE TABLE table_name_91 (wins INTEGER, losses VARCHAR, games VARCHAR, manager VARCHAR) | Qual foi a média de vitórias com o técnico George Scherger menor que 3 e perdas menores que 1? |
78,325 | SELECT date FROM table_name_53 WHERE race = "golden slipper" | When was the golden slipper race? | CREATE TABLE table_name_53 (date VARCHAR, race VARCHAR) | Quando foi a corrida do golden slipper? |
78,326 | SELECT race FROM table_name_78 WHERE weight__kg_ < 55.5 | In which races did the jockey weigh less than 55.5 kg? | CREATE TABLE table_name_78 (race VARCHAR, weight__kg_ INTEGER) | Em que corridas o jóquei pesava menos de 55,5 kg? |
78,327 | SELECT result FROM table_name_28 WHERE venue = "rosehill" AND race = "todman stakes" | What was the result of the Todman stakes race at rosehill? | CREATE TABLE table_name_28 (result VARCHAR, venue VARCHAR, race VARCHAR) | Qual foi o resultado da corrida de estacas de Todman em Rosehill? |
78,328 | SELECT country FROM table_name_80 WHERE player = "ky laffoon" | What Country has Player Ky Laffoon? | CREATE TABLE table_name_80 (country VARCHAR, player VARCHAR) | Qual país tem o jogador Ky Laffoon? |
78,329 | SELECT player FROM table_name_24 WHERE country = "united states" AND money___$__ = 356 | What Player is from the Country United States and Money ($) of 356? | CREATE TABLE table_name_24 (player VARCHAR, country VARCHAR, money___$__ VARCHAR) | Que jogador é do país Estados Unidos e dinheiro ($) de 356? |
78,330 | SELECT player FROM table_name_10 WHERE to_par = "+1" AND score = 75 - 70 - 71 - 73 = 289 | What Player has a To par of +1 and the Score 75-70-71-73=289? | CREATE TABLE table_name_10 (player VARCHAR, to_par VARCHAR, score VARCHAR) | Qual jogador tem um par de +1 e a pontuação 75-70-71-73-289? |
78,331 | SELECT outcome FROM table_name_73 WHERE tournament = "rome 2, italy" | What was the outcome for the Rome 2, Italy tournament? | CREATE TABLE table_name_73 (outcome VARCHAR, tournament VARCHAR) | Qual foi o resultado do torneio Roma 2, Itália? |
78,332 | SELECT outcome FROM table_name_38 WHERE opponents_in_the_final = "marius călugăru ciprian petre porumb" | What was the outcome of the match opponents in the final of Marius Călugăru Ciprian Petre Porumb? | CREATE TABLE table_name_38 (outcome VARCHAR, opponents_in_the_final VARCHAR) | Qual foi o resultado dos adversários da partida na final de Marius Clugru Ciprian Petre Porumb? |
78,333 | SELECT SUM(gold) FROM table_name_81 WHERE total = 11 AND bronze < 3 | How many golds have a Total of 11, and a Bronze smaller than 3? | CREATE TABLE table_name_81 (gold INTEGER, total VARCHAR, bronze VARCHAR) | Quantos ouros têm um total de 11, e um bronze menor que 3? |
78,334 | SELECT SUM(gold) FROM table_name_34 WHERE bronze = 0 AND total > 1 AND nation = "chad" AND silver > 0 | How many golds have a Bronze of 0, a Total larger than 1, a Nation of chad, and a Silver larger than 0? | CREATE TABLE table_name_34 (gold INTEGER, silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR) | Quantos ouros têm um bronze de 0, um total maior que 1, uma nação de chad, e uma prata maior que 0? |
78,335 | SELECT MIN(silver) FROM table_name_7 WHERE gold = 1 AND nation = "lithuania" | What is the smallest silver with a Gold of 1, and a Nation of lithuania? | CREATE TABLE table_name_7 (silver INTEGER, gold VARCHAR, nation VARCHAR) | Qual é a menor prata com um ouro de 1, e uma nação de lithuania? |
78,336 | SELECT COUNT(bronze) FROM table_name_62 WHERE gold > 1 AND rank = 2 AND silver < 12 | What is the total bronze with a Gold larger than 1, a Rank of 2, and a Silver smaller than 12? | CREATE TABLE table_name_62 (bronze VARCHAR, silver VARCHAR, gold VARCHAR, rank VARCHAR) | Qual é o bronze total com um ouro maior que 1, uma classificação de 2 e uma prata menor que 12? |
78,337 | SELECT visiting_team FROM table_name_59 WHERE date = "december 23" | Which Visiting Team is on december 23? | CREATE TABLE table_name_59 (visiting_team VARCHAR, date VARCHAR) | Qual equipe visitante será no dia 23 de dezembro? |
78,338 | SELECT host_team FROM table_name_86 WHERE final_score = "42-23" | Which Host Team has Final Score of 42-23? | CREATE TABLE table_name_86 (host_team VARCHAR, final_score VARCHAR) | Qual equipe anfitriã tem pontuação final de 42-23? |
78,339 | SELECT date FROM table_name_64 WHERE final_score = "31-7" | When did Final Score of 31-7 happen? | CREATE TABLE table_name_64 (date VARCHAR, final_score VARCHAR) | Quando aconteceu a pontuação final de 31-7? |
78,340 | SELECT 2010 FROM table_name_74 WHERE 2011 = "grand slam tournaments" | Which Tournament in 2010 also has Grand Slam tournaments in 2011 | CREATE TABLE table_name_74 (Id VARCHAR) | Qual Torneio em 2010 também tem torneios de Grand Slam em 2011 |
78,341 | SELECT AVG(attendance) FROM table_name_81 WHERE opponent = "new york mets" AND record = "51-33" | What was the average attendance when the New York Mets were opponents with a record of 51-33? | CREATE TABLE table_name_81 (attendance INTEGER, opponent VARCHAR, record VARCHAR) | Qual foi o comparecimento médio quando os New York Mets eram adversários com um recorde de 51-33? |
78,342 | SELECT visiting_team FROM table_name_36 WHERE date = "october 18" | What visiting team played on October 18? | CREATE TABLE table_name_36 (visiting_team VARCHAR, date VARCHAR) | Qual time visitante jogou no dia 18 de outubro? |
78,343 | SELECT visiting_team FROM table_name_49 WHERE stadium = "3com park" AND date = "october 7" | What visiting team played at 3com park on October 7? | CREATE TABLE table_name_49 (visiting_team VARCHAR, stadium VARCHAR, date VARCHAR) | Qual equipe visitante jogou no 3com park em 7 de outubro? |
78,344 | SELECT host_team FROM table_name_55 WHERE final_score = "13-10" | Which host team won on a final scoreline of 13-10? | CREATE TABLE table_name_55 (host_team VARCHAR, final_score VARCHAR) | Qual equipe anfitriã venceu em um placar final de 13-10? |
78,345 | SELECT stadium FROM table_name_30 WHERE final_score = "27-34" | In what stadium did a game result in a final scoreline reading 27-34? | CREATE TABLE table_name_30 (stadium VARCHAR, final_score VARCHAR) | Em que estádio um jogo resultou em um placar final de 27-34? |
78,346 | SELECT visiting_team FROM table_name_92 WHERE host_team = "jacksonville jaguars" | In the game in which the Jacksonville Jaguars were hosts, what was the name of the visiting team? | CREATE TABLE table_name_92 (visiting_team VARCHAR, host_team VARCHAR) | No jogo em que os Jacksonville Jaguars eram anfitriões, qual era o nome da equipe visitante? |
78,347 | SELECT visiting_team FROM table_name_77 WHERE final_score = "18-40" | Which visiting team wound up with a final score of 18-40? | CREATE TABLE table_name_77 (visiting_team VARCHAR, final_score VARCHAR) | Qual equipe visitante terminou com uma pontuação final de 18-40? |
78,348 | SELECT SUM(attendance) FROM table_name_30 WHERE week = 16 | Name the sum of attendacne for 16 weeks | CREATE TABLE table_name_30 (attendance INTEGER, week VARCHAR) | Nomeie a soma de atendecne por 16 semanas |
78,349 | SELECT result FROM table_name_25 WHERE week < 7 AND game_site = "los angeles memorial coliseum" | Name the result for week less than 7 and game sites of los angeles memorial coliseum | CREATE TABLE table_name_25 (result VARCHAR, week VARCHAR, game_site VARCHAR) | Nomeie o resultado para a semana menos de 7 e sites de jogos de los angeles memorial coliseum |
78,350 | SELECT result FROM table_name_14 WHERE week = 7 | Name the result for week 7 | CREATE TABLE table_name_14 (result VARCHAR, week VARCHAR) | Nomeie o resultado para a semana 7 |
78,351 | SELECT COUNT(loss) FROM table_name_97 WHERE avg_g = "3.6" AND gain > 51 | How many yards lost by the player with more gained than 51 and average/g of 3.6? | CREATE TABLE table_name_97 (loss VARCHAR, avg_g VARCHAR, gain VARCHAR) | Quantos jardas perdidas pelo jogador com mais ganho do que 51 e média / g de 3,6? |
78,352 | SELECT SUM(gain) FROM table_name_43 WHERE avg_g = "26.8" AND loss < 13 | What are the gains for the player with average of 26.8 and lost yard fewer than 13? | CREATE TABLE table_name_43 (gain INTEGER, avg_g VARCHAR, loss VARCHAR) | Quais são os ganhos para o jogador com média de 26,8 e perdeu quintal menos de 13? |
78,353 | SELECT date FROM table_name_60 WHERE opponent_in_the_final = "flavio cipolla" | When did Mathieu play against Flavio Cipolla? | CREATE TABLE table_name_60 (date VARCHAR, opponent_in_the_final VARCHAR) | Quando Mathieu jogou contra Flavio Cipolla? |
78,354 | SELECT tournament FROM table_name_65 WHERE score_in_the_final = "6–3, 6–2" | Which tournament had a final score of 6–3, 6–2? | CREATE TABLE table_name_65 (tournament VARCHAR, score_in_the_final VARCHAR) | Qual torneio teve uma pontuação final de 63, 62? |
78,355 | SELECT surface FROM table_name_84 WHERE opponent_in_the_final = "antonio veić" | On which surface did Mathieu play against Antonio Veić? | CREATE TABLE table_name_84 (surface VARCHAR, opponent_in_the_final VARCHAR) | Em que superfície Mathieu jogou contra Antonio Vei? |
78,356 | SELECT date FROM table_name_60 WHERE opponent_in_the_final = "antonio veić" | When did Mathieu play against Antonio Veić? | CREATE TABLE table_name_60 (date VARCHAR, opponent_in_the_final VARCHAR) | Quando Mathieu jogou contra Antonio Vei? |
78,357 | SELECT date FROM table_name_7 WHERE opponent_in_the_final = "andrey golubev" | When did Mathieu play against Andrey Golubev? | CREATE TABLE table_name_7 (date VARCHAR, opponent_in_the_final VARCHAR) | Quando Mathieu jogou contra Andrey Golubev? |
78,358 | SELECT park FROM table_name_48 WHERE opened = "1999" | What park opened in 1999? | CREATE TABLE table_name_48 (park VARCHAR, opened VARCHAR) | Que parque foi inaugurado em 1999? |
78,359 | SELECT record FROM table_name_39 WHERE home = "detroit" AND decision = "denis" | Name the record for detroit and decision of denis | CREATE TABLE table_name_39 (record VARCHAR, home VARCHAR, decision VARCHAR) | Nomear o registro de detroit e decisão de denis |
78,360 | SELECT AVG(attendance) FROM table_name_78 WHERE visitor = "dallas" | Name the average attendance with dallas visitor | CREATE TABLE table_name_78 (attendance INTEGER, visitor VARCHAR) | Nomeie o público médio com o visitante dallas |
78,361 | SELECT to_par FROM table_name_29 WHERE player = "tom kite" | How close to par was Tom Kite when he played? | CREATE TABLE table_name_29 (to_par VARCHAR, player VARCHAR) | Quão próximo estava Tom Kite quando ele jogou? |
78,362 | SELECT country FROM table_name_8 WHERE score = 71 - 72 = 143 | Which of the countries showed a score of 71-72=143? | CREATE TABLE table_name_8 (country VARCHAR, score VARCHAR) | Qual dos países apresentou uma pontuação de 71-72143? |
78,363 | SELECT country FROM table_name_44 WHERE place = "t9" AND score = 72 - 72 = 144 AND player = "tom watson" | Which country watch Tom Watson at t9 score 72-72=144? | CREATE TABLE table_name_44 (country VARCHAR, player VARCHAR, place VARCHAR, score VARCHAR) | Que país assistir Tom Watson no t9 pontuação 72-72144? |
78,364 | SELECT score FROM table_name_97 WHERE to_par = "e" | What was the final score when the player was an e to par? | CREATE TABLE table_name_97 (score VARCHAR, to_par VARCHAR) | Qual foi a pontuação final quando o jogador era um e par? |
78,365 | SELECT team FROM table_name_7 WHERE attempts = "307" | What is the name of the team that has 307 attempts? | CREATE TABLE table_name_7 (team VARCHAR, attempts VARCHAR) | Qual é o nome da equipe que tem 307 tentativas? |
78,366 | SELECT team FROM table_name_8 WHERE attempts = "1,317" | What is the name of the team that has 1,317 attempts? | CREATE TABLE table_name_8 (team VARCHAR, attempts VARCHAR) | Qual é o nome da equipe que tem 1.317 tentativas? |
78,367 | SELECT year FROM table_name_68 WHERE yards = "2,242" | What year was 2,242 yards achieved? | CREATE TABLE table_name_68 (year VARCHAR, yards VARCHAR) | Em que ano foram alcançados 2.242 jardas? |
78,368 | SELECT team FROM table_name_16 WHERE completion__percentage = "59.8%" | Which team has a 59.8% completion rate? | CREATE TABLE table_name_16 (team VARCHAR, completion__percentage VARCHAR) | Qual equipe tem uma taxa de conclusão de 59,8%? |
78,369 | SELECT COUNT(year) FROM table_name_31 WHERE engine = "maserati straight-6" | Which year has has a Engine of maserati straight-6? | CREATE TABLE table_name_31 (year VARCHAR, engine VARCHAR) | Que ano tem um motor de maserati straight-6? |
78,370 | SELECT points FROM table_name_91 WHERE chassis = "lancia d50" AND year = 1954 | What is the Point of Chassis of Lancia d50 in 1954 | CREATE TABLE table_name_91 (points VARCHAR, chassis VARCHAR, year VARCHAR) | O que é o Ponto de Chassis de Lancia d50 em 1954 |
78,371 | SELECT SUM(matches) FROM table_name_26 WHERE high_score = "299" AND innings < 412 | What is the match total for a score over 299 and under 412 innings? | CREATE TABLE table_name_26 (matches INTEGER, high_score VARCHAR, innings VARCHAR) | Qual é o total da partida para uma pontuação acima de 299 e abaixo de 412 entradas? |
78,372 | SELECT MAX(runs) FROM table_name_96 WHERE high_score = "385" AND innings < 407 | What is the high run total associated with a high score of 385 and under 407 innings? | CREATE TABLE table_name_96 (runs INTEGER, high_score VARCHAR, innings VARCHAR) | Qual é o total de alta corrida associado a uma pontuação alta de 385 e abaixo de 407 entradas? |
78,373 | SELECT team_1 FROM table_name_46 WHERE team_2 = "union douala" | What Team 1 has union douala as Team 2? | CREATE TABLE table_name_46 (team_1 VARCHAR, team_2 VARCHAR) | Qual Team 1 tem o Union Douala como Team 2? |
78,374 | SELECT score FROM table_name_91 WHERE loss = "cerutti (0-1)" | What was the score of the game that had a loss of Cerutti (0-1)? | CREATE TABLE table_name_91 (score VARCHAR, loss VARCHAR) | Qual foi a pontuação do jogo que teve uma perda de Cerutti (0-1)? |
78,375 | SELECT opponent FROM table_name_73 WHERE record = "93-54" | Who was the opponent at the game that had a record of 93-54? | CREATE TABLE table_name_73 (opponent VARCHAR, record VARCHAR) | Quem era o adversário no jogo que tinha um recorde de 93-54? |
78,376 | SELECT COUNT(to_par) FROM table_name_37 WHERE total > 156 | What was the score to par for 156 strokes? | CREATE TABLE table_name_37 (to_par VARCHAR, total INTEGER) | Qual foi a pontuação para o par de 156 derrames? |
78,377 | SELECT AVG(total) FROM table_name_69 WHERE to_par > 9 AND player = "arnold palmer" | How many strokes for arnold palmer with a to par of greater than 9? | CREATE TABLE table_name_69 (total INTEGER, to_par VARCHAR, player VARCHAR) | Quantos golpes para o arnold palmer com um par maior que 9? |
78,378 | SELECT to_par FROM table_name_74 WHERE year_s__won = "1960" | What was the score to par in 1960? | CREATE TABLE table_name_74 (to_par VARCHAR, year_s__won VARCHAR) | Qual foi a pontuação para par em 1960? |
78,379 | SELECT MIN(first_game) FROM table_name_78 WHERE lost = 7 AND drawn < 0 | What is the earliest first game for a rugby team that has 7 lost games and 0 draws? | CREATE TABLE table_name_78 (first_game INTEGER, lost VARCHAR, drawn VARCHAR) | Qual é o primeiro jogo para uma equipe de rugby que tem 7 jogos perdidos e 0 empates? |
78,380 | SELECT SUM(played) FROM table_name_55 WHERE percentage = "0.00%" AND drawn < 0 | How many games were played by a team that won 0.00% of their games and 0 draws? | CREATE TABLE table_name_55 (played INTEGER, percentage VARCHAR, drawn VARCHAR) | Quantos jogos foram jogados por uma equipe que ganhou 0,00% de seus jogos e 0 empates? |
78,381 | SELECT 1 AS st_match FROM table_name_61 WHERE team = "brisbane bears" | Name the 1st match for brisbane bears | CREATE TABLE table_name_61 (team VARCHAR) | Nomeie o 1o jogo para ursos brisbane |
78,382 | SELECT lost FROM table_name_66 WHERE matches = "1 928" | Name the lost for matches of 1 928 | CREATE TABLE table_name_66 (lost VARCHAR, matches VARCHAR) | Nomeie os perdidos para jogos de 1 928 |
78,383 | SELECT lost FROM table_name_64 WHERE _percentage_won = "55.37" | Name the lost for % won of 55.37 | CREATE TABLE table_name_64 (lost VARCHAR, _percentage_won VARCHAR) | Nomeie o perdido por % ganho de 55,37 |
78,384 | SELECT matches FROM table_name_11 WHERE team = "gold coast" | Name the matches for gold coast | CREATE TABLE table_name_11 (matches VARCHAR, team VARCHAR) | Nomeie os jogos para Gold Coast |
78,385 | SELECT lost FROM table_name_46 WHERE _percentage_won = "55.37" | Name the lost for % won of 55.37 | CREATE TABLE table_name_46 (lost VARCHAR, _percentage_won VARCHAR) | Nomeie o perdido por % ganho de 55,37 |
78,386 | SELECT year FROM table_name_99 WHERE cable = "4.6%" | What is the year when cable was 4.6%? | CREATE TABLE table_name_99 (year VARCHAR, cable VARCHAR) | Qual é o ano em que o cabo foi de 4,6%? |
78,387 | SELECT other FROM table_name_54 WHERE year = "2012" | What is the other for 2012? | CREATE TABLE table_name_54 (other VARCHAR, year VARCHAR) | O que é o outro para 2012? |
78,388 | SELECT xdsl FROM table_name_1 WHERE other = "0.6%" AND fttx = "35.4%" | What is the xDSL for the other of 0.6% and FTTx of 35.4%? | CREATE TABLE table_name_1 (xdsl VARCHAR, other VARCHAR, fttx VARCHAR) | O que é xDSL para o outro de 0,6% e FTTx de 35,4%? |
78,389 | SELECT other FROM table_name_15 WHERE xdsl = "78.2%" | What is the other for a 78.2% xDSL? | CREATE TABLE table_name_15 (other VARCHAR, xdsl VARCHAR) | O que é o outro para um 78,2% xDSL? |
78,390 | SELECT xdsl FROM table_name_55 WHERE other = "0.6%" AND year = "2010" | What is the xDSL in 2010 when the other was 0.6%? | CREATE TABLE table_name_55 (xdsl VARCHAR, other VARCHAR, year VARCHAR) | O que é o xDSL em 2010, quando o outro foi de 0,6%? |
78,391 | SELECT date FROM table_name_23 WHERE result = "won" AND score = "1-0" | Which date has a Result of won, and a Score of 1-0? | CREATE TABLE table_name_23 (date VARCHAR, result VARCHAR, score VARCHAR) | Qual data tem um resultado de ganho e uma pontuação de 1-0? |
78,392 | SELECT result FROM table_name_86 WHERE date = "november 2, 2007" | Which result has a Date of november 2, 2007? | CREATE TABLE table_name_86 (result VARCHAR, date VARCHAR) | Qual resultado tem uma data de 2 de novembro de 2007? |
78,393 | SELECT competition FROM table_name_7 WHERE score = "2-0" | Which Competition has a Score of 2-0? | CREATE TABLE table_name_7 (competition VARCHAR, score VARCHAR) | Qual competição tem uma pontuação de 2-0? |
78,394 | SELECT venue FROM table_name_51 WHERE date = "january 9, 2011" | Which Venue has a Date of january 9, 2011? | CREATE TABLE table_name_51 (venue VARCHAR, date VARCHAR) | Qual local tem uma data de 9 de janeiro de 2011? |
78,395 | SELECT termination_of_mission FROM table_name_58 WHERE presentation_of_credentials = "july 4, 1898" | What is the termination of mission date of the representative with a presentation of credentials date on July 4, 1898? | CREATE TABLE table_name_58 (termination_of_mission VARCHAR, presentation_of_credentials VARCHAR) | Qual é o término da data da missão do representante com uma apresentação da data das credenciais em 4 de julho de 1898? |
78,396 | SELECT presentation_of_credentials FROM table_name_7 WHERE title = "ambassador extraordinary and plenipotentiary" AND representative = "raúl h. castro" | What is the presentation of credentials date of raúl h. castro, who has a title of ambassador extraordinary and plenipotentiary? | CREATE TABLE table_name_7 (presentation_of_credentials VARCHAR, title VARCHAR, representative VARCHAR) | Qual é a data de apresentação das credenciais de Raúl H. Castro, que tem um título de embaixador extraordinário e plenipotenciário? |
78,397 | SELECT representative FROM table_name_32 WHERE presentation_of_credentials = "february 23, 1854" | Who is the representative with a presentation of credentials date on February 23, 1854? | CREATE TABLE table_name_32 (representative VARCHAR, presentation_of_credentials VARCHAR) | Quem é o representante com uma apresentação de credenciais data em 23 de fevereiro de 1854? |
78,398 | SELECT title FROM table_name_52 WHERE appointed_by = "james k. polk" | What is the title of the representative appointed by James K. Polk? | CREATE TABLE table_name_52 (title VARCHAR, appointed_by VARCHAR) | Qual é o título do representante nomeado por James K. Polk? |
78,399 | SELECT termination_of_mission FROM table_name_37 WHERE appointed_by = "franklin pierce" AND title = "chargé d'affaires" | What is the termination of mission date of the representative appointed by Franklin Pierce with a title of chargé d'affaires? | CREATE TABLE table_name_37 (termination_of_mission VARCHAR, appointed_by VARCHAR, title VARCHAR) | Qual é a data de encerramento da missão do representante nomeado por Franklin Pierce com o título de Chargé d'affaires? |