Unnamed: 0 int64 0 78.6k | answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 | translated_answer stringlengths 12 992 |
|---|---|---|---|---|
74,600 | SELECT route FROM table_name_27 WHERE winner = "sébastien rosseler" | Name the route with winner of sébastien rosseler | CREATE TABLE table_name_27 (route VARCHAR, winner VARCHAR) | Nomeie a rota com o vencedor de Sébastien Rosseler |
74,601 | SELECT route FROM table_name_14 WHERE distance = "170.8km" | Name the route for 170.8km distance | CREATE TABLE table_name_14 (route VARCHAR, distance VARCHAR) | Nomeie a rota para a distância de 170,8 km |
74,602 | SELECT date FROM table_name_68 WHERE winner = "luciano pagliarini" | Name the date for luciano pagliarini | CREATE TABLE table_name_68 (date VARCHAR, winner VARCHAR) | Nomear a data para luciano pagliarini |
74,603 | SELECT date FROM table_name_10 WHERE winner = "mark cavendish" | Name the date for mark cavendish | CREATE TABLE table_name_10 (date VARCHAR, winner VARCHAR) | Nomear a data para mark cavendish |
74,604 | SELECT SUM(laps) FROM table_name_94 WHERE qual = "144.665" | Name the laps for qual of 144.665 | CREATE TABLE table_name_94 (laps INTEGER, qual VARCHAR) | Nomear as voltas para qual de 144.665 |
74,605 | SELECT COUNT(laps) FROM table_name_48 WHERE year = "1961" | Name the total number of Laps for year of 1961 | CREATE TABLE table_name_48 (laps VARCHAR, year VARCHAR) | Nomear o número total de Laps para o ano de 1961 |
74,606 | SELECT finish FROM table_name_76 WHERE start = "28" | Name the finish for start of 28 | CREATE TABLE table_name_76 (finish VARCHAR, start VARCHAR) | Nomeie o acabamento para o início de 28 |
74,607 | SELECT laps FROM table_name_67 WHERE rank = "14" AND start = "16" | Name the laps for rank of 14 and start of 16 | CREATE TABLE table_name_67 (laps VARCHAR, rank VARCHAR, start VARCHAR) | Nomeie as voltas para a classificação de 14 e início de 16 |
74,608 | SELECT qual FROM table_name_25 WHERE year = "1960" | Name the qual for year of 1960 | CREATE TABLE table_name_25 (qual VARCHAR, year VARCHAR) | Nomeie o qual para o ano de 1960 |
74,609 | SELECT player FROM table_name_65 WHERE position = "lb" AND overall = 128 | What is the name of the player in position lb and an overall of 128? | CREATE TABLE table_name_65 (player VARCHAR, position VARCHAR, overall VARCHAR) | Qual é o nome do jogador na posição lb e um total de 128? |
74,610 | SELECT COUNT(overall) FROM table_name_98 WHERE player = "kenny lewis" AND round > 5 | What is the total overall when Kenny Lewis is the player in a round after 5? | CREATE TABLE table_name_98 (overall VARCHAR, player VARCHAR, round VARCHAR) | Qual é o total geral quando Kenny Lewis é o jogador em uma rodada após 5? |
74,611 | SELECT college FROM table_name_41 WHERE overall > 15 AND round = 7 | What is the college when the over is larger than 15 in round 7? | CREATE TABLE table_name_41 (college VARCHAR, overall VARCHAR, round VARCHAR) | O que é a faculdade quando o mais é maior do que 15 na rodada 7? |
74,612 | SELECT position FROM table_name_87 WHERE overall < 128 AND college = "brigham young" | What is the position with an overall less than 128 for Brigham Young college? | CREATE TABLE table_name_87 (position VARCHAR, overall VARCHAR, college VARCHAR) | Qual é a posição com um total inferior a 128 para a faculdade Brigham Young? |
74,613 | SELECT AVG(attendance) FROM table_name_81 WHERE date = "4 february 2003" | How many attended the game on 4 February 2003? | CREATE TABLE table_name_81 (attendance INTEGER, date VARCHAR) | Quantos assistiram ao jogo em 4 de fevereiro de 2003? |
74,614 | SELECT auckland FROM table_name_74 WHERE sydney = "yes" AND perth = "no" AND melbourne = "yes" AND gold_coast = "yes" | yes or no for the auckland with a yes for sydney, no for perth, yes for melbourne and yes for the gold coast? | CREATE TABLE table_name_74 (auckland VARCHAR, gold_coast VARCHAR, melbourne VARCHAR, sydney VARCHAR, perth VARCHAR) | Sim ou não para o auckland com um sim para sydney, não para perth, sim para melbourne e sim para a costa de ouro? |
74,615 | SELECT adelaide FROM table_name_97 WHERE auckland = "no" AND melbourne = "yes" AND gold_coast = "yes" | yes or no for the adelaide with no for auckland, yes for melbourne, yes for the gold coast? | CREATE TABLE table_name_97 (adelaide VARCHAR, gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR) | sim ou não para o adelaide com não para auckland, sim para melbourne, sim para a costa de ouro? |
74,616 | SELECT gold_coast FROM table_name_2 WHERE melbourne = "yes" AND adelaide = "yes" AND auckland = "yes" | yes or no for the gold coast with yes for melbourne, yes for adelaide, yes for auckland? | CREATE TABLE table_name_2 (gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR, adelaide VARCHAR) | Sim ou não para a costa de ouro com sim para melbourne, sim para adelaide, sim para auckland? |
74,617 | SELECT melbourne FROM table_name_92 WHERE gold_coast = "yes" AND adelaide = "no" AND auckland = "no" | yes or no for the melbourne with yes for gold coast, yes for adelaide, no for auckland? | CREATE TABLE table_name_92 (melbourne VARCHAR, auckland VARCHAR, gold_coast VARCHAR, adelaide VARCHAR) | Sim ou não para o melbourne com sim para a costa de ouro, sim para adelaide, não para auckland? |
74,618 | SELECT sydney FROM table_name_43 WHERE melbourne = "yes" AND perth = "no" AND auckland = "no" AND gold_coast = "no" | yes or no for the sydney with yes for melbourne, no for perth, no for auckland and no for gold coast? | CREATE TABLE table_name_43 (sydney VARCHAR, gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR, perth VARCHAR) | Sim ou não para o sydney com sim para melbourne, não para perth, não para auckland e não para Gold Coast? |
74,619 | SELECT melbourne FROM table_name_90 WHERE adelaide = "yes" AND gold_coast = "no" | yes or no for the melbourne that has no for adelaide, no for gold coast? | CREATE TABLE table_name_90 (melbourne VARCHAR, adelaide VARCHAR, gold_coast VARCHAR) | Sim ou não para o melbourne que não tem para adelaide, não para a costa de ouro? |
74,620 | SELECT SUM(losses) FROM table_name_1 WHERE wins = 0 AND runs_allowed > 72 | How many losses did the team with 0 wins and more than 72 runs allowed have? | CREATE TABLE table_name_1 (losses INTEGER, wins VARCHAR, runs_allowed VARCHAR) | Quantas derrotas a equipe com 0 vitórias e mais de 72 corridas permitidas? |
74,621 | SELECT MIN(losses) FROM table_name_96 WHERE rank < 3 AND team = "united states" AND wins > 6 | What is the lowest amount of losses the United States, ranked higher than 3 with more than 6 wins, have? | CREATE TABLE table_name_96 (losses INTEGER, wins VARCHAR, rank VARCHAR, team VARCHAR) | Qual é a menor quantidade de perdas que os Estados Unidos, classificados acima de 3 com mais de 6 vitórias, têm? |
74,622 | SELECT AVG(runs_allowed) FROM table_name_50 WHERE rank = 2 AND losses > 2 | How many runs allowed did the team ranked 2 with more than 2 losses have? | CREATE TABLE table_name_50 (runs_allowed INTEGER, rank VARCHAR, losses VARCHAR) | Quantas corridas permitidas a equipe classificou 2 com mais de 2 derrotas? |
74,623 | SELECT COUNT(wins) FROM table_name_87 WHERE rank > 1 AND run_ratio < 5.85 AND losses > 4 | How many total wins did the team ranked lower than 1 with a run ratio less than 5.85 and more than 4 losses have? | CREATE TABLE table_name_87 (wins VARCHAR, losses VARCHAR, rank VARCHAR, run_ratio VARCHAR) | Quantas vitórias totais a equipe ficou abaixo de 1 com uma relação de corrida inferior a 5,85 e mais de 4 derrotas? |
74,624 | SELECT MAX(run_ratio) FROM table_name_36 WHERE runs_allowed < 58 AND wins = 5 AND team = "japan" | What is the highest run ratio Japan, which has less than 58 runs and 5 wins, have? | CREATE TABLE table_name_36 (run_ratio INTEGER, team VARCHAR, runs_allowed VARCHAR, wins VARCHAR) | Qual é a maior taxa de corrida que o Japão, que tem menos de 58 corridas e 5 vitórias, tem? |
74,625 | SELECT AVG(losses) FROM table_name_63 WHERE runs_allowed < 25 AND wins = 5 | What is the average number of losses the team with less than 25 runs allowed and 5 wins have? | CREATE TABLE table_name_63 (losses INTEGER, runs_allowed VARCHAR, wins VARCHAR) | Qual é o número médio de derrotas que a equipe com menos de 25 corridas permitidas e 5 vitórias tem? |
74,626 | SELECT date FROM table_name_14 WHERE opponent = "tigers" | Which date has tigers as the opponent? | CREATE TABLE table_name_14 (date VARCHAR, opponent VARCHAR) | Que data tem tigres como adversário? |
74,627 | SELECT loss FROM table_name_47 WHERE date = "october 1" | What loss has october 1 as the date? | CREATE TABLE table_name_47 (loss VARCHAR, date VARCHAR) | Que perda tem 1 de outubro como a data? |
74,628 | SELECT year FROM table_name_26 WHERE points > 0 AND chassis = "ags jh22" | What year is listed that has points greater than 0 with a chassis labeled AGS JH22? | CREATE TABLE table_name_26 (year VARCHAR, points VARCHAR, chassis VARCHAR) | Que ano está listado que tem pontos maiores que 0 com um chassi rotulado AGS JH22? |
74,629 | SELECT SUM(points) FROM table_name_76 WHERE tyres = "p" AND year > 1986 | What is the total points listed that includes P listed Tyres after 1986? | CREATE TABLE table_name_76 (points INTEGER, tyres VARCHAR, year VARCHAR) | Qual é o total de pontos listados que inclui P pneus listados depois de 1986? |
74,630 | SELECT MIN(points) FROM table_name_73 WHERE chassis = "ags jh23" AND year < 1988 | What point is the lowest for listings of chassis labeled AGS JH23 before 1988? | CREATE TABLE table_name_73 (points INTEGER, chassis VARCHAR, year VARCHAR) | Qual é o ponto mais baixo para listagens de chassis rotulados AGS JH23 antes de 1988? |
74,631 | SELECT SUM(points) FROM table_name_58 WHERE year = 1988 | What is the total point for the year listed in 1988? | CREATE TABLE table_name_58 (points INTEGER, year VARCHAR) | Qual é o ponto total do ano listado em 1988? |
74,632 | SELECT MAX(attendance) FROM table_name_28 WHERE date = "august 2" | What was the attendance on August 2? | CREATE TABLE table_name_28 (attendance INTEGER, date VARCHAR) | Qual foi o comparecimento no dia 2 de agosto? |
74,633 | SELECT opponent FROM table_name_54 WHERE loss = "kinney (0-1)" | Which opponent lost with pitcher Kinney (0-1)? | CREATE TABLE table_name_54 (opponent VARCHAR, loss VARCHAR) | Qual adversário perdeu com o arremessador Kinney (0-1)? |
74,634 | SELECT COUNT(attendance) FROM table_name_77 WHERE date = "august 23" | What was the attendance on August 23? | CREATE TABLE table_name_77 (attendance VARCHAR, date VARCHAR) | Qual foi o comparecimento no dia 23 de agosto? |
74,635 | SELECT MAX(wins) FROM table_name_27 WHERE cuts_made = 3 AND events > 4 | What is the highest wins a tournament with 3 cuts and more than 4 events has? | CREATE TABLE table_name_27 (wins INTEGER, cuts_made VARCHAR, events VARCHAR) | O que é o maior ganha um torneio com 3 cortes e mais de 4 eventos tem? |
74,636 | SELECT MIN(events) FROM table_name_77 WHERE top_10 > 1 AND wins > 0 | What is the lowest number of events a tournament with more than 1 top-10 and more than 0 wins has? | CREATE TABLE table_name_77 (events INTEGER, top_10 VARCHAR, wins VARCHAR) | Qual é o menor número de eventos que um torneio com mais de 1 top-10 e mais de 0 vitórias tem? |
74,637 | SELECT SUM(laps) FROM table_name_90 WHERE pos = "6th" AND year = 1998 | How many laps did the 6th placed in 1998 complete? | CREATE TABLE table_name_90 (laps INTEGER, pos VARCHAR, year VARCHAR) | Quantas voltas o 6o colocado em 1998 completou? |
74,638 | SELECT team FROM table_name_55 WHERE class = "c1" AND laps > 331 AND year > 1990 | What team was c1 class, had over 331 laps after 1990? | CREATE TABLE table_name_55 (team VARCHAR, year VARCHAR, class VARCHAR, laps VARCHAR) | Qual foi a equipe da classe C1, teve mais de 331 voltas depois de 1990? |
74,639 | SELECT class FROM table_name_16 WHERE co_drivers = "eddie cheever raul boesel" | What class did eddie cheever raul boesel race in? | CREATE TABLE table_name_16 (class VARCHAR, co_drivers VARCHAR) | Em que classe é que o Eddie Cheever Raul Boesel correu? |
74,640 | SELECT MIN(rank) FROM table_name_50 WHERE event = "2012" | What's the lowest rank of a player who played in 2012? | CREATE TABLE table_name_50 (rank INTEGER, event VARCHAR) | Qual é a classificação mais baixa de um jogador que jogou em 2012? |
74,641 | SELECT player FROM table_name_97 WHERE rank = 2011 | What player has the rank 2011? | CREATE TABLE table_name_97 (player VARCHAR, rank VARCHAR) | Qual jogador tem o rank 2011? |
74,642 | SELECT score FROM table_name_70 WHERE surface = "hard" AND rank = 10 | What was the score of the match played on hard with a person ranked 10? | CREATE TABLE table_name_70 (score VARCHAR, surface VARCHAR, rank VARCHAR) | Qual foi a pontuação do jogo jogado com uma pessoa classificada como 10? |
74,643 | SELECT females FROM table_name_71 WHERE language = "romanian" | What females speak Romanian? | CREATE TABLE table_name_71 (females VARCHAR, language VARCHAR) | Que mulheres falam romeno? |
74,644 | SELECT females FROM table_name_21 WHERE males = "1 234" | What females have males of 1 234? | CREATE TABLE table_name_21 (females VARCHAR, males VARCHAR) | Quais fêmeas têm machos de 1 234? |
74,645 | SELECT males FROM table_name_22 WHERE language = "polish" | What males speak Polish? | CREATE TABLE table_name_22 (males VARCHAR, language VARCHAR) | Quais homens falam polonês? |
74,646 | SELECT number FROM table_name_20 WHERE males = "977 948" | What is the number of males 977 948? | CREATE TABLE table_name_20 (number VARCHAR, males VARCHAR) | Qual é o número de homens 977 948? |
74,647 | SELECT MIN(over_no) FROM table_name_37 WHERE bowler = "shane bond" | Bowler of shane bond has what lowest overall number? | CREATE TABLE table_name_37 (over_no INTEGER, bowler VARCHAR) | Bowler de shane bond tem qual é o menor número geral? |
74,648 | SELECT date FROM table_name_16 WHERE wickets = "chris gayle caught kapali" | Wickets of chris gayle caught kapali happened on what date? | CREATE TABLE table_name_16 (date VARCHAR, wickets VARCHAR) | Wickets de Chris Gayle pego kapali aconteceu em que data? |
74,649 | SELECT year FROM table_name_34 WHERE third = "kyle newman" | What year did Kyle Newman place third? | CREATE TABLE table_name_34 (year VARCHAR, third VARCHAR) | Em que ano Kyle Newman ficou em terceiro lugar? |
74,650 | SELECT venue FROM table_name_20 WHERE winner = "jerran hart" | What was the venue when Jerran Hart won? | CREATE TABLE table_name_20 (venue VARCHAR, winner VARCHAR) | Qual foi o local quando Jerran Hart ganhou? |
74,651 | SELECT runner_up FROM table_name_82 WHERE year = 2004 | Who was the runner-up in 2004? | CREATE TABLE table_name_82 (runner_up VARCHAR, year VARCHAR) | Quem foi o vice-campeão em 2004? |
74,652 | SELECT venue FROM table_name_63 WHERE third = "jack hargreaves" | What was the venue when Jack Hargreaves finished third? | CREATE TABLE table_name_63 (venue VARCHAR, third VARCHAR) | Qual foi o local quando Jack Hargreaves terminou em terceiro? |
74,653 | SELECT venue FROM table_name_65 WHERE third = "ben barker" | What was the venue when Ben Barker finished third? | CREATE TABLE table_name_65 (venue VARCHAR, third VARCHAR) | Qual foi o local quando Ben Barker terminou em terceiro? |
74,654 | SELECT province_region FROM table_name_91 WHERE icao = "rjtq" | What province/region is RJTQ located? | CREATE TABLE table_name_91 (province_region VARCHAR, icao VARCHAR) | Que província/região está localizada a RJTQ? |
74,655 | SELECT city FROM table_name_57 WHERE icao = "rjsn" | In what city is RJSN located? | CREATE TABLE table_name_57 (city VARCHAR, icao VARCHAR) | Em que cidade está localizada a RJSN? |
74,656 | SELECT iata FROM table_name_76 WHERE icao = "rjcm" | What is RJCM's IATA? | CREATE TABLE table_name_76 (iata VARCHAR, icao VARCHAR) | O que é a IATA da RJCM? |
74,657 | SELECT country FROM table_name_55 WHERE province_region = "hokkaidō" AND airport = "new chitose airport" | In what country is Hokkaidō and New Chitose airport located? | CREATE TABLE table_name_55 (country VARCHAR, province_region VARCHAR, airport VARCHAR) | Em que país estão localizados os aeroportos de Hokkaid e New Chitose? |
74,658 | SELECT country FROM table_name_69 WHERE airport = "hiroshima airport" | In what country is Hiroshima Airport located? | CREATE TABLE table_name_69 (country VARCHAR, airport VARCHAR) | Em que país está localizado o Aeroporto de Hiroshima? |
74,659 | SELECT icao FROM table_name_89 WHERE city = "nakashibetsu" | What is the ICAO of Nakashibetsu? | CREATE TABLE table_name_89 (icao VARCHAR, city VARCHAR) | O que é a ICAO de Nakashibetsu? |
74,660 | SELECT lost FROM table_name_52 WHERE played = "22" AND losing_bp = "2" AND club = "merthyr rfc" | What is the total number of games lost when 22 have been played, the losing BP number is 2, and the club is Merthyr RFC? | CREATE TABLE table_name_52 (lost VARCHAR, club VARCHAR, played VARCHAR, losing_bp VARCHAR) | Qual é o número total de jogos perdidos quando 22 foram jogados, o número BP perdedor é 2, e o clube é Merthyr RFC? |
74,661 | SELECT drawn FROM table_name_74 WHERE lost = "3" | What is the number drawn when 3 have been lost? | CREATE TABLE table_name_74 (drawn VARCHAR, lost VARCHAR) | Qual é o número sorteado quando 3 foram perdidos? |
74,662 | SELECT drawn FROM table_name_79 WHERE try_bp = "1" | What is the number drawn when the try BP is 1? | CREATE TABLE table_name_79 (drawn VARCHAR, try_bp VARCHAR) | Qual é o número sorteado quando a tentativa BP é 1? |
74,663 | SELECT try_bp FROM table_name_82 WHERE losing_bp = "4" AND club = "bargoed rfc" | What is the try BP when the losing BP is 4 and the club is Bargoed RFC? | CREATE TABLE table_name_82 (try_bp VARCHAR, losing_bp VARCHAR, club VARCHAR) | Qual é a tentativa BP quando o BP perdedor é 4 e o clube é Bargoed RFC? |
74,664 | SELECT club FROM table_name_96 WHERE played = "22" AND drawn = "0" AND lost = "14" AND losing_bp = "5" | What is the club that has played 22 rounds, has a drawn score of 0, has lost 14, and whose losing BP is 5? | CREATE TABLE table_name_96 (club VARCHAR, losing_bp VARCHAR, lost VARCHAR, played VARCHAR, drawn VARCHAR) | Qual é o clube que jogou 22 rounds, tem uma pontuação de empate de 0, perdeu 14, e cuja BP perde é 5? |
74,665 | SELECT AVG(total) FROM table_name_33 WHERE rank = "3" AND bronze > 3 | What average Total has a Rank of 3 and a Bronze award larger than 3? | CREATE TABLE table_name_33 (total INTEGER, rank VARCHAR, bronze VARCHAR) | Qual a média do Total tem um Rank de 3 e um prêmio Bronze maior que 3? |
74,666 | SELECT AVG(total) FROM table_name_84 WHERE gold = 13 AND bronze < 13 | What average Total has a Gold award of 13 and a Bronze award less than 13? | CREATE TABLE table_name_84 (total INTEGER, gold VARCHAR, bronze VARCHAR) | Que média Total tem um prêmio de Ouro de 13 e um prêmio de Bronze inferior a 13? |
74,667 | SELECT AVG(gold) FROM table_name_5 WHERE silver > 2 AND bronze < 13 AND total > 24 | What is the average Gold award that has a Silver award greater than 2, and a Bronze award less than 13, and a Total greater than 24? | CREATE TABLE table_name_5 (gold INTEGER, total VARCHAR, silver VARCHAR, bronze VARCHAR) | Qual é o prêmio ouro médio que tem um prêmio de prata maior que 2, e um prêmio de bronze menor que 13, e um total maior que 24? |
74,668 | SELECT record FROM table_name_9 WHERE loss = "guardado" | What is the record number of the game where Guardado lost? | CREATE TABLE table_name_9 (record VARCHAR, loss VARCHAR) | Qual é o número recorde do jogo onde o Guardado perdeu? |
74,669 | SELECT MIN(attendance) FROM table_name_79 WHERE date = "september 28" | What was the lowest attendance recorded at a game on September 28? | CREATE TABLE table_name_79 (attendance INTEGER, date VARCHAR) | Qual foi o menor comparecimento registrado em um jogo em 28 de setembro? |
74,670 | SELECT AVG(gold) FROM table_name_75 WHERE total = 2 AND bronze > 1 | What is the average gold that has a total of 2 and more than 1 bronze. | CREATE TABLE table_name_75 (gold INTEGER, total VARCHAR, bronze VARCHAR) | Qual é o ouro médio que tem um total de 2 e mais de 1 bronze. |
74,671 | SELECT 2006 FROM table_name_88 WHERE 2010 = "a" AND 2009 = "a" AND tournament = "canada masters" | What is the 2006 result of the Canada Masters tournament that is A in 2009 and A in 2010? | CREATE TABLE table_name_88 (tournament VARCHAR) | Qual é o resultado de 2006 do torneio Canada Masters que é A em 2009 e A em 2010? |
74,672 | SELECT 2006 FROM table_name_73 WHERE 2010 = "107" | What is the result for 2006 of a tournament that is 107 in 2010? | CREATE TABLE table_name_73 (Id VARCHAR) | Qual é o resultado para 2006 de um torneio que é 107 em 2010? |
74,673 | SELECT 2010 FROM table_name_40 WHERE 2011 = "a" AND 2006 = "a" | What is the 2010 result of a tournament that is A in 2006 and A in 2011? | CREATE TABLE table_name_40 (Id VARCHAR) | Qual é o resultado de 2010 de um torneio que é A em 2006 e A em 2011? |
74,674 | SELECT 2012 FROM table_name_29 WHERE 2009 = "1r" AND 2008 = "1r" AND 2007 = "2r" | What is the 2012 result of a tournament that is 2R in 2007, 1R in 2008 and 1R in 2009? | CREATE TABLE table_name_29 (Id VARCHAR) | Qual é o resultado de 2012 de um torneio que é 2R em 2007, 1R em 2008 e 1R em 2009? |
74,675 | SELECT 2010 FROM table_name_43 WHERE 2011 = "q2" AND 2012 = "1r" AND 2009 = "1r" | What is the 2010 result of a tournament that is 1R in 2009, Q2 in 2011 and 1R in 2012? | CREATE TABLE table_name_43 (Id VARCHAR) | Qual é o resultado de 2010 de um torneio que é 1R em 2009, Q2 em 2011 e 1R em 2012? |
74,676 | SELECT MAX(match) FROM table_name_38 WHERE date = "august 3, 2007" | What match number took place on August 3, 2007? | CREATE TABLE table_name_38 (match INTEGER, date VARCHAR) | Que número de jogo ocorreu em 3 de agosto de 2007? |
74,677 | SELECT 2010 FROM table_name_1 WHERE 2013 = "grand slam tournaments" | What is the 2010 value of the 2013 Grand Slam Tournaments? | CREATE TABLE table_name_1 (Id VARCHAR) | Qual é o valor de 2010 dos Torneios de Grand Slam de 2013? |
74,678 | SELECT 2012 FROM table_name_11 WHERE 2007 = "a" AND 2011 = "qf" | What is the 2012 value with A in 2007 and qf in 2011? | CREATE TABLE table_name_11 (Id VARCHAR) | Qual é o valor de 2012 com A em 2007 e qf em 2011? |
74,679 | SELECT 2012 FROM table_name_6 WHERE 2011 = "1r" AND tournament = "australian open" | What is the 2012 value with a 1r in 2011 in the Australian Open? | CREATE TABLE table_name_6 (tournament VARCHAR) | Qual é o valor de 2012 com um 1r em 2011 no Aberto da Austrália? |
74,680 | SELECT 2013 FROM table_name_68 WHERE 2011 = "qf" | What is the 2013 value with a qf in 2011? | CREATE TABLE table_name_68 (Id VARCHAR) | Qual é o valor de 2013 com um qf em 2011? |
74,681 | SELECT 2007 FROM table_name_26 WHERE 2012 = "grand slam tournaments" | What is the 2007 value at the 2012 Grand Slam Tournaments? | CREATE TABLE table_name_26 (Id VARCHAR) | Qual é o valor de 2007 nos Torneios de Grand Slam de 2012? |
74,682 | SELECT tournament FROM table_name_26 WHERE 2011 = "qf" | Which tournament had a qf in 2011? | CREATE TABLE table_name_26 (tournament VARCHAR) | Qual torneio teve um QF em 2011? |
74,683 | SELECT score FROM table_name_13 WHERE competition = "2014 fifa world cup qual." | What was the score for the 2014 FIFA World Cup Qual. competition? | CREATE TABLE table_name_13 (score VARCHAR, competition VARCHAR) | Qual foi o resultado da competição Qual Copa do Mundo da FIFA de 2014? |
74,684 | SELECT MAX(matches) FROM table_name_46 WHERE draws < 2 AND efficiency__percentage = "25%" | What is the highest number of matches with less than 2 draws that had an efficiency percent of 25%? | CREATE TABLE table_name_46 (matches INTEGER, draws VARCHAR, efficiency__percentage VARCHAR) | Qual é o maior número de partidas com menos de 2 empates que tiveram uma porcentagem de eficiência de 25%? |
74,685 | SELECT COUNT(draws) FROM table_name_27 WHERE matches < 4 | What is the total number of Draws with less than 4 matches? | CREATE TABLE table_name_27 (draws VARCHAR, matches INTEGER) | Qual é o número total de sorteios com menos de 4 partidas? |
74,686 | SELECT AVG(frequency_mhz) FROM table_name_9 WHERE program = "radio rezonans" | What is the average MHz Frequency of radio rezonans? | CREATE TABLE table_name_9 (frequency_mhz INTEGER, program VARCHAR) | Qual é a frequência média de MHz dos rezonanos de rádio? |
74,687 | SELECT date FROM table_name_80 WHERE loss = "lilly (2–2)" | What date shows a Loss of lilly (2–2)? | CREATE TABLE table_name_80 (date VARCHAR, loss VARCHAR) | Que data mostra uma perda de lilly (22)? |
74,688 | SELECT loss FROM table_name_74 WHERE time = "3:16" AND record = "15–15" | What is the loss when the time was 3:16, and a Record of 15–15? | CREATE TABLE table_name_74 (loss VARCHAR, time VARCHAR, record VARCHAR) | Qual é a perda quando o tempo era 3:16, e um registro de 15-15? |
74,689 | SELECT opponent FROM table_name_59 WHERE time = "2:57" AND score = "7–5" | What team was the opponent when the time was 2:57, and a Score of 7–5? | CREATE TABLE table_name_59 (opponent VARCHAR, time VARCHAR, score VARCHAR) | Que time era o adversário quando o tempo era 2:57, e uma pontuação de 7-5? |
74,690 | SELECT date FROM table_name_68 WHERE loss = "ponson (4–3)" | What date was the loss of ponson (4–3)? | CREATE TABLE table_name_68 (date VARCHAR, loss VARCHAR) | Qual foi a data da perda do ponson (43)? |
74,691 | SELECT date FROM table_name_43 WHERE loss = "sparks (0–1)" | What date was the loss of sparks (0–1)? | CREATE TABLE table_name_43 (date VARCHAR, loss VARCHAR) | Qual foi a data da perda de faíscas (0)? |
74,692 | SELECT position FROM table_name_62 WHERE venue = "tampere, finland" | What is the position of the competition in Tampere, Finland? | CREATE TABLE table_name_62 (position VARCHAR, venue VARCHAR) | Qual é a posição da competição em Tampere, Finlândia? |
74,693 | SELECT MIN(total) FROM table_name_89 WHERE draws < 2 AND wins < 1 AND goal_difference = "1:2" AND losses > 1 | What is the lowest total that has draws less than 2 and wins less than 1, losses bigger than 1 with a goal difference of 1:2 | CREATE TABLE table_name_89 (total INTEGER, losses VARCHAR, goal_difference VARCHAR, draws VARCHAR, wins VARCHAR) | Qual é o menor total que tem empates menos de 2 e ganha menos de 1, perdas maiores que 1 com uma diferença de gol de 1:2 |
74,694 | SELECT AVG(draws) FROM table_name_67 WHERE total = 1 AND goal_difference = "2:0" | What is the average number of draws that have a total of 1 and a goal difference of 2:0? | CREATE TABLE table_name_67 (draws INTEGER, total VARCHAR, goal_difference VARCHAR) | Qual é o número médio de sorteios que têm um total de 1 e uma diferença de meta de 2:0? |
74,695 | SELECT MIN(draws) FROM table_name_83 WHERE goal_difference = "0:2" AND wins > 0 | What is the lowest number of draws that have a goal difference of 0:2 and wins greater than 0? | CREATE TABLE table_name_83 (draws INTEGER, goal_difference VARCHAR, wins VARCHAR) | Qual é o menor número de empates que tem uma diferença de gol de 0:2 e ganha maior que 0? |
74,696 | SELECT reg_season FROM table_name_89 WHERE avg_attendance_† = "1,242" | What regular season had an average attendance of 1,242? | CREATE TABLE table_name_89 (reg_season VARCHAR, avg_attendance_† VARCHAR) | Qual temporada regular teve uma média de participação de 1.242? |
74,697 | SELECT league FROM table_name_72 WHERE avg_attendance_† = "244" | What league has an average attendance of 244? | CREATE TABLE table_name_72 (league VARCHAR, avg_attendance_† VARCHAR) | Qual liga tem uma média de participação de 244? |
74,698 | SELECT date FROM table_name_90 WHERE opponent = "white sox" AND record = "18-13" | On what date was the opponent the White Sox and the record 18-13? | CREATE TABLE table_name_90 (date VARCHAR, opponent VARCHAR, record VARCHAR) | Em que data foi o adversário o White Sox e o recorde 18-13? |
74,699 | SELECT AVG(attendance) FROM table_name_23 WHERE record = "19-13" | What was the average attendance when the record was 19-13? | CREATE TABLE table_name_23 (attendance INTEGER, record VARCHAR) | Qual foi a média de atendimento quando o recorde foi de 19-13? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.