Unnamed: 0
int64
0
78.6k
answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
translated_answer
stringlengths
12
992
75,300
SELECT roll FROM table_name_66 WHERE authority = "state" AND decile > 1
When a school has authority of state and a decile greater than 1, what is the roll number?
CREATE TABLE table_name_66 (roll VARCHAR, authority VARCHAR, decile VARCHAR)
Quando uma escola tem autoridade de estado e um decil maior que 1, qual é o número do rolo?
75,301
SELECT opponent FROM table_name_53 WHERE date = "august 30"
Who did the Jays play on August 30?
CREATE TABLE table_name_53 (opponent VARCHAR, date VARCHAR)
Quem foi que os Jays tocaram no dia 30 de agosto?
75,302
SELECT opponent FROM table_name_10 WHERE record = "5-0-1"
Which opponent has a record of 5-0-1?
CREATE TABLE table_name_10 (opponent VARCHAR, record VARCHAR)
Qual adversário tem um recorde de 5-0-1?
75,303
SELECT method FROM table_name_90 WHERE opponent = "dan new"
What method does the opponent of Dan New use?
CREATE TABLE table_name_90 (method VARCHAR, opponent VARCHAR)
Qual método o oponente de Dan New usa?
75,304
SELECT method FROM table_name_27 WHERE record = "3-0"
Which method has a record of 3-0?
CREATE TABLE table_name_27 (method VARCHAR, record VARCHAR)
Qual método tem um registro de 3-0?
75,305
SELECT event FROM table_name_24 WHERE res = "win" AND round = "n/a" AND opponent = "nicolas smith"
Which event is a win by an opponent of Nicolas Smith, with the round marked n/a?
CREATE TABLE table_name_24 (event VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR)
Qual evento é uma vitória de um oponente de Nicolas Smith, com a rodada marcada n/a?
75,306
SELECT event FROM table_name_36 WHERE round = "1" AND opponent = "dan spychalski"
Which event lasted 1 round and included an opponent of Dan Spychalski?
CREATE TABLE table_name_36 (event VARCHAR, round VARCHAR, opponent VARCHAR)
Qual evento durou 1 round e incluiu um adversário de Dan Spychalski?
75,307
SELECT record FROM table_name_70 WHERE opponent = "jimmy smith"
What is Jimmy Smith's opponent's record?
CREATE TABLE table_name_70 (record VARCHAR, opponent VARCHAR)
Qual é o recorde do oponente de Jimmy Smith?
75,308
SELECT SUM(frequency) FROM table_name_47 WHERE brand = "exa fm"
Name the sum of frequecy with brand of exa fm
CREATE TABLE table_name_47 (frequency INTEGER, brand VARCHAR)
Nomear a soma de freqência com marca de exa fm
75,309
SELECT webcast FROM table_name_5 WHERE website = "•" AND frequency = 103.3
Name the webcast for website of • and frequency of 103.3
CREATE TABLE table_name_5 (webcast VARCHAR, website VARCHAR, frequency VARCHAR)
Nomeie o webcast para o site de e frequência de 103.3
75,310
SELECT MIN(frequency) FROM table_name_54 WHERE brand = "radio manantial"
Name the lowest frequency for brand of radio manantial
CREATE TABLE table_name_54 (frequency INTEGER, brand VARCHAR)
Nomear a menor frequência para marca de rádio manantial
75,311
SELECT COUNT(game) FROM table_name_13 WHERE score = "new york yankees – 2, brooklyn dodgers – 3"
Score of new york yankees – 2, brooklyn dodgers – 3 involves how many number of games?
CREATE TABLE table_name_13 (game VARCHAR, score VARCHAR)
Score of new york yankees – 2, brooklyn dodgers – 3 envolve quantos jogos?
75,312
SELECT score FROM table_name_15 WHERE date = "october 5"
Date of october 5 had what score?
CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)
A data de 5 de outubro teve qual pontuação?
75,313
SELECT SUM(attendance) FROM table_name_47 WHERE score = "brooklyn dodgers – 3, new york yankees – 5" AND game > 1
brooklyn dodgers – 3, new york yankees – 5, and a Game larger than 1 had what attendance figure?
CREATE TABLE table_name_47 (attendance INTEGER, score VARCHAR, game VARCHAR)
brooklyn dodgers – 3, yankees de Nova York – 5, e um jogo maior que 1 tinha qual número de público?
75,314
SELECT mixed_doubles FROM table_name_42 WHERE season = 2002
Who won mixed doubles in the 2002 season?
CREATE TABLE table_name_42 (mixed_doubles VARCHAR, season VARCHAR)
Quem ganhou as duplas mistas na temporada de 2002?
75,315
SELECT MIN(quay_cranes) FROM table_name_72 WHERE berths = 1 AND operator = "mtl" AND terminal = "terminal 5 (ct5)"
Name the lowest Quay cranes for Berths of 1 and operator of mtl with terminal of terminal 5 (ct5)
CREATE TABLE table_name_72 (quay_cranes INTEGER, terminal VARCHAR, berths VARCHAR, operator VARCHAR)
Nomear os guindastes Quay mais baixos para Berths de 1 e operador de mtl com terminal do terminal 5 (ct5)
75,316
SELECT operator FROM table_name_81 WHERE berths > 1 AND depth__m_ = "12.5-15.5"
Name the operator with berths more than 1 and depth of 12.5-15.5
CREATE TABLE table_name_81 (operator VARCHAR, berths VARCHAR, depth__m_ VARCHAR)
Nomear o operador com beliches superiores a 1 e profundidade de 12,5-15,5
75,317
SELECT AVG(points) FROM table_name_3 WHERE chassis = "mclaren m23" AND entrant = "centro asegurador"
What is the average points that Centro Asegurador earned with the McLaren M23 chassis?
CREATE TABLE table_name_3 (points INTEGER, chassis VARCHAR, entrant VARCHAR)
Qual foi a média de pontos que o Centro Asegurador ganhou com o chassi McLaren M23?
75,318
SELECT chassis FROM table_name_94 WHERE year > 1981
What was the chassis of Emilio de Villota in 1981?
CREATE TABLE table_name_94 (chassis VARCHAR, year INTEGER)
Qual foi o chassi de Emilio de Villota em 1981?
75,319
SELECT director_s_ FROM table_name_98 WHERE date = "14/6/6"
What directors won an award on 14/6/6?
CREATE TABLE table_name_98 (director_s_ VARCHAR, date VARCHAR)
Quais diretores ganharam um prêmio em 14/6/6?
75,320
SELECT date FROM table_name_42 WHERE recipient = "passion pictures"
What date did Passion Pictures receive an award?
CREATE TABLE table_name_42 (date VARCHAR, recipient VARCHAR)
Em que data a Passion Pictures recebeu um prêmio?
75,321
SELECT award FROM table_name_14 WHERE recipient = "charlie productions ltd"
What award did Charlie Productions Ltd receive?
CREATE TABLE table_name_14 (award VARCHAR, recipient VARCHAR)
Qual foi o prêmio que a Charlie Productions Ltd recebeu?
75,322
SELECT film FROM table_name_75 WHERE recipient = "bub ltd"
What film had Bub Ltd as the recipient?
CREATE TABLE table_name_75 (film VARCHAR, recipient VARCHAR)
Qual filme tinha a Bub Ltd como destinatário?
75,323
SELECT film FROM table_name_2 WHERE date = "22/3/06"
What film was awarded on 22/3/06?
CREATE TABLE table_name_2 (film VARCHAR, date VARCHAR)
Que filme foi premiado em 22/3/06?
75,324
SELECT score FROM table_name_18 WHERE outcome = "winner" AND year > 2008
What score resulted in a winner after 2008?
CREATE TABLE table_name_18 (score VARCHAR, outcome VARCHAR, year VARCHAR)
Qual foi o resultado de um vencedor depois de 2008?
75,325
SELECT score FROM table_name_6 WHERE opponent = "gan teik chai lin woon fui"
What score has an opponent gan teik chai lin woon fui?
CREATE TABLE table_name_6 (score VARCHAR, opponent VARCHAR)
Qual pontuação tem um oponente gan teik chai lin woon fui?
75,326
SELECT tournament FROM table_name_77 WHERE opponent = "gan teik chai lin woon fui"
What tournament has an opponent gan teik chai lin woon fui?
CREATE TABLE table_name_77 (tournament VARCHAR, opponent VARCHAR)
Que torneio tem um adversário gan teik chai lin woon fui?
75,327
SELECT tournament FROM table_name_59 WHERE opponent = "jung jae-sung lee yong-dae"
What tournament has an opponent jung jae-sung lee yong-dae?
CREATE TABLE table_name_59 (tournament VARCHAR, opponent VARCHAR)
Qual torneio tem um oponente jung jae-sung lee yong-dae?
75,328
SELECT record FROM table_name_12 WHERE loss = "alexander (5-2)"
What is the record of the team that lost to Alexander (5-2)?
CREATE TABLE table_name_12 (record VARCHAR, loss VARCHAR)
Qual é o recorde da equipe que perdeu para Alexander (5-2)?
75,329
SELECT opponent FROM table_name_86 WHERE record = "17-11"
Which opponent has a record of 17-11?
CREATE TABLE table_name_86 (opponent VARCHAR, record VARCHAR)
Qual adversário tem um recorde de 17-11?
75,330
SELECT score FROM table_name_46 WHERE record = "15-9"
What is the score of the game that resulted in a 15-9 record?
CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR)
Qual é a pontuação do jogo que resultou em um recorde de 15-9?
75,331
SELECT attendance FROM table_name_86 WHERE date = "may 26"
What was the attendance on May 26?
CREATE TABLE table_name_86 (attendance VARCHAR, date VARCHAR)
Qual foi o comparecimento no dia 26 de maio?
75,332
SELECT score FROM table_name_34 WHERE loss = "dotson (2-3)"
What is the score of the game that was a loss to Dotson (2-3)?
CREATE TABLE table_name_34 (score VARCHAR, loss VARCHAR)
Qual é a pontuação do jogo que foi uma perda para Dotson (2-3)?
75,333
SELECT date FROM table_name_58 WHERE record = "19-11"
On what date was the record 19-11?
CREATE TABLE table_name_58 (date VARCHAR, record VARCHAR)
Em que data foi o recorde 19-11?
75,334
SELECT MAX(points) FROM table_name_61 WHERE year < 1974
What were the highest points before the year 1974?
CREATE TABLE table_name_61 (points INTEGER, year INTEGER)
Quais foram os pontos mais altos antes do ano de 1974?
75,335
SELECT chassis FROM table_name_75 WHERE entrant = "lavazza march" AND points = 0.5
What was the chassis when the entrant was Lavazza March, and the points were 0.5?
CREATE TABLE table_name_75 (chassis VARCHAR, entrant VARCHAR, points VARCHAR)
Qual era o chassi quando o participante era Lavazza March, e os pontos eram 0,5?
75,336
SELECT chassis FROM table_name_38 WHERE entrant = "lavazza march" AND year = 1975
What was the chassis when the entrant was Lavazza March, and the year was 1975?
CREATE TABLE table_name_38 (chassis VARCHAR, entrant VARCHAR, year VARCHAR)
Qual era o chassi quando o participante era Lavazza March, e o ano era 1975?
75,337
SELECT chassis FROM table_name_74 WHERE points > 0 AND entrant = "march engineering"
What was the chassis when the points were greater than 0 and the entrant was March Engineering?
CREATE TABLE table_name_74 (chassis VARCHAR, points VARCHAR, entrant VARCHAR)
Qual era o chassi quando os pontos eram maiores que 0 e o participante era a March Engineering?
75,338
SELECT name FROM table_name_21 WHERE time = 56.07
Who had a time of 56.07?
CREATE TABLE table_name_21 (name VARCHAR, time VARCHAR)
Quem teve um tempo de 56.07?
75,339
SELECT original_title FROM table_name_83 WHERE english_title = "madame rosa"
What is the original title of Madame Rosa?
CREATE TABLE table_name_83 (original_title VARCHAR, english_title VARCHAR)
Qual é o título original de Madame Rosa?
75,340
SELECT original_title FROM table_name_42 WHERE director = "paul verhoeven"
What is the original title where Paul Verhoeven is the director?
CREATE TABLE table_name_42 (original_title VARCHAR, director VARCHAR)
Qual é o título original em que Paul Verhoeven é o diretor?
75,341
SELECT original_title FROM table_name_18 WHERE year = "1978"
What original title has a year of 1978?
CREATE TABLE table_name_18 (original_title VARCHAR, year VARCHAR)
Qual título original tem um ano de 1978?
75,342
SELECT director FROM table_name_14 WHERE original_title = "best foreign film"
Who is the director of the best foreign film?
CREATE TABLE table_name_14 (director VARCHAR, original_title VARCHAR)
Quem é o diretor do melhor filme estrangeiro?
75,343
SELECT english_title FROM table_name_90 WHERE original_title = "ansikte mot ansikte"
What is the English title for Ansikte Mot Ansikte?
CREATE TABLE table_name_90 (english_title VARCHAR, original_title VARCHAR)
Qual é o título em inglês para Ansikte Mot Ansikte?
75,344
SELECT circumstances FROM table_name_93 WHERE date = "2009-09-05"
What happened on 2009-09-05?
CREATE TABLE table_name_93 (circumstances VARCHAR, date VARCHAR)
O que aconteceu em 2009-09-05?
75,345
SELECT location FROM table_name_80 WHERE circumstances = "combat" AND date = "2009-09-16"
Where was the combat of 2009-09-16?
CREATE TABLE table_name_80 (location VARCHAR, circumstances VARCHAR, date VARCHAR)
Onde estava o combate de 2009-09-16?
75,346
SELECT circumstances FROM table_name_25 WHERE date = "2009-03-14"
What happened on 2009-03-14?
CREATE TABLE table_name_25 (circumstances VARCHAR, date VARCHAR)
O que aconteceu em 2009-03-14?
75,347
SELECT casualties FROM table_name_71 WHERE circumstances = "combat" AND location = "fayzabad area"
How many casualties from the combat in the Fayzabad area?
CREATE TABLE table_name_71 (casualties VARCHAR, circumstances VARCHAR, location VARCHAR)
Quantas vítimas do combate na área de Fayzabad?
75,348
SELECT location FROM table_name_28 WHERE date = "2009-09-05"
Where was the incident of 2009-09-05?
CREATE TABLE table_name_28 (location VARCHAR, date VARCHAR)
Onde foi o incidente de 2009-09-05?
75,349
SELECT home FROM table_name_67 WHERE date = "january 22"
What is the home team of the game on January 22?
CREATE TABLE table_name_67 (home VARCHAR, date VARCHAR)
Qual é o time da casa do jogo em 22 de janeiro?
75,350
SELECT score FROM table_name_59 WHERE home = "chicago black hawks" AND visitor = "new york rangers" AND date = "february 26"
What is the score of the game on February 26 with the Chicago black hawks as the home team and the New York Rangers as the visitor team?
CREATE TABLE table_name_59 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)
Qual é a pontuação do jogo em 26 de fevereiro com os falcões negros de Chicago como a equipe da casa e os New York Rangers como a equipe visitante?
75,351
SELECT home FROM table_name_74 WHERE date = "february 4"
What is the home team of the game on February 4?
CREATE TABLE table_name_74 (home VARCHAR, date VARCHAR)
Qual é o time da casa do jogo em 4 de fevereiro?
75,352
SELECT team FROM table_name_44 WHERE points < 1 AND chassis = "zakspeed 871"
What Team had less than 1 point with a Zakspeed 871 chassis?
CREATE TABLE table_name_44 (team VARCHAR, points VARCHAR, chassis VARCHAR)
Qual equipe tinha menos de 1 ponto com um chassi Zakspeed 871?
75,353
SELECT MIN(points) FROM table_name_35 WHERE engine = "ford cosworth dfr (mader) 3.5 v8"
What is the lowest amount of points for a Ford Cosworth DFR (Mader) 3.5 V8 engine?
CREATE TABLE table_name_35 (points INTEGER, engine VARCHAR)
Qual é a menor quantidade de pontos para um motor Ford Cosworth DFR (Mader) 3.5 V8?
75,354
SELECT SUM(year) FROM table_name_55 WHERE chassis = "rial arc2"
What year was a Rial Arc2 chassis used?
CREATE TABLE table_name_55 (year INTEGER, chassis VARCHAR)
Em que ano foi utilizado um chassi Rial Arc2?
75,355
SELECT bronze FROM table_name_25 WHERE silver = 1
Name the bronze when silver is 1
CREATE TABLE table_name_25 (bronze VARCHAR, silver VARCHAR)
Nomeie o bronze quando a prata for 1
75,356
SELECT MIN(silver) FROM table_name_41 WHERE gold < 0
Name the least silver when gold is less than 0
CREATE TABLE table_name_41 (silver INTEGER, gold INTEGER)
Nomeie a menor prata quando o ouro for menor que 0
75,357
SELECT MIN(silver) FROM table_name_40 WHERE nation = "total" AND bronze > 24
Name the least silver for nation of total when bronze is more than 24
CREATE TABLE table_name_40 (silver INTEGER, nation VARCHAR, bronze VARCHAR)
Nomeie a menor prata para a nação do total quando o bronze for mais de 24.
75,358
SELECT year FROM table_name_14 WHERE finish = "12th" AND record = "23-36"
Name the year with finish of 12th and record of 23-36
CREATE TABLE table_name_14 (year VARCHAR, finish VARCHAR, record VARCHAR)
Nomeie o ano com o fim do 12o e recorde de 23-36
75,359
SELECT record FROM table_name_78 WHERE year = "1997"
Name the record for 1997
CREATE TABLE table_name_78 (record VARCHAR, year VARCHAR)
Nomeie o recorde de 1997
75,360
SELECT year FROM table_name_65 WHERE manager = "jesus alfaro" AND finish = "6th"
Name the year for jesus alfaro and finish of 6th
CREATE TABLE table_name_65 (year VARCHAR, manager VARCHAR, finish VARCHAR)
Nomeie o ano para jesus alfaro e finalize do 6o
75,361
SELECT manager FROM table_name_45 WHERE playoffs = "missed" AND year = "1999"
Name the manager for playoffs of missed for 1999
CREATE TABLE table_name_45 (manager VARCHAR, playoffs VARCHAR, year VARCHAR)
Nomeie o gerente para os playoffs de falta para 1999
75,362
SELECT AVG(attendance) FROM table_name_45 WHERE record = "17-18"
What was the average attendance when the record was 17-18?
CREATE TABLE table_name_45 (attendance INTEGER, record VARCHAR)
Qual era a média de atendimento quando o recorde era de 17-18?
75,363
SELECT MIN(points) FROM table_name_60 WHERE entrant = "marlboro brm" AND chassis = "brm p160b"
What was marlboro brm's lowest points by using brm p160b?
CREATE TABLE table_name_60 (points INTEGER, entrant VARCHAR, chassis VARCHAR)
Quais foram os pontos mais baixos de Marlboro brm usando brm p160b?
75,364
SELECT COUNT(points) FROM table_name_47 WHERE year = 1974
What is the total points in 1974?
CREATE TABLE table_name_47 (points VARCHAR, year VARCHAR)
Quais são os pontos totais em 1974?
75,365
SELECT entrant FROM table_name_3 WHERE points = 0 AND year = 1974
Who has 0 points in 1974?
CREATE TABLE table_name_3 (entrant VARCHAR, points VARCHAR, year VARCHAR)
Quem tem 0 pontos em 1974?
75,366
SELECT MIN(points) FROM table_name_37 WHERE chassis = "mclaren m14a"
What is the lowest points of using mclaren m14a as chassis?
CREATE TABLE table_name_37 (points INTEGER, chassis VARCHAR)
Quais são os pontos mais baixos de usar mclaren m14a como chassi?
75,367
SELECT SUM(year) FROM table_name_39 WHERE location = "saint paul" AND final_score > 14.35 AND event = "all around"
Location of saint paul, and a Final-Score larger than 14.35, and a Event of all around is what sum of year?
CREATE TABLE table_name_39 (year INTEGER, event VARCHAR, location VARCHAR, final_score VARCHAR)
Localização de Saint Paul, e um Final-Score maior que 14,35, e um Evento de todos ao redor é que soma de ano?
75,368
SELECT AVG(year) FROM table_name_61 WHERE competition = "u.s championships" AND event = "all around"
Competition of u.s championships, and a Event of all around has what average year?
CREATE TABLE table_name_61 (year INTEGER, competition VARCHAR, event VARCHAR)
Competição de campeonatos dos EUA, e um evento de todos os ao redor tem que ano médio?
75,369
SELECT film FROM table_name_55 WHERE year = 1970
What film was in 1970?
CREATE TABLE table_name_55 (film VARCHAR, year VARCHAR)
Que filme foi em 1970?
75,370
SELECT lyricist FROM table_name_14 WHERE film = "mukti"
Who wrote the lyrics for Mukti?
CREATE TABLE table_name_14 (lyricist VARCHAR, film VARCHAR)
Quem escreveu a letra de Mukti?
75,371
SELECT song FROM table_name_13 WHERE music_director_s_ = "shankar jaikishan"
What song was directed by Shankar Jaikishan?
CREATE TABLE table_name_13 (song VARCHAR, music_director_s_ VARCHAR)
Que canção foi dirigida por Shankar Jaikishan?
75,372
SELECT song FROM table_name_23 WHERE year > 1976 AND music_director_s_ = "rahul dev burman"
What song was written after 1976 and directed by Rahul Dev Burman?
CREATE TABLE table_name_23 (song VARCHAR, year VARCHAR, music_director_s_ VARCHAR)
Que canção foi escrita depois de 1976 e dirigida por Rahul Dev Burman?
75,373
SELECT car_s_ FROM table_name_24 WHERE rounds < 12 AND owner_s_ = "scott deware"
What car does Scott Deware own that has rounds under 12?
CREATE TABLE table_name_24 (car_s_ VARCHAR, rounds VARCHAR, owner_s_ VARCHAR)
Qual carro o Scott Deware possui com menos de 12?
75,374
SELECT city_or_town FROM table_name_92 WHERE top_division_titles = "17"
Which City or town has a Top division titles of 17
CREATE TABLE table_name_92 (city_or_town VARCHAR, top_division_titles VARCHAR)
Qual cidade ou cidade tem um título de divisão Top de 17
75,375
SELECT city_or_town FROM table_name_70 WHERE number_of_seasons_in_top_division < 40 AND club = "gaziantepspor"
Which City or town has top division smaller than 40 and Gaziantepspor Club ?
CREATE TABLE table_name_70 (city_or_town VARCHAR, number_of_seasons_in_top_division VARCHAR, club VARCHAR)
Qual cidade ou cidade tem divisão superior menor que 40 e Gaziantepspor Club?
75,376
SELECT 2003 FROM table_name_59 WHERE 2008 = "2r" AND 2011 = "1r"
What is the 2003 value with 2r in 2008 and 1r in 2011?
CREATE TABLE table_name_59 (Id VARCHAR)
Qual é o valor de 2003 com 2r em 2008 e 1r em 2011?
75,377
SELECT 2007 FROM table_name_67 WHERE 2011 = "2r" AND 2008 = "2r"
What is the 2007 value with 2r in 2011 and 2r in 2008?
CREATE TABLE table_name_67 (Id VARCHAR)
Qual é o valor de 2007 com 2r em 2011 e 2r em 2008?
75,378
SELECT 2007 FROM table_name_36 WHERE 2009 = "1r" AND 2011 = "2r" AND tournament = "wimbledon"
What is the 2007 value with 1r in 2009 and 2r in 2011 at the Tournament of Wimbledon?
CREATE TABLE table_name_36 (tournament VARCHAR)
Qual é o valor de 2007 com 1r em 2009 e 2r em 2011 no Torneio de Wimbledon?
75,379
SELECT 2003 FROM table_name_16 WHERE 2009 = "1r" AND tournament = "australian open"
What is the 2003 value with 1r in 2009 at the Australian Open?
CREATE TABLE table_name_16 (tournament VARCHAR)
Qual é o valor de 2003 com 1r em 2009 no Aberto da Austrália?
75,380
SELECT wins FROM table_name_20 WHERE stadium = "richmond cricket ground"
How many wins did they have at Richmond Cricket Ground Stadium?
CREATE TABLE table_name_20 (wins VARCHAR, stadium VARCHAR)
Quantas vitórias tiveram no Richmond Cricket Ground Stadium?
75,381
SELECT AVG(played) FROM table_name_83 WHERE years = "1905"
How many games did they play in 1905?
CREATE TABLE table_name_83 (played INTEGER, years VARCHAR)
Quantos jogos eles jogaram em 1905?
75,382
SELECT term_in_office FROM table_name_76 WHERE state = "qld" AND party = "labor" AND electorate = "fisher"
Which term in office has a qld state, a Party of labor, and an Electorate of fisher?
CREATE TABLE table_name_76 (term_in_office VARCHAR, electorate VARCHAR, state VARCHAR, party VARCHAR)
Que mandato tem um estado qld, um Partido do Trabalho e um Eleitorado de pescadores?
75,383
SELECT member FROM table_name_50 WHERE electorate = "kennedy"
Which member has an Electorate of kennedy?
CREATE TABLE table_name_50 (member VARCHAR, electorate VARCHAR)
Qual membro tem um Eleitorado de Kennedy?
75,384
SELECT party FROM table_name_75 WHERE member = "david jull"
Which Party has a Member of david jull?
CREATE TABLE table_name_75 (party VARCHAR, member VARCHAR)
Qual partido tem um membro do David Jull?
75,385
SELECT term_in_office FROM table_name_65 WHERE electorate = "hinkler"
Which term in office has an Electorate of hinkler?
CREATE TABLE table_name_65 (term_in_office VARCHAR, electorate VARCHAR)
Que mandato tem um eleitorado de hinkler?
75,386
SELECT electorate FROM table_name_31 WHERE state = "qld" AND party = "national" AND member = "hon evan adermann"
Which Electorate has a State of qld, a Party of national, and a Member of hon evan adermann?
CREATE TABLE table_name_31 (electorate VARCHAR, member VARCHAR, state VARCHAR, party VARCHAR)
Qual eleitorado tem um estado de qld, um partido de nacional, e um membro de hon evan adermann?
75,387
SELECT state FROM table_name_48 WHERE term_in_office = "1984–1996" AND party = "labor" AND member = "robert tickner"
Which state has a Term in office of 1984–1996, a Party of labor, and a Member of robert tickner?
CREATE TABLE table_name_48 (state VARCHAR, member VARCHAR, term_in_office VARCHAR, party VARCHAR)
Que estado tem um mandato de 1984-1996, um Partido do Trabalho, e um membro de Robert Tickner?
75,388
SELECT SUM(decile) FROM table_name_44 WHERE authority = "state" AND name = "pokuru school" AND roll < 109
What is the total amount of decile with the authority of state around the Pokuru School and a roll smaller than 109?
CREATE TABLE table_name_44 (decile INTEGER, roll VARCHAR, authority VARCHAR, name VARCHAR)
Qual é a quantidade total de decil com a autoridade do estado em torno da Escola Pokuru e um rolo menor que 109?
75,389
SELECT MAX(laps) FROM table_name_11 WHERE team = "corvette racing" AND year = 2004
Name the most laps for corvette racing in 2004
CREATE TABLE table_name_11 (laps INTEGER, team VARCHAR, year VARCHAR)
Nomear o maior número de voltas para corridas de corveta em 2004
75,390
SELECT class FROM table_name_67 WHERE pos = "4th" AND year < 2006
Name the class for 4th position with year before 2006
CREATE TABLE table_name_67 (class VARCHAR, pos VARCHAR, year VARCHAR)
Nomeie a turma para a 4a posição com o ano anterior a 2006
75,391
SELECT COUNT(laps) FROM table_name_17 WHERE pos = "23rd"
Name the total number of laps for 23rd position
CREATE TABLE table_name_17 (laps VARCHAR, pos VARCHAR)
Nomeie o número total de voltas para a 23a posição
75,392
SELECT team FROM table_name_83 WHERE laps < 315 AND co_drivers = "david brabham franck lagorce"
Name the team with laps less than 315 and co-drivers of david brabham franck lagorce?
CREATE TABLE table_name_83 (team VARCHAR, laps VARCHAR, co_drivers VARCHAR)
Nomeia a equipa com menos de 315 voltas e co-pilotos de David Brabham Franck Lagorce?
75,393
SELECT team FROM table_name_15 WHERE co_drivers = "david brabham mario andretti"
Name the team for co-drivers of david brabham mario andretti
CREATE TABLE table_name_15 (team VARCHAR, co_drivers VARCHAR)
Nomeie a equipe para co-pilotos de david brabham mario andretti
75,394
SELECT MAX(year) FROM table_name_90 WHERE points > 0
Name the highest year with points more than 0
CREATE TABLE table_name_90 (year INTEGER, points INTEGER)
Nomear o ano mais alto com pontos mais de 0
75,395
SELECT MAX(points) FROM table_name_8 WHERE year > 1953
Name the highest points when year is more than 1953
CREATE TABLE table_name_8 (points INTEGER, year INTEGER)
Nomear os pontos mais altos quando o ano é mais do que 1953
75,396
SELECT engine FROM table_name_38 WHERE points = 0 AND chassis = "kuzma indy roadster" AND year = 1954
Name the engine when points are 0 and chassis is kuzma indy roadster for 1954
CREATE TABLE table_name_38 (engine VARCHAR, year VARCHAR, points VARCHAR, chassis VARCHAR)
Nomeie o motor quando os pontos são 0 e o chassi é kuzma indy roadster para 1954
75,397
SELECT MIN(points) FROM table_name_92 WHERE chassis = "kurtis kraft 3000" AND year < 1951
Name the least points with chassis of kurtis kraft 3000 and year before 1951
CREATE TABLE table_name_92 (points INTEGER, chassis VARCHAR, year VARCHAR)
Nomeie os pontos mínimos com chassis de kurtis kraft 3000 e ano antes de 1951
75,398
SELECT MIN(pioneer) FROM table_name_31 WHERE year = 1966 AND sarina > 4 OFFSET 611
What is the lowest Pioneer population in 1966 with a Sarina population greater than 4,611?
CREATE TABLE table_name_31 (pioneer INTEGER, year VARCHAR, sarina VARCHAR)
Qual é a população mais baixa da Pioneer em 1966 com uma população de Sarina superior a 4.611?
75,399
SELECT year FROM table_name_1 WHERE director = "soroush sehat"
What is the year of the TV series directed by Soroush Sehat?
CREATE TABLE table_name_1 (year VARCHAR, director VARCHAR)
Qual é o ano da série de TV dirigida por Soroush Sehat?