Unnamed: 0
int64
0
78.6k
answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
translated_answer
stringlengths
12
992
72,000
SELECT athletes FROM table_name_97 WHERE country = "myanmar"
What is the name of the athlete from Myanmar?
CREATE TABLE table_name_97 (athletes VARCHAR, country VARCHAR)
Qual é o nome do atleta de Myanmar?
72,001
SELECT notes FROM table_name_48 WHERE rank > 2 AND time = "1:48.179"
What are the notes for the person ranked larger than 2, and a time of 1:48.179?
CREATE TABLE table_name_48 (notes VARCHAR, rank VARCHAR, time VARCHAR)
Quais são as notas para a pessoa classificada como maior que 2, e um tempo de 1:48.179?
72,002
SELECT MIN(chorley) FROM table_name_99 WHERE preston = 6 AND west_lancashire < 4
What is the lowest Chorley with a 6 Preston and a 4 for West Lancashire?
CREATE TABLE table_name_99 (chorley INTEGER, preston VARCHAR, west_lancashire VARCHAR)
Qual é o Chorley mais baixo com um 6 Preston e um 4 para West Lancashire?
72,003
SELECT AVG(fylde) FROM table_name_57 WHERE burnley < 0
What is the average rating for a Flyde that has a Burnley less than 0?
CREATE TABLE table_name_57 (fylde INTEGER, burnley INTEGER)
Qual é a classificação média para um Flyde que tem um Burnley inferior a 0?
72,004
SELECT MAX(west_lancashire) FROM table_name_15 WHERE pendle > 1 AND rossendale > 2
What is the highest rated West Lancashire with a Pendle greater than 1 and a Rossendale more than 2?
CREATE TABLE table_name_15 (west_lancashire INTEGER, pendle VARCHAR, rossendale VARCHAR)
Qual é a maior pontuação West Lancashire com um Pendle maior que 1 e um Rossendale maior que 2?
72,005
SELECT AVG(chorley) FROM table_name_96 WHERE rossendale > 0 AND party = "labour" AND pendle < 1
What was the average Chorley for the Labour party that had a Rossendale greater than 0 and a Pendle less than 1?
CREATE TABLE table_name_96 (chorley INTEGER, pendle VARCHAR, rossendale VARCHAR, party VARCHAR)
Qual foi o Chorley médio para o Partido Trabalhista que tinha um Rossendale maior que 0 e um Pendle menor que 1?
72,006
SELECT season FROM table_name_79 WHERE top_goalscorer = "schädlich"
In what season was Schädlich the top goalscorer?
CREATE TABLE table_name_79 (season VARCHAR, top_goalscorer VARCHAR)
Em que época foi Schdlich o melhor marcador?
72,007
SELECT avgatt FROM table_name_90 WHERE rank = "5"
What is the average attendance when the rank is 5?
CREATE TABLE table_name_90 (avgatt VARCHAR, rank VARCHAR)
Qual é a média de participação quando a classificação é 5?
72,008
SELECT speed FROM table_name_13 WHERE rider = "chris swallow"
What is the Speed for Chris Swallow?
CREATE TABLE table_name_13 (speed VARCHAR, rider VARCHAR)
Qual é a velocidade de Chris Swallow?
72,009
SELECT speed FROM table_name_36 WHERE rank > 2 AND team = "500cc norton manx"
What is the speed when the rank is larger than 2, and team is 500cc norton manx?
CREATE TABLE table_name_36 (speed VARCHAR, rank VARCHAR, team VARCHAR)
Qual é a velocidade quando a classificação é maior que 2, e a equipe é de 500cc norton manx?
72,010
SELECT time FROM table_name_94 WHERE rider = "alan oversby"
What is the time for Alan Oversby?
CREATE TABLE table_name_94 (time VARCHAR, rider VARCHAR)
Qual é a hora de Alan Oversby?
72,011
SELECT speed FROM table_name_28 WHERE rank < 3 AND time = "1:06.19.90"
What is the Speed when the rank is smaller than 3, and time is 1:06.19.90?
CREATE TABLE table_name_28 (speed VARCHAR, rank VARCHAR, time VARCHAR)
Qual é a velocidade quando a classificação é menor que 3, e o tempo é 1:06.19.90?
72,012
SELECT team FROM table_name_36 WHERE time = "1:11.19.89"
What is the team when the time is 1:11.19.89?
CREATE TABLE table_name_36 (team VARCHAR, time VARCHAR)
O que é a equipe quando o tempo é 1:11.19.89?
72,013
SELECT actor FROM table_name_83 WHERE character = "helga beimer"
Which actor plays the character Helga Beimer?
CREATE TABLE table_name_83 (actor VARCHAR, character VARCHAR)
Qual ator interpreta a personagem Helga Beimer?
72,014
SELECT character FROM table_name_13 WHERE actor = "nadine spruß"
How long did the soap opera run in which Nadine Spruß acted in?
CREATE TABLE table_name_13 (character VARCHAR, actor VARCHAR)
Quanto tempo durou a novela em que Nadine Spru atuou?
72,015
SELECT duration FROM table_name_2 WHERE character = "clemens richter"
How many years did the soap opera run in which the character Clemens Richter was included?
CREATE TABLE table_name_2 (duration VARCHAR, character VARCHAR)
Quantos anos correu a novela em que o personagem Clemens Richter foi incluído?
72,016
SELECT years FROM table_name_88 WHERE soap_opera = "marienhof" AND duration = "10 years" AND actor = "leonore capell"
What years did Marienhof run, which featured Leonore Capell and lasted 10 years?
CREATE TABLE table_name_88 (years VARCHAR, actor VARCHAR, soap_opera VARCHAR, duration VARCHAR)
Que anos Marienhof correu, que contou com Leonore Capell e durou 10 anos?
72,017
SELECT opponent FROM table_name_89 WHERE week = 6
Who was the opponent in week 6?
CREATE TABLE table_name_89 (opponent VARCHAR, week VARCHAR)
Quem foi o adversário na 6a semana?
72,018
SELECT result FROM table_name_86 WHERE opponent = "carolina panthers"
What's the result when the Carolina Panthers were the opponent?
CREATE TABLE table_name_86 (result VARCHAR, opponent VARCHAR)
Qual foi o resultado quando os Carolina Panthers foram o adversário?
72,019
SELECT date FROM table_name_29 WHERE result = "w 41-0"
What date had a result of W 41-0?
CREATE TABLE table_name_29 (date VARCHAR, result VARCHAR)
Que data teve um resultado de W 41-0?
72,020
SELECT attendance FROM table_name_95 WHERE week > 16
What's the attendance when the week was more than 16?
CREATE TABLE table_name_95 (attendance VARCHAR, week INTEGER)
Qual é a frequência quando a semana tinha mais de 16 anos?
72,021
SELECT year FROM table_name_5 WHERE tournament = "world half marathon championships" AND result = "3rd"
What was the year of the World Half Marathon Championships with a result of 3rd?
CREATE TABLE table_name_5 (year VARCHAR, tournament VARCHAR, result VARCHAR)
Qual foi o ano do Campeonato Mundial de Meia Maratona com o resultado do 3o?
72,022
SELECT result FROM table_name_67 WHERE year = 2001
What was the result of the tournament in 2001?
CREATE TABLE table_name_67 (result VARCHAR, year VARCHAR)
Qual foi o resultado do torneio em 2001?
72,023
SELECT AVG(capacity) FROM table_name_89 WHERE navigator = "macneall"
What is the average capacity for the vehicle having a navigator of Macneall?
CREATE TABLE table_name_89 (capacity INTEGER, navigator VARCHAR)
Qual é a capacidade média para o veículo ter um navegador de Macneall?
72,024
SELECT vehicle FROM table_name_8 WHERE class = "cm14"
Which vehicle had a class of CM14?
CREATE TABLE table_name_8 (vehicle VARCHAR, class VARCHAR)
Qual veículo tinha uma classe de CM14?
72,025
SELECT driver FROM table_name_86 WHERE class = "cm22" AND navigator = "macneall"
Who was the driver of the vehicle having class of CM22 and navigator of Macneall?
CREATE TABLE table_name_86 (driver VARCHAR, class VARCHAR, navigator VARCHAR)
Quem era o motorista do veículo com classe de CM22 e navegador de Macneall?
72,026
SELECT total_time FROM table_name_79 WHERE navigator = "vandenberg"
What is the total time of the vehicle having a navigator of Vandenberg?
CREATE TABLE table_name_79 (total_time VARCHAR, navigator VARCHAR)
Qual é o tempo total do veículo ter um navegador de Vandenberg?
72,027
SELECT AVG(bronze) FROM table_name_86 WHERE gold > 2 AND total < 14 AND silver = 4
What is the bronze with more than 2 gold and less than 14 total and 4 silver?
CREATE TABLE table_name_86 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)
O que é o bronze com mais de 2 de ouro e menos de 14 total e 4 de prata?
72,028
SELECT SUM(silver) FROM table_name_83 WHERE total = 11
How many silvers are there with a total of 11?
CREATE TABLE table_name_83 (silver INTEGER, total VARCHAR)
Quantas pratas existem com um total de 11?
72,029
SELECT COUNT(silver) FROM table_name_81 WHERE gold > 2 AND nation = "germany"
How many silvers are there with more than 2 golds in Germany?
CREATE TABLE table_name_81 (silver VARCHAR, gold VARCHAR, nation VARCHAR)
Quantas pratas existem com mais de 2 ouros na Alemanha?
72,030
SELECT AVG(reaction) FROM table_name_53 WHERE heat > 1 AND name = "brigitte foster-hylton"
What is the average reaction for brigitte foster-hylton after heat 1?
CREATE TABLE table_name_53 (reaction INTEGER, heat VARCHAR, name VARCHAR)
Qual é a reação média de brigitte Foster-hylton após o calor 1?
72,031
SELECT round FROM table_name_32 WHERE home_team = "pohang steelers"
What round did the home team Pohang Steelers play?
CREATE TABLE table_name_32 (round VARCHAR, home_team VARCHAR)
Qual foi a rodada que o time da casa Pohang Steelers jogou?
72,032
SELECT MAX(round) FROM table_name_28 WHERE away_team = "pohang steelers"
What is the latest round for Pohang Steelers as the away team?
CREATE TABLE table_name_28 (round INTEGER, away_team VARCHAR)
Qual é a última rodada para o Pohang Steelers como a equipe visitante?
72,033
SELECT album FROM table_name_51 WHERE remix = "dead guys remix" AND year > 2003
what is the album when the remix is dead guys remix and the year is after 2003?
CREATE TABLE table_name_51 (album VARCHAR, remix VARCHAR, year VARCHAR)
Qual é o álbum quando o remix é Dead Guys remix e o ano é depois de 2003?
72,034
SELECT SUM(pick) FROM table_name_96 WHERE player = "joselito escobar"
What is Joselito Escobar's Pick number?
CREATE TABLE table_name_96 (pick INTEGER, player VARCHAR)
Qual é o número de escolha de Joselito Escobar?
72,035
SELECT player FROM table_name_67 WHERE college = "east" AND pick = 3
What is the Pick 3 Player from East College?
CREATE TABLE table_name_67 (player VARCHAR, college VARCHAR, pick VARCHAR)
O que é o Pick 3 Player do East College?
72,036
SELECT pba_team FROM table_name_96 WHERE college = "ateneo de manila"
What is Ateneo de Manila's PBA Team?
CREATE TABLE table_name_96 (pba_team VARCHAR, college VARCHAR)
O que é a Equipe PBA da Ateneo de Manila?
72,037
SELECT college FROM table_name_65 WHERE pick < 3 AND pba_team = "alaska milkmen"
What is the College of the Player from PBA Team Alaska Milkmen with a Pick number of 3 or less?
CREATE TABLE table_name_65 (college VARCHAR, pick VARCHAR, pba_team VARCHAR)
Qual é o Colégio do Jogador da PBA Team Alaska Milkmen com um número de Escolha de 3 ou menos?
72,038
SELECT college FROM table_name_31 WHERE pba_team = "san miguel beermen"
What is the College of the Player from San Miguel Beermen PBA Team?
CREATE TABLE table_name_31 (college VARCHAR, pba_team VARCHAR)
Qual é o Colégio do Jogador da equipe PBA de San Miguel Beermen?
72,039
SELECT Web AS client FROM table_name_18 WHERE client = "x" AND project = "goto servers vnc java server (gsvncj)"
who is the web client when the client is x and the project is goto servers vnc java server (gsvncj)?
CREATE TABLE table_name_18 (Web VARCHAR, client VARCHAR, project VARCHAR)
quem é o cliente web quando o cliente é x e o projeto é o servidor vnc java do servidor goto (gsvncj)?
72,040
SELECT color_quality FROM table_name_9 WHERE relay = "✓"
what is the color quality when the relay is ✓?
CREATE TABLE table_name_9 (color_quality VARCHAR, relay VARCHAR)
Qual é a qualidade da cor quando o relé é ?
72,041
SELECT proxy FROM table_name_59 WHERE image_quality = "✓" AND encryption = "ssl" AND license = "proprietary"
what is the proxy when the image quality is ✓, the encryption is ssl and the license is proprietary?
CREATE TABLE table_name_59 (proxy VARCHAR, license VARCHAR, image_quality VARCHAR, encryption VARCHAR)
qual é o proxy quando a qualidade da imagem é , a criptografia é ssl e a licença é proprietária?
72,042
SELECT image_quality FROM table_name_32 WHERE multiple_sessions = "x" AND authentication = "✓" AND date = "may 15, 2007"
what is the image quality when the multiple sessions is x, the authentication is ✓ and the date is may 15, 2007?
CREATE TABLE table_name_32 (image_quality VARCHAR, date VARCHAR, multiple_sessions VARCHAR, authentication VARCHAR)
Qual é a qualidade da imagem quando as várias sessões são x, a autenticação é e a data é 15 de maio de 2007?
72,043
SELECT cores FROM table_name_76 WHERE l3_cache = "8 mb" AND model_number = "core i7-860"
What is listed for the Cores that has the L3 cache of 8 MB and Model number of Core i7-860?
CREATE TABLE table_name_76 (cores VARCHAR, l3_cache VARCHAR, model_number VARCHAR)
O que está listado para os núcleos que tem o cache L3 de 8 MB e o número de modelo do Core i7-860?
72,044
SELECT memory FROM table_name_32 WHERE turbo = "2/2/4/5" AND release_date = "may 2010"
What Memory has a Turbo of 2/2/4/5 and the Release date of May 2010?
CREATE TABLE table_name_32 (memory VARCHAR, turbo VARCHAR, release_date VARCHAR)
Qual Memória tem um Turbo de 2/2/4/5 e a data de lançamento de maio de 2010?
72,045
SELECT model_number FROM table_name_30 WHERE sspec_number = "slbjg(b1)"
What Model number has the sSpec numebr of SLBJG(B1)?
CREATE TABLE table_name_30 (model_number VARCHAR, sspec_number VARCHAR)
Qual número de modelo tem o número sSpec de SLBJG (B1)?
72,046
SELECT turbo FROM table_name_29 WHERE release_price___usd__ = "$583"
What Turbo has the Release price (USD) of $583?
CREATE TABLE table_name_29 (turbo VARCHAR, release_price___usd__ VARCHAR)
Qual Turbo tem o preço de lançamento (USD) de US $ 583?
72,047
SELECT MIN(prominence__m_) FROM table_name_87 WHERE elevation__m_ = 3 OFFSET 615
What is the lowest prominence for a peak with elevation of 3,615 meters?
CREATE TABLE table_name_87 (prominence__m_ INTEGER, elevation__m_ VARCHAR)
Qual é a menor proeminência para um pico com elevação de 3.615 metros?
72,048
SELECT COUNT(col__m_) FROM table_name_86 WHERE elevation__m_ = 2 OFFSET 308
What is the Col entry for the peak with an elevation of 2,308 meters?
CREATE TABLE table_name_86 (col__m_ VARCHAR, elevation__m_ VARCHAR)
Qual é a entrada Col para o pico com uma elevação de 2.308 metros?
72,049
SELECT actor FROM table_name_64 WHERE character = "rachel mckenna"
who is the actor that played rachel mckenna?
CREATE TABLE table_name_64 (actor VARCHAR, character VARCHAR)
Quem foi o ator que interpretou Rachel McKenna?
72,050
SELECT actor FROM table_name_31 WHERE soap_opera = "shortland street" AND years = "1993–1999, 2001–2003, 2007, 2009—"
who is the actor for shortland street for the years 1993–1999, 2001–2003, 2007, 2009—?
CREATE TABLE table_name_31 (actor VARCHAR, soap_opera VARCHAR, years VARCHAR)
quem é o ator de shortland street para os anos 1993-1999, 2001-2003, 2007, 2009?
72,051
SELECT soap_opera FROM table_name_10 WHERE years = "2000–2004, 2005—"
what is the soap opera when the years are 2000–2004, 2005—?
CREATE TABLE table_name_10 (soap_opera VARCHAR, years VARCHAR)
O que é a novela quando os anos são 20002004, 2005?
72,052
SELECT character FROM table_name_47 WHERE duration = "11 years"
what is the character with the duration of 11 years?
CREATE TABLE table_name_47 (character VARCHAR, duration VARCHAR)
Qual é o personagem com a duração de 11 anos?
72,053
SELECT soap_opera FROM table_name_48 WHERE actor = "elin sogn"
what is the soap opera for elin sogn?
CREATE TABLE table_name_48 (soap_opera VARCHAR, actor VARCHAR)
O que é a telenovela para elin sogn?
72,054
SELECT station FROM table_name_73 WHERE owned_since = 2011 AND channel___tv___rf__ = "27"
What station was owned since 2011, and a channel (tv/rf) of 27?
CREATE TABLE table_name_73 (station VARCHAR, owned_since VARCHAR, channel___tv___rf__ VARCHAR)
Qual estação era de propriedade desde 2011 e um canal (tv/rf) de 27?
72,055
SELECT affiliation FROM table_name_58 WHERE owned_since > 1991 AND channel___tv___rf__ = "42"
What affiliation has an owned since larger than 1991, and also has a channel (tv/rf) of 42?
CREATE TABLE table_name_58 (affiliation VARCHAR, owned_since VARCHAR, channel___tv___rf__ VARCHAR)
Que afiliação tem uma propriedade desde 1991 e também tem um canal (tv/rf) de 42?
72,056
SELECT city_of_license__market FROM table_name_75 WHERE owned_since < 2011 AND affiliation = "abc" AND channel___tv___rf__ = "9 (22)"
What city of license/market has an owned since before 2011,and a affiliation of abc and channel (tv/rf) of 9 (22)?
CREATE TABLE table_name_75 (city_of_license__market VARCHAR, channel___tv___rf__ VARCHAR, owned_since VARCHAR, affiliation VARCHAR)
Que cidade de licença / mercado tem uma propriedade desde antes de 2011, e uma afiliação de abc e canal (tv / rf) de 9 (22)?
72,057
SELECT SUM(prominence__m_) FROM table_name_69 WHERE elevation__m_ = 2 OFFSET 024
COunt the sum of Prominence (m) of an Elevation (m) of 2,024?
CREATE TABLE table_name_69 (prominence__m_ INTEGER, elevation__m_ VARCHAR)
A soma da Proeminência (m) de uma Elevação (m) de 2.024?
72,058
SELECT AVG(prominence__m_) FROM table_name_9 WHERE col__m_ < 0
Count the Prominence (m) of Col (m) smaller than 0?
CREATE TABLE table_name_9 (prominence__m_ INTEGER, col__m_ INTEGER)
Contar a proeminência (m) de Col (m) menor que 0?
72,059
SELECT MIN(col__m_) FROM table_name_50 WHERE peak = "pico basilé" AND prominence__m_ < 3 OFFSET 011
Name the lowest Col (m) with a Peak of pico basilé, and a Prominence (m) smaller than 3,011?
CREATE TABLE table_name_50 (col__m_ INTEGER, peak VARCHAR, prominence__m_ VARCHAR)
Nomeie o menor Col (m) com um pico de pico basilé, e uma proeminência (m) menor que 3.011?
72,060
SELECT COUNT(week) FROM table_name_81 WHERE tv_time = "fox 4:15et"
What is the Week of the game with TV Time of Fox 4:15ET?
CREATE TABLE table_name_81 (week VARCHAR, tv_time VARCHAR)
Qual é a semana do jogo com TV Time of Fox 4:15ET?
72,061
SELECT tv_time FROM table_name_51 WHERE date = "december 27, 2003"
What is the TV Time of the game on December 27, 2003?
CREATE TABLE table_name_51 (tv_time VARCHAR, date VARCHAR)
Qual é o horário de TV do jogo em 27 de dezembro de 2003?
72,062
SELECT opponent FROM table_name_97 WHERE attendance = "68,436"
What is the Opponent at the game with Attendance of 68,436?
CREATE TABLE table_name_97 (opponent VARCHAR, attendance VARCHAR)
O que é o adversário no jogo com a participação de 68.436?
72,063
SELECT attendance FROM table_name_7 WHERE opponent = "cincinnati bengals"
What is the Attendance at the game against the Cincinnati Bengals?
CREATE TABLE table_name_7 (attendance VARCHAR, opponent VARCHAR)
Qual é o comparecimento no jogo contra o Cincinnati Bengals?
72,064
SELECT opponent FROM table_name_86 WHERE week > 3 AND result = "l 10–6"
What is the Opponent of the game after Week 3 with a Result of L 10–6?
CREATE TABLE table_name_86 (opponent VARCHAR, week VARCHAR, result VARCHAR)
Qual é o oposto do jogo após a semana 3 com um resultado de L 10-6?
72,065
SELECT date FROM table_name_90 WHERE tv_time = "cbs 1:00et" AND result = "w 22–16"
What is the Date of the Game with a Result of w 22–16 in TV Time of CBS 1:00ET?
CREATE TABLE table_name_90 (date VARCHAR, tv_time VARCHAR, result VARCHAR)
Qual é a data do jogo com um resultado de w 22 16 em Tempo de TV de CBS 1:00ET?
72,066
SELECT venue FROM table_name_81 WHERE attendance = "47,678"
At what Venue was the Attendance 47,678?
CREATE TABLE table_name_81 (venue VARCHAR, attendance VARCHAR)
Em que local foi o comparecimento 47.678?
72,067
SELECT attendance FROM table_name_6 WHERE date = "new zealand scores in bold"
What is the Attendance of New Zealand Scores in bold?
CREATE TABLE table_name_6 (attendance VARCHAR, date VARCHAR)
Qual é a presença dos resultados da Nova Zelândia em negrito?
72,068
SELECT lost FROM table_name_55 WHERE drawn = "2" AND bonus_points = "6"
What is the number of lost games when 2 were drawn, and there were 6 bonus points?
CREATE TABLE table_name_55 (lost VARCHAR, drawn VARCHAR, bonus_points VARCHAR)
Qual é o número de jogos perdidos quando 2 foram sorteados, e havia 6 pontos de bônus?
72,069
SELECT bonus_points FROM table_name_28 WHERE drawn = "4"
What is the number of bonus points when there are 4 drawn?
CREATE TABLE table_name_28 (bonus_points VARCHAR, drawn VARCHAR)
Qual é o número de pontos de bônus quando há 4 sorteados?
72,070
SELECT bonus_points FROM table_name_83 WHERE drawn = "2" AND points_against = "599"
What is the number of bonus points when there are 2 drawn and the points against is 599?
CREATE TABLE table_name_83 (bonus_points VARCHAR, drawn VARCHAR, points_against VARCHAR)
Qual é o número de pontos de bônus quando há 2 empates e os pontos contra são 599?
72,071
SELECT lost FROM table_name_32 WHERE played = "26" AND points = "83"
What is the lost number when the team played 26 games and there were 83 points?
CREATE TABLE table_name_32 (lost VARCHAR, played VARCHAR, points VARCHAR)
Qual é o número perdido quando a equipe jogou 26 jogos e teve 83 pontos?
72,072
SELECT lost FROM table_name_58 WHERE drawn = "2" AND points_against = "572"
What is the lost number for the team with 2 drawn games, and 572 points against?
CREATE TABLE table_name_58 (lost VARCHAR, drawn VARCHAR, points_against VARCHAR)
Qual é o número perdido para a equipe com 2 jogos empatados e 572 pontos contra?
72,073
SELECT bonus_points FROM table_name_63 WHERE drawn = "2" AND points_for = "475"
What is the number of bonus points for the team with 2 drawn games and 475 points?
CREATE TABLE table_name_63 (bonus_points VARCHAR, drawn VARCHAR, points_for VARCHAR)
Qual é o número de pontos de bônus para a equipe com 2 jogos empatados e 475 pontos?
72,074
SELECT transfer_fee FROM table_name_23 WHERE name = "helguera"
What is the transfer fee for Helguera?
CREATE TABLE table_name_23 (transfer_fee VARCHAR, name VARCHAR)
Qual é a taxa de transferência para a Helguera?
72,075
SELECT transfer_fee FROM table_name_25 WHERE moving_from = "celta de vigo"
What was the transfer fee when the moving from was celta de Vigo?
CREATE TABLE table_name_25 (transfer_fee VARCHAR, moving_from VARCHAR)
Qual foi a taxa de transferência quando a mudança de era celta de Vigo?
72,076
SELECT transfer_window FROM table_name_21 WHERE moving_from = "fenerbahçe"
What was the transfer window with a moving from of fenerbahçe?
CREATE TABLE table_name_21 (transfer_window VARCHAR, moving_from VARCHAR)
Qual foi a janela de transferência com um movimento de fenerbahçe?
72,077
SELECT nat FROM table_name_97 WHERE moving_from = "espanyol"
What nation had a moving from of espanyol?
CREATE TABLE table_name_97 (nat VARCHAR, moving_from VARCHAR)
Que nação teve um movimento de Espanyol?
72,078
SELECT transfer_fee FROM table_name_79 WHERE ends = 2007
What was the transfer fee for the player with an ends of 2007?
CREATE TABLE table_name_79 (transfer_fee VARCHAR, ends VARCHAR)
Qual foi a taxa de transferência para o jogador com o final de 2007?
72,079
SELECT series FROM table_name_85 WHERE release_date = "1946-03-16"
What is the Series of the Filmography with a Release date of 1946-03-16?
CREATE TABLE table_name_85 (series VARCHAR, release_date VARCHAR)
Qual é a Série da Filmografia com data de lançamento de 1946-03-16?
72,080
SELECT director FROM table_name_76 WHERE production_number = "11-14"
Who is the Director of the Filmography with Production Number of 11-14?
CREATE TABLE table_name_76 (director VARCHAR, production_number VARCHAR)
Quem é o diretor da Filmografia com número de produção de 11-14?
72,081
SELECT series FROM table_name_1 WHERE release_date = "1946-01-05"
What is the Series of the Filmography with Release date of 1946-01-05?
CREATE TABLE table_name_1 (series VARCHAR, release_date VARCHAR)
Qual é a Série da Filmografia com data de lançamento de 1946-01-05?
72,082
SELECT series FROM table_name_37 WHERE production_number = "m-4-15"
What is the Series of the Filmography with a Production Number of M-4-15?
CREATE TABLE table_name_37 (series VARCHAR, production_number VARCHAR)
Qual é a Série da Filmografia com um Número de Produção de M-4-15?
72,083
SELECT venue FROM table_name_26 WHERE score = "4-0" AND competition = "2002 tiger cup"
What venue has a score of 4-0 with the 2002 Tiger Cup listed as the competition?
CREATE TABLE table_name_26 (venue VARCHAR, score VARCHAR, competition VARCHAR)
Qual local tem uma pontuação de 4-0 com a Tiger Cup de 2002 listada como a competição?
72,084
SELECT competition FROM table_name_47 WHERE score = "1-3"
What competition has a score of 1-3?
CREATE TABLE table_name_47 (competition VARCHAR, score VARCHAR)
Qual competição tem uma pontuação de 1-3?
72,085
SELECT competition FROM table_name_32 WHERE date = "november 17, 2003"
What competition listed is dated November 17, 2003?
CREATE TABLE table_name_32 (competition VARCHAR, date VARCHAR)
Qual competição listada é datada de 17 de novembro de 2003?
72,086
SELECT venue FROM table_name_4 WHERE date = "february 22, 2003"
What venue listed is dated February 22, 2003?
CREATE TABLE table_name_4 (venue VARCHAR, date VARCHAR)
Qual local listado é datado de 22 de fevereiro de 2003?
72,087
SELECT venue FROM table_name_88 WHERE competition = "friendly"
What venue is listed as having a competition titled Friendly?
CREATE TABLE table_name_88 (venue VARCHAR, competition VARCHAR)
Qual local está listado como tendo uma competição intitulada Friendly?
72,088
SELECT notes FROM table_name_24 WHERE time___sec__ > 23.34 AND rank = 8
Which Notes have a Time larger than 23.34, and a Rank of 8?
CREATE TABLE table_name_24 (notes VARCHAR, time___sec__ VARCHAR, rank VARCHAR)
Quais Notas têm um Tempo maior que 23.34, e um Rank de 8?
72,089
SELECT AVG(week) FROM table_name_68 WHERE date = "december 21, 1969"
In what week was the December 21, 1969 game?
CREATE TABLE table_name_68 (week INTEGER, date VARCHAR)
Em que semana foi o jogo de 21 de dezembro de 1969?
72,090
SELECT opposing_team FROM table_name_14 WHERE venue = "rectory ground, devonport"
Which Opposing Team has a Venue of rectory ground, devonport?
CREATE TABLE table_name_14 (opposing_team VARCHAR, venue VARCHAR)
Qual equipe opositora tem um terreno de reitoria, devonport?
72,091
SELECT date FROM table_name_72 WHERE opposing_team = "mid-districts"
When has an Opposing Team of mid-districts?
CREATE TABLE table_name_72 (date VARCHAR, opposing_team VARCHAR)
Quando tem uma equipe opositora de mid-districts?
72,092
SELECT class__old__to_1868 FROM table_name_47 WHERE quantity > 8
Can you tell me the Class (old) to 1868 that has the Quantity larger than 8?
CREATE TABLE table_name_47 (class__old__to_1868 VARCHAR, quantity INTEGER)
Você pode me dizer a classe (velha) a 1868 que tem a quantidade maior que 8?
72,093
SELECT date FROM table_name_20 WHERE year = "2008"
What was the date of the Cross Code debut that had an Int'l Debut in the year 2008?
CREATE TABLE table_name_20 (date VARCHAR, year VARCHAR)
Qual foi a data da estréia do Cross Code que teve um Int'l Debut no ano de 2008?
72,094
SELECT year FROM table_name_92 WHERE player = "coenraad breytenbach"
What year did Coenraad Breytenbach have their Int'l Debut?
CREATE TABLE table_name_92 (year VARCHAR, player VARCHAR)
Em que ano Coenraad Breytenbach teve seu Int'l Debut?
72,095
SELECT george_h_w_bush FROM table_name_84 WHERE result = "no opinion"
What percent of respondents had no opinion on George H.W. Bush?
CREATE TABLE table_name_84 (george_h_w_bush VARCHAR, result VARCHAR)
Que porcentagem dos entrevistados não tinha opinião sobre George H.W. Bush?
72,096
SELECT SUM(lane) FROM table_name_91 WHERE time = "dns" AND name = "christian kubusch" AND heat > 2
What was Christian Kubusch's lane when the heat was more than 2 and time was DNS?
CREATE TABLE table_name_91 (lane INTEGER, heat VARCHAR, time VARCHAR, name VARCHAR)
Qual era a pista de Christian Kubusch quando o calor era maior que 2 e o tempo era DNS?
72,097
SELECT AVG(lane) FROM table_name_19 WHERE nationality = "bulgaria"
What's Bulgaria's lane?
CREATE TABLE table_name_19 (lane INTEGER, nationality VARCHAR)
Qual é a faixa da Bulgária?
72,098
SELECT AVG(lane) FROM table_name_40 WHERE nationality = "great britain" AND heat < 3
What's Great Britain's lane with a heat less than 3?
CREATE TABLE table_name_40 (lane INTEGER, nationality VARCHAR, heat VARCHAR)
Qual é a pista da Grã-Bretanha com um calor inferior a 3?
72,099
SELECT AVG(lane) FROM table_name_93 WHERE nationality = "spain" AND heat < 4
What's Spain's lane with a heat less than 4?
CREATE TABLE table_name_93 (lane INTEGER, nationality VARCHAR, heat VARCHAR)
Qual é a pista de Espanha com um calor inferior a 4?