Unnamed: 0
int64
0
78.6k
answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
translated_answer
stringlengths
12
992
75,100
SELECT manufacturer FROM table_name_20 WHERE rider = "shoya tomizawa"
Which manufacturer made Shoya Tomizawa's motorcycle?
CREATE TABLE table_name_20 (manufacturer VARCHAR, rider VARCHAR)
Qual fabricante fabricou a moto de Shoya Tomizawa?
75,101
SELECT COUNT(laps) FROM table_name_24 WHERE time_retired = "+37.351"
How many laps were ridden in the race that had a Time/Retired of +37.351?
CREATE TABLE table_name_24 (laps VARCHAR, time_retired VARCHAR)
Quantas voltas foram montadas na corrida que teve um Tempo/Aposentado de +37.351?
75,102
SELECT MIN(laps) FROM table_name_16 WHERE rider = "mattia pasini"
How many laps did Mattia Pasini ride?
CREATE TABLE table_name_16 (laps INTEGER, rider VARCHAR)
Quantas voltas fez Mattia Pasini?
75,103
SELECT position FROM table_name_58 WHERE appearances = 244 AND leeds_career = "1981–1989"
What position does the player who has made 244 appearances with a Leeds career of 1981–1989 play?
CREATE TABLE table_name_58 (position VARCHAR, appearances VARCHAR, leeds_career VARCHAR)
Que posição o jogador que fez 244 aparições com uma carreira no Leeds de 1981-1989 joga?
75,104
SELECT position FROM table_name_56 WHERE appearances > 167 AND nationality = "wales" AND goals > 0 AND leeds_career = "1977–1982"
What position does the Wales player who made more than 167 appearances, had more than 0 goals, and had a Leeds career from 1977–1982 play?
CREATE TABLE table_name_56 (position VARCHAR, leeds_career VARCHAR, goals VARCHAR, appearances VARCHAR, nationality VARCHAR)
Que posição o jogador de Gales que fez mais de 167 jogos, teve mais de 0 gols e teve uma carreira no Leeds de 1977 a 1982?
75,105
SELECT AVG(goals) FROM table_name_68 WHERE leeds_career = "1960–1964" AND appearances < 120
What is the average number of goals for a player who had a Leeds career from 1960–1964 and made fewer than 120 appearances?
CREATE TABLE table_name_68 (goals INTEGER, leeds_career VARCHAR, appearances VARCHAR)
Qual é o número médio de gols para um jogador que teve uma carreira no Leeds de 1960-64 e fez menos de 120 partidas?
75,106
SELECT 2008 FROM table_name_15 WHERE 2005 = "deandria hill"
Who attended the school in 2008, that Deandria Hill attended in 2005?
CREATE TABLE table_name_15 (Id VARCHAR)
Quem frequentou a escola em 2008, que Deandria Hill frequentou em 2005?
75,107
SELECT 2006 FROM table_name_70 WHERE 2005 = "jasmine wilson"
Who attended the school in 2006, that Jasmine Wilson attended in 2005?
CREATE TABLE table_name_70 (Id VARCHAR)
Quem frequentou a escola em 2006, que Jasmine Wilson frequentou em 2005?
75,108
SELECT 2009 FROM table_name_60 WHERE 2007 = "lakita hall"
Who attended the school in 2009, that Lakita Hall attended in 2007?
CREATE TABLE table_name_60 (Id VARCHAR)
Quem frequentou a escola em 2009, que Lakita Hall frequentou em 2007?
75,109
SELECT 2007 FROM table_name_20 WHERE 2008 = "kiara spivey"
Who attended the school in 2007, that Kiara Spivey attended in 2008?
CREATE TABLE table_name_20 (Id VARCHAR)
Quem frequentou a escola em 2007, que Kiara Spivey frequentou em 2008?
75,110
SELECT 2006 FROM table_name_32 WHERE 2007 = "whitney powell"
Who attended the school in 2006, that Whitney Powell attended in 2007?
CREATE TABLE table_name_32 (Id VARCHAR)
Quem frequentou a escola em 2006, que Whitney Powell frequentou em 2007?
75,111
SELECT 2008 FROM table_name_42 WHERE 2006 = "brikajdri wilson"
Who attended the school in 2008, that Brikajdri Wilson attended in 2006?
CREATE TABLE table_name_42 (Id VARCHAR)
Quem frequentou a escola em 2008, que Brikajdri Wilson frequentou em 2006?
75,112
SELECT MIN(rank) FROM table_name_85 WHERE lane > 5 AND name = "elizabeth van welie"
What is the lowest rank of a swimmer named Elizabeth Van Welie with a lane larger than 5?
CREATE TABLE table_name_85 (rank INTEGER, lane VARCHAR, name VARCHAR)
Qual é a classificação mais baixa de uma nadadora chamada Elizabeth Van Welie com uma faixa maior que 5?
75,113
SELECT rank FROM table_name_35 WHERE time = "2:11.83"
What is the rank of the swimmer with a time of 2:11.83?
CREATE TABLE table_name_35 (rank VARCHAR, time VARCHAR)
Qual é a classificação do nadador com um tempo de 2:11.83?
75,114
SELECT MIN(lane) FROM table_name_17 WHERE time = "2:07.57" AND rank > 1
What is the lowest lane of a swimmer with a time of 2:07.57 and a rank larger than 1?
CREATE TABLE table_name_17 (lane INTEGER, time VARCHAR, rank VARCHAR)
Qual é a faixa mais baixa de um nadador com um tempo de 2:07.57 e uma classificação maior que 1?
75,115
SELECT rank FROM table_name_34 WHERE name = "petria thomas"
What is the rank of the swimmer named Petria Thomas?
CREATE TABLE table_name_34 (rank VARCHAR, name VARCHAR)
Qual é a classificação do nadador chamado Petria Thomas?
75,116
SELECT attendance FROM table_name_56 WHERE group_position = "3rd"
How many people were in attendance when the group position was 3rd?
CREATE TABLE table_name_56 (attendance VARCHAR, group_position VARCHAR)
Quantas pessoas estavam presentes quando a posição do grupo era a 3a?
75,117
SELECT result_f___a FROM table_name_39 WHERE group_position = "1st" AND opponents = "dynamo kyiv"
What was the final score agains Dynamo Kyiv, when the group position was 1st?
CREATE TABLE table_name_39 (result_f___a VARCHAR, group_position VARCHAR, opponents VARCHAR)
Qual foi a pontuação final novamente do Dynamo Kyiv, quando a posição do grupo foi a 1a?
75,118
SELECT AVG(attendance) FROM table_name_51 WHERE date = "18 october 2000"
What was the average attendance on 18 October 2000?
CREATE TABLE table_name_51 (attendance INTEGER, date VARCHAR)
Qual foi a média de atendimento em 18 de outubro de 2000?
75,119
SELECT player FROM table_name_35 WHERE year_s__won = "2007"
In 2007, what player won player of the year?
CREATE TABLE table_name_35 (player VARCHAR, year_s__won VARCHAR)
Em 2007, qual jogador ganhou o prêmio de jogador do ano?
75,120
SELECT year_s__won FROM table_name_45 WHERE player = "mike weir"
What year(s) did Mike Weir win player of the year?
CREATE TABLE table_name_45 (year_s__won VARCHAR, player VARCHAR)
Em que ano (s) Mike Weir ganhou o prêmio de jogador do ano?
75,121
SELECT year_s__won FROM table_name_17 WHERE to_par = "+14"
The To par of +14 was won in what year(s)?
CREATE TABLE table_name_17 (year_s__won VARCHAR, to_par VARCHAR)
O par de +14 foi ganho em que ano(s)?
75,122
SELECT result FROM table_name_5 WHERE competition = "1982 president's cup"
What is the result when the competition is 1982 president's cup?
CREATE TABLE table_name_5 (result VARCHAR, competition VARCHAR)
Qual é o resultado quando a competição é a Copa do Presidente de 1982?
75,123
SELECT score FROM table_name_98 WHERE date = "december 14, 1985"
What is the score when the date is December 14, 1985?
CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR)
Qual é a pontuação quando a data é 14 de dezembro de 1985?
75,124
SELECT venue FROM table_name_32 WHERE date = "september 24, 1980"
What is the venue when the date is September 24, 1980?
CREATE TABLE table_name_32 (venue VARCHAR, date VARCHAR)
Qual é o local quando a data é 24 de setembro de 1980?
75,125
SELECT venue FROM table_name_60 WHERE result = "2-0" AND score = "1 goal" AND competition = "1980 afc asian cup"
What is the venue when the result is 2-0, and the score is 1 goal, and the competition is 1980 afc asian cup?
CREATE TABLE table_name_60 (venue VARCHAR, competition VARCHAR, result VARCHAR, score VARCHAR)
Qual é o local quando o resultado é 2-0, e a pontuação é 1 gol, e a competição é 1980 afc Copa da Ásia?
75,126
SELECT venue FROM table_name_94 WHERE score = "1 goal" AND date = "august 27, 1980"
What is the venue when the score is 1 goal, and the date is August 27, 1980?
CREATE TABLE table_name_94 (venue VARCHAR, score VARCHAR, date VARCHAR)
Qual é o local quando a pontuação é de 1 gol, e a data é 27 de agosto de 1980?
75,127
SELECT result FROM table_name_11 WHERE date = "august 27, 1980"
What is the result when the date is August 27, 1980?
CREATE TABLE table_name_11 (result VARCHAR, date VARCHAR)
Qual é o resultado quando a data é 27 de agosto de 1980?
75,128
SELECT SUM(year) FROM table_name_15 WHERE entrant = "bmw motorsport"
What year shows the Entrant of bmw motorsport?
CREATE TABLE table_name_15 (year INTEGER, entrant VARCHAR)
Que ano mostra o Participante do automobilismo bmw?
75,129
SELECT MIN(points) FROM table_name_78 WHERE entrant = "stp march engineering"
Which Entrant of stp march engineering scored the lowest points?
CREATE TABLE table_name_78 (points INTEGER, entrant VARCHAR)
Qual participante da engenharia de marcha de stp marcou os pontos mais baixos?
75,130
SELECT COUNT(year) FROM table_name_64 WHERE chassis = "march 762" AND points > 0
What year had the Chassis of march 762 and more than 0 points?
CREATE TABLE table_name_64 (year VARCHAR, chassis VARCHAR, points VARCHAR)
Que ano teve o Chassis de março 762 e mais de 0 pontos?
75,131
SELECT MIN(points) FROM table_name_85 WHERE engine = "bmw" AND chassis = "march 792" AND year > 1979
Which engine of bmw had the lowest points and chassis of march 792 that is newer than 1979?
CREATE TABLE table_name_85 (points INTEGER, year VARCHAR, engine VARCHAR, chassis VARCHAR)
Qual motor de bmw tinha os pontos mais baixos e chassis de março 792 que é mais recente do que 1979?
75,132
SELECT conference FROM table_name_74 WHERE city = "boca raton" AND school = "florida atlantic university"
Which Conference has a City of boca raton, and a School of florida atlantic university?
CREATE TABLE table_name_74 (conference VARCHAR, city VARCHAR, school VARCHAR)
Qual conferência tem uma cidade de boca raton, e uma escola de florida universidade atlântica?
75,133
SELECT school FROM table_name_27 WHERE national_championships = 2 AND city = "orlando"
Which School has a National Championships of 2, and a City of orlando?
CREATE TABLE table_name_27 (school VARCHAR, national_championships VARCHAR, city VARCHAR)
Qual escola tem um campeonato nacional de 2 e uma cidade de orlando?
75,134
SELECT school FROM table_name_21 WHERE national_championships < 2 AND nickname = "lions"
Which school has National Championships smaller than 2, and a Nickname of lions?
CREATE TABLE table_name_21 (school VARCHAR, national_championships VARCHAR, nickname VARCHAR)
Qual escola tem campeonatos nacionais menores que 2 e um apelido de leões?
75,135
SELECT win__percentage FROM table_name_95 WHERE 2011 = "1r" AND tournament = "paris"
What is the win percentage when 2011 shows 1r in the Paris tournament?
CREATE TABLE table_name_95 (win__percentage VARCHAR, tournament VARCHAR)
Qual é a porcentagem de vitórias quando 2011 mostra 1r no torneio de Paris?
75,136
SELECT 2009 FROM table_name_32 WHERE 2011 = "25"
What shows for 2009 when 25 shows for 2011?
CREATE TABLE table_name_32 (Id VARCHAR)
O que mostra para 2009 quando 25 shows para 2011?
75,137
SELECT 2010 FROM table_name_35 WHERE 2011 = "1r" AND tournament = "us open"
What shows for 2010 when 2011 is 1r at the US Open tournament?
CREATE TABLE table_name_35 (tournament VARCHAR)
O que mostra para 2010 quando 2011 é 1r no torneio US Open?
75,138
SELECT win__percentage FROM table_name_74 WHERE 2010 = "98"
What is the win percentage when 2010 was 98?
CREATE TABLE table_name_74 (win__percentage VARCHAR)
Qual é o percentual de vitórias quando 2010 tinha 98 anos?
75,139
SELECT 2008 FROM table_name_22 WHERE tournament = "shanghai"
What shows for 2008 at the Shanghai tournament?
CREATE TABLE table_name_22 (tournament VARCHAR)
O que acontece em 2008 no torneio de Xangai?
75,140
SELECT win__percentage FROM table_name_19 WHERE 2012 = "olympic games"
What is the win percentage for the 2012 of olympic games?
CREATE TABLE table_name_19 (win__percentage VARCHAR)
Qual é a porcentagem de vitórias para os jogos olímpicos de 2012?
75,141
SELECT opponent FROM table_name_25 WHERE time = "1:22"
Who was the opponent in the match that lasted 1:22?
CREATE TABLE table_name_25 (opponent VARCHAR, time VARCHAR)
Quem foi o adversário no jogo que durou 1:22?
75,142
SELECT round FROM table_name_36 WHERE opponent = "jonatas novaes"
Which round did the bout against Jonatas Novaes end in?
CREATE TABLE table_name_36 (round VARCHAR, opponent VARCHAR)
Em que ronda terminou a luta contra o Jonatas Novaes?
75,143
SELECT AVG(established) FROM table_name_53 WHERE championships < 1 AND club = "erie seawolves"
Name the average established for championships less than 1 and club of erie seawolves
CREATE TABLE table_name_53 (established INTEGER, championships VARCHAR, club VARCHAR)
Nomear a média estabelecida para campeonatos inferiores a 1 e clube de lobos-marinhos
75,144
SELECT MAX(championships) FROM table_name_76 WHERE club = "erie seawolves"
Name the most championships for club of erie seawolves
CREATE TABLE table_name_76 (championships INTEGER, club VARCHAR)
Nomear o maior número de campeonatos para o clube de lobos-marinhos
75,145
SELECT sport FROM table_name_19 WHERE championships < 1 AND club = "erie bayhawks"
Name the sport with championships less than 1 and club of erie bayhawks
CREATE TABLE table_name_19 (sport VARCHAR, championships VARCHAR, club VARCHAR)
Nomeie o esporte com campeonatos inferiores a 1 e clube de bayhawks de erie
75,146
SELECT date FROM table_name_71 WHERE game = 3
what is the date for game 3?
CREATE TABLE table_name_71 (date VARCHAR, game VARCHAR)
Qual é a data do jogo 3?
75,147
SELECT english_title FROM table_name_95 WHERE japanese_title = "餓狼伝説バトルアーカイブズ2"
What is the English title of 餓狼伝説バトルアーカイブズ2?
CREATE TABLE table_name_95 (english_title VARCHAR, japanese_title VARCHAR)
Qual é o título em inglês de 2?
75,148
SELECT opponent FROM table_name_7 WHERE loss = "francisco (1-1)"
Who was the opponent when there was a loss of Francisco (1-1)?
CREATE TABLE table_name_7 (opponent VARCHAR, loss VARCHAR)
Quem foi o adversário quando houve uma perda de Francisco (1-1)?
75,149
SELECT date FROM table_name_36 WHERE attendance = "17,136"
On what date was the attendance 17,136?
CREATE TABLE table_name_36 (date VARCHAR, attendance VARCHAR)
Em que data foi o comparecimento 17.136?
75,150
SELECT opponent FROM table_name_44 WHERE score = "6-5" AND loss = "white (2-1)"
Who was the opponent during the game with a score of 6-5 and a loss of White (2-1)?
CREATE TABLE table_name_44 (opponent VARCHAR, score VARCHAR, loss VARCHAR)
Quem foi o adversário durante o jogo com uma pontuação de 6-5 e uma perda de Branco (2-1)?
75,151
SELECT score FROM table_name_19 WHERE attendance = "41,087"
What was the score for the game that had an attendance of 41,087?
CREATE TABLE table_name_19 (score VARCHAR, attendance VARCHAR)
Qual foi a pontuação para o jogo que teve uma participação de 41.087?
75,152
SELECT attendance FROM table_name_12 WHERE loss = "koch (0-1)"
When the game had a loss of Koch (0-1) what was the attendance?
CREATE TABLE table_name_12 (attendance VARCHAR, loss VARCHAR)
Quando o jogo teve uma perda de Koch (0-1) qual foi o comparecimento?
75,153
SELECT AVG(inegi_code) FROM table_name_6 WHERE municipal_seat = "mexicali" AND area__km2_ > 13 OFFSET 700
What is the inegi code for mexicali with 13,700 km area?
CREATE TABLE table_name_6 (inegi_code INTEGER, municipal_seat VARCHAR, area__km2_ VARCHAR)
Qual é o código inegi para mexicali com 13.700 km de área?
75,154
SELECT date FROM table_name_34 WHERE h___a = "a" AND league_position = "9th"
What is the date of the away game when the team has a league position of 9th?
CREATE TABLE table_name_34 (date VARCHAR, h___a VARCHAR, league_position VARCHAR)
Qual é a data do jogo fora quando a equipe tem uma posição na liga de 9?
75,155
SELECT MAX(attendance) FROM table_name_33 WHERE date = "may 17"
On May 17, what is the highest Attendance?
CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)
Em 17 de maio, qual é o maior comparecimento?
75,156
SELECT MAX(points) FROM table_name_49 WHERE entrant = "modena team spa" AND year > 1991
What is the highest number of points for the Modena Team Spa after 1991?
CREATE TABLE table_name_49 (points INTEGER, entrant VARCHAR, year VARCHAR)
Qual é o maior número de pontos para o Modena Team Spa depois de 1991?
75,157
SELECT MIN(year) FROM table_name_46 WHERE entrant = "ligier gitanes"
What was the earliest year for the Ligier Gitanes?
CREATE TABLE table_name_46 (year INTEGER, entrant VARCHAR)
Qual foi o primeiro ano do Ligier Gitanes?
75,158
SELECT MAX(money_requested__) AS £_ FROM table_name_24 WHERE episode = "episode 7" AND entrepreneur_s_ = "jerry mantalvanos & paul merker"
In episode 7 what was the highest amount of money requested by Jerry Mantalvanos & Paul Merker ?
CREATE TABLE table_name_24 (money_requested__ INTEGER, episode VARCHAR, entrepreneur_s_ VARCHAR)
No episódio 7, qual foi a maior quantidade de dinheiro solicitada por Jerry Mantalvanos e Paul Merker?
75,159
SELECT money_requested__£_ FROM table_name_59 WHERE company_or_product_name = "reestore"
How much money did reestore request ?
CREATE TABLE table_name_59 (money_requested__£_ VARCHAR, company_or_product_name VARCHAR)
Quanto dinheiro foi pedido?
75,160
SELECT COUNT(money_requested__) AS £_ FROM table_name_6 WHERE company_or_product_name = "gaming alerts"
How much money did gaming alerts ask for?
CREATE TABLE table_name_6 (money_requested__ VARCHAR, company_or_product_name VARCHAR)
Quanto dinheiro os alertas de jogos pediram?
75,161
SELECT winner FROM table_name_96 WHERE prize = "€93,000"
Who is the winner of the prize of €93,000?
CREATE TABLE table_name_96 (winner VARCHAR, prize VARCHAR)
Quem é o vencedor do prêmio de 93.000?
75,162
SELECT winner FROM table_name_50 WHERE prize = "£200,000"
Who is the winner of the prize of £200,000 as listed?
CREATE TABLE table_name_50 (winner VARCHAR, prize VARCHAR)
Quem é o vencedor do prêmio de 200.000 conforme listado?
75,163
SELECT date FROM table_name_91 WHERE winner = "ram vaswani"
Ram Vaswani was a winner on what date?
CREATE TABLE table_name_91 (date VARCHAR, winner VARCHAR)
Ram Vaswani foi um vencedor em que data?
75,164
SELECT race FROM table_name_80 WHERE place = "2nd" AND season = 1996 AND date = "20-jan-1996"
Which race resulted in 2nd place in the 1996 season on 20-Jan-1996?
CREATE TABLE table_name_80 (race VARCHAR, date VARCHAR, place VARCHAR, season VARCHAR)
Qual corrida resultou em 2o lugar na temporada de 1996 em 20 de janeiro de 1996?
75,165
SELECT place FROM table_name_17 WHERE race = "downhill" AND season < 1996 AND date = "11-mar-1995"
What is the place result of the downhill race before the 1996 season on 11-Mar-1995?
CREATE TABLE table_name_17 (place VARCHAR, date VARCHAR, race VARCHAR, season VARCHAR)
Qual é o resultado da corrida de descida antes da temporada de 1996 em 11 de março de 1995?
75,166
SELECT place FROM table_name_73 WHERE season = 1996 AND location = "lake louise, canada"
What place result was the 1996 season at Lake Louise, Canada?
CREATE TABLE table_name_73 (place VARCHAR, season VARCHAR, location VARCHAR)
Qual foi o resultado da temporada de 1996 em Lake Louise, Canadá?
75,167
SELECT record FROM table_name_23 WHERE home = "detroit red wings" AND score = "1–2" AND date = "december 29"
What is the Record that has a Home of detroit red wings, and a Score of 1–2 on december 29?
CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR, home VARCHAR, score VARCHAR)
Qual é o Recorde que tem uma Casa de asas vermelhas detroit, e uma pontuação de 12 em 29 de dezembro?
75,168
SELECT visitor FROM table_name_82 WHERE record = "10–11–5"
Whose Visitor has a Record of 10–11–5?
CREATE TABLE table_name_82 (visitor VARCHAR, record VARCHAR)
De quem é o visitante que tem um recorde de 10115?
75,169
SELECT AVG(average) FROM table_name_90 WHERE matches < 2
What is the typical match smaller than 2?
CREATE TABLE table_name_90 (average INTEGER, matches INTEGER)
Qual é o jogo típico menor que 2?
75,170
SELECT COUNT(total) FROM table_name_84 WHERE tally = "1-19" AND matches < 2
What are the total number of matches smaller than 2 with a tally of 1-19?
CREATE TABLE table_name_84 (total VARCHAR, tally VARCHAR, matches VARCHAR)
Qual é o número total de partidas menores que 2 com uma contagem de 1-19?
75,171
SELECT COUNT(average) FROM table_name_47 WHERE county = "tipperary" AND rank < 1
What is the average total in the county of tipperary with a rank less than 1?
CREATE TABLE table_name_47 (average VARCHAR, county VARCHAR, rank VARCHAR)
Qual é o total médio no condado de tipperary com uma classificação inferior a 1?
75,172
SELECT qual FROM table_name_3 WHERE laps < 68
What is the Qual with less than 68 laps?
CREATE TABLE table_name_3 (qual VARCHAR, laps INTEGER)
O que é o Qual com menos de 68 voltas?
75,173
SELECT year FROM table_name_15 WHERE qual = "147.481"
The 147.481 Qual, happened in what year?
CREATE TABLE table_name_15 (year VARCHAR, qual VARCHAR)
O 147.481 Qual, aconteceu em que ano?
75,174
SELECT being__qualities_ FROM table_name_52 WHERE having__things_ = "language, religions, work, customs, values, norms"
Name the being for having things of language, religions, work, customs, values, norms?
CREATE TABLE table_name_52 (being__qualities_ VARCHAR, having__things_ VARCHAR)
Nomeie o ser por ter coisas de linguagem, religiões, trabalho, costumes, valores, normas?
75,175
SELECT having__things_ FROM table_name_99 WHERE interacting__settings_ = "privacy, intimate spaces of togetherness"
Name the having things for privacy, intimate spaces of togetherness
CREATE TABLE table_name_99 (having__things_ VARCHAR, interacting__settings_ VARCHAR)
Nomeie o ter coisas para privacidade, espaços íntimos de união
75,176
SELECT interacting__settings_ FROM table_name_87 WHERE need = "protection"
Name the interacting for need of protection
CREATE TABLE table_name_87 (interacting__settings_ VARCHAR, need VARCHAR)
Nomeie a interação por necessidade de proteção
75,177
SELECT interacting__settings_ FROM table_name_40 WHERE doing__actions_ = "co-operate, plan, take care of, help"
Name the interacting settings for co-operate, plan, take care of, help
CREATE TABLE table_name_40 (interacting__settings_ VARCHAR, doing__actions_ VARCHAR)
Nomeie as configurações de interação para cooperar, planejar, cuidar, ajudar
75,178
SELECT being__qualities_ FROM table_name_36 WHERE having__things_ = "language, religions, work, customs, values, norms"
Name the being qualities for having things of language, religions, work, customs, values, norms
CREATE TABLE table_name_36 (being__qualities_ VARCHAR, having__things_ VARCHAR)
Nomeie as qualidades do ser para ter coisas de linguagem, religiões, trabalho, costumes, valores, normas
75,179
SELECT being__qualities_ FROM table_name_20 WHERE having__things_ = "friendships, family, relationships with nature"
Name the being qualities for having things of friendships, family, relationships with nature
CREATE TABLE table_name_20 (being__qualities_ VARCHAR, having__things_ VARCHAR)
Nomeie as qualidades do ser para ter coisas de amizades, família, relacionamentos com a natureza
75,180
SELECT MAX(attendance) FROM table_name_89 WHERE time = "2:42"
What was the attendance for the game that went 2:42?
CREATE TABLE table_name_89 (attendance INTEGER, time VARCHAR)
Qual foi o comparecimento para o jogo que foi 2:42?
75,181
SELECT SUM(laps) FROM table_name_72 WHERE name = "sébastien bourdais" AND grid < 1
How many laps for sébastien bourdais, and a Grid smaller than 1?
CREATE TABLE table_name_72 (laps INTEGER, name VARCHAR, grid VARCHAR)
Quantas voltas para Sébastien bourdais, e uma grade menor que 1?
75,182
SELECT score FROM table_name_49 WHERE opponent = "kim tiilikainen"
What was the score in the match against Kim Tiilikainen?
CREATE TABLE table_name_49 (score VARCHAR, opponent VARCHAR)
Qual foi o resultado do jogo contra Kim Tiilikainen?
75,183
SELECT date FROM table_name_59 WHERE surface = "clay" AND opponent = "jean-julien rojer"
What was the date of the match against Jean-Julien Rojer, on a clay surface?
CREATE TABLE table_name_59 (date VARCHAR, surface VARCHAR, opponent VARCHAR)
Qual foi a data da partida contra Jean-Julien Rojer, em uma superfície de argila?
75,184
SELECT tournament FROM table_name_22 WHERE surface = "hard"
Which tournament had a hard surface?
CREATE TABLE table_name_22 (tournament VARCHAR, surface VARCHAR)
Qual torneio teve uma superfície dura?
75,185
SELECT surface FROM table_name_42 WHERE outcome = "runner-up" AND score = "julia görges polona hercog"
What is the surface of the match when the outcome was runner-up, and a Score of julia görges polona hercog?
CREATE TABLE table_name_42 (surface VARCHAR, outcome VARCHAR, score VARCHAR)
Qual é a superfície do jogo quando o resultado foi vice-campeão e uma pontuação de julia grges polona hercog?
75,186
SELECT surface FROM table_name_60 WHERE score = "akgul amanmuradova chuang chia-jung"
What was the surface of the match when the score was akgul amanmuradova chuang chia-jung?
CREATE TABLE table_name_60 (surface VARCHAR, score VARCHAR)
Qual era a superfície do jogo quando a pontuação era akgul amammuradova chuang chia-jung?
75,187
SELECT date FROM table_name_40 WHERE surface = "hard" AND opponent = "eva hrdinová"
What date was the surface hard and Eva Hrdinová was the opponent?
CREATE TABLE table_name_40 (date VARCHAR, surface VARCHAR, opponent VARCHAR)
Que data foi a superfície dura e Eva Hrdinová foi o adversário?
75,188
SELECT surface FROM table_name_83 WHERE opponent = "bethanie mattek-sands"
What was the surface of the match against bethanie mattek-sands?
CREATE TABLE table_name_83 (surface VARCHAR, opponent VARCHAR)
Qual foi a superfície do jogo contra Bethanie Mattek-Sands?
75,189
SELECT series_1 FROM table_name_58 WHERE series_2 = "doug richards"
What series 1 has a Doug Richards in Series 2?
CREATE TABLE table_name_58 (series_1 VARCHAR, series_2 VARCHAR)
Qual série 1 tem um Doug Richards em Série 2?
75,190
SELECT series_1 FROM table_name_60 WHERE series_5 = "peter jones"
Who in series 1 corresponds with Peter Jones in series 5?
CREATE TABLE table_name_60 (series_1 VARCHAR, series_5 VARCHAR)
Quem na série 1 corresponde a Peter Jones na série 5?
75,191
SELECT series_5 FROM table_name_57 WHERE series_3 = "deborah meaden"
Who in series 5 corresponds to Deborah Meaden in series 3?
CREATE TABLE table_name_57 (series_5 VARCHAR, series_3 VARCHAR)
Quem na série 5 corresponde a Deborah Meaden na série 3?
75,192
SELECT series_11 FROM table_name_51 WHERE series_1 = "peter jones"
Who in series 11 corresponds to Peter Jones in series 1?
CREATE TABLE table_name_51 (series_11 VARCHAR, series_1 VARCHAR)
Quem na série 11 corresponde a Peter Jones na série 1?
75,193
SELECT series_9 FROM table_name_55 WHERE series_2 = "peter jones"
Who in series 9 corresponds to Peter Jones in series 2?
CREATE TABLE table_name_55 (series_9 VARCHAR, series_2 VARCHAR)
Quem na série 9 corresponde a Peter Jones na série 2?
75,194
SELECT score FROM table_name_86 WHERE record = "55-39"
What was the score of the game when the Blue Jays were 55-39?
CREATE TABLE table_name_86 (score VARCHAR, record VARCHAR)
Qual foi a pontuação do jogo quando os Blue Jays tinham 55-39 anos?
75,195
SELECT individual FROM table_name_33 WHERE event = "1998 pokljuka"
Who was the individual in the event of 1998 Pokljuka?
CREATE TABLE table_name_33 (individual VARCHAR, event VARCHAR)
Quem foi o indivíduo no evento de 1998 Pokljuka?
75,196
SELECT class FROM table_name_26 WHERE quantity_made = 5
Which locomotive class had 5 items made?
CREATE TABLE table_name_26 (class VARCHAR, quantity_made VARCHAR)
Qual classe de locomotiva tinha 5 itens feitos?
75,197
SELECT manufacturer FROM table_name_40 WHERE type = "4-6-4t"
Which manufacturer made a locomotive with a type of 4-6-4t?
CREATE TABLE table_name_40 (manufacturer VARCHAR, type VARCHAR)
Qual fabricante fez uma locomotiva com um tipo de 4-6-4t?
75,198
SELECT COUNT(event) FROM table_name_92 WHERE round = "radek štěpánek" AND NOT aces < 3
What is the event year radek štěpánek was the round and there were less than 3 aces?
CREATE TABLE table_name_92 (event VARCHAR, round VARCHAR, aces VARCHAR)
Qual é o evento ano radek tpanek foi a rodada e havia menos de 3 ases?
75,199
SELECT COUNT(player) FROM table_name_72 WHERE event > 2011 AND NOT aces < 9
How many players were in the event after 2011 with less than 9 aces?
CREATE TABLE table_name_72 (player VARCHAR, event VARCHAR, aces VARCHAR)
Quantos jogadores estiveram no evento depois de 2011 com menos de 9 ases?