Unnamed: 0 int64 0 78.6k | answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 | translated_answer stringlengths 12 992 |
|---|---|---|---|---|
77,200 | SELECT poll_source FROM table_name_55 WHERE steve_poizner = "37%" | What poll had Steve Poizner at 37%? | CREATE TABLE table_name_55 (poll_source VARCHAR, steve_poizner VARCHAR) | Qual pesquisa teve Steve Poizner em 37%? |
77,201 | SELECT date_s__administered FROM table_name_38 WHERE meg_whitman = "60%" | When did Meg Whitman get 60%? | CREATE TABLE table_name_38 (date_s__administered VARCHAR, meg_whitman VARCHAR) | Quando Meg Whitman conseguiu 60%? |
77,202 | SELECT SUM(round) FROM table_name_74 WHERE team = "boston cannons" | How many players were drafted from the Boston Cannons in the round? | CREATE TABLE table_name_74 (round INTEGER, team VARCHAR) | Quantos jogadores foram sorteados dos Boston Cannons na rodada? |
77,203 | SELECT MAX(round) FROM table_name_26 WHERE team = "long island lizards" | Which round was a player from the Long Island Lizards drafted in first? | CREATE TABLE table_name_26 (round INTEGER, team VARCHAR) | Qual foi a primeira rodada de um jogador dos Lagartos de Long Island? |
77,204 | SELECT nationality FROM table_name_56 WHERE player = "dave curry" | Dave Curry has what Nationality? | CREATE TABLE table_name_56 (nationality VARCHAR, player VARCHAR) | Dave Curry tem que nacionalidade? |
77,205 | SELECT manufacturer FROM table_name_43 WHERE grid = 11 | Name the manufacturer with grid of 11 | CREATE TABLE table_name_43 (manufacturer VARCHAR, grid VARCHAR) | Nome do fabricante com grade de 11 |
77,206 | SELECT manufacturer FROM table_name_26 WHERE grid > 18 AND laps > 1 AND time_retired = "+1 lap" | Name the manufacturer for grid more than 18 and laps more than 1 with tired/retired of +1 lap | CREATE TABLE table_name_26 (manufacturer VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR) | Nomeie o fabricante para grade mais de 18 e voltas mais de 1 com cansado/aposentado de +1 volta |
77,207 | SELECT laps FROM table_name_92 WHERE manufacturer = "suzuki" AND time_retired = "+1:02.804" | Name the laps for suzuki and time/retired of +1:02.804 | CREATE TABLE table_name_92 (laps VARCHAR, manufacturer VARCHAR, time_retired VARCHAR) | Nomear as voltas para suzuki e tempo/aposentado de +1:02.804 |
77,208 | SELECT SUM(laps) FROM table_name_82 WHERE grid = 12 | Name the sum of laps for 12 grids | CREATE TABLE table_name_82 (laps INTEGER, grid VARCHAR) | Nomeie a soma das voltas para 12 grades |
77,209 | SELECT MAX(_number_of_total_votes) FROM table_name_31 WHERE _percentage_of_popular_vote = "32.41%" AND _number_of_seats_won > 95 | Name the most # of total votes with % of popular vote of 32.41% and # of seats won more than 95 | CREATE TABLE table_name_31 (_number_of_total_votes INTEGER, _percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR) | Nomear o maior número de votos totais com % de voto popular de 32,41% e # de assentos ganhou mais de 95 |
77,210 | SELECT finish FROM table_name_95 WHERE year = "1954" | What was Jack McGrath's finish number in 1954? | CREATE TABLE table_name_95 (finish VARCHAR, year VARCHAR) | Qual foi o número de chegada de Jack McGrath em 1954? |
77,211 | SELECT start FROM table_name_72 WHERE qual = "141.033" | What place did Jack McGrath start in when he received a qual score of 141.033? | CREATE TABLE table_name_72 (start VARCHAR, qual VARCHAR) | Em que lugar Jack McGrath começou quando recebeu uma pontuação de 141.033? |
77,212 | SELECT rank FROM table_name_7 WHERE start = "3" AND finish = "26" AND year = "1955" | What was Jack McGrath's rank in 1955 when he started at 3 and finished at 26? | CREATE TABLE table_name_7 (rank VARCHAR, year VARCHAR, start VARCHAR, finish VARCHAR) | Qual era a posição de Jack McGrath em 1955, quando ele começou aos 3 e terminou aos 26 anos? |
77,213 | SELECT pre__season FROM table_name_21 WHERE may_5 = "21" | Which pre-season has May 5 of 21? | CREATE TABLE table_name_21 (pre__season VARCHAR, may_5 VARCHAR) | Qual pré-temporada tem 5 de maio de 21? |
77,214 | SELECT mar_3 FROM table_name_35 WHERE poll = "baseball america (top 25)" | Which March 3 has a Poll of baseball america (top 25)? | CREATE TABLE table_name_35 (mar_3 VARCHAR, poll VARCHAR) | Qual março 3 tem uma enquete de beisebol América (top 25)? |
77,215 | SELECT pre__season FROM table_name_24 WHERE mar_3 = "nr" AND poll = "usa today/espn coaches' poll (top 25)" | Which pre-season has a Mar. 3 of nr, and a Poll of usa today/espn coaches' poll (top 25)? | CREATE TABLE table_name_24 (pre__season VARCHAR, mar_3 VARCHAR, poll VARCHAR) | Qual pré-temporada tem um 3 de março de nr, e uma enquete dos EUA hoje/enquete dos treinadores (top 25)? |
77,216 | SELECT opponent FROM table_name_99 WHERE date = "september 9, 1979" | Who is the opponent on September 9, 1979? | CREATE TABLE table_name_99 (opponent VARCHAR, date VARCHAR) | Quem é o adversário em 9 de setembro de 1979? |
77,217 | SELECT SUM(week) FROM table_name_60 WHERE opponent = "denver broncos" | What is the sum of the week for the Denver Broncos? | CREATE TABLE table_name_60 (week INTEGER, opponent VARCHAR) | Qual é a soma da semana para o Denver Broncos? |
77,218 | SELECT SUM(attendance) FROM table_name_52 WHERE date = "december 2, 1979" | What is the attendance number for December 2, 1979? | CREATE TABLE table_name_52 (attendance INTEGER, date VARCHAR) | Qual é o número de atendimento para o dia 2 de dezembro de 1979? |
77,219 | SELECT term_in_office FROM table_name_27 WHERE party = "liberal" AND state = "sa" AND member = "ian mclachlan" | Name the term in office for liberal and state of sa for ian mclachlan | CREATE TABLE table_name_27 (term_in_office VARCHAR, member VARCHAR, party VARCHAR, state VARCHAR) | Nomear o termo no cargo para liberal e estado de sa para ian mclachlan |
77,220 | SELECT record FROM table_name_16 WHERE date = "july 26" | What was the record for July 26? | CREATE TABLE table_name_16 (record VARCHAR, date VARCHAR) | Qual foi o recorde de 26 de julho? |
77,221 | SELECT SUM(played) FROM table_name_52 WHERE points = 38 AND bp > 5 | Played that has a Points of 38, and a B.P. larger than 5 has what sum? | CREATE TABLE table_name_52 (played INTEGER, points VARCHAR, bp VARCHAR) | Jogado que tem um Pontos de 38, e um B.P. maior que 5 tem que soma? |
77,222 | SELECT COUNT(played) FROM table_name_25 WHERE bp = 0 AND pts_agst < 247 | B.P. of 0, and a Pts Agst smaller than 247 has how many total number of played? | CREATE TABLE table_name_25 (played VARCHAR, bp VARCHAR, pts_agst VARCHAR) | B.P. de 0, e um Pts Agst menor que 247 tem o número total de jogadas? |
77,223 | SELECT COUNT(position) FROM table_name_22 WHERE pts_agst = 572 AND pts_for > 346 | Pts Agst of 572, and a Pts For larger than 346 has what total number of position? | CREATE TABLE table_name_22 (position VARCHAR, pts_agst VARCHAR, pts_for VARCHAR) | Pts Agst de 572, e um Pts Para maior que 346 tem que número total de posição? |
77,224 | SELECT MAX(rounds) FROM table_name_40 WHERE truck_s_ = "chevrolet silverado" AND team = "rbr enterprises" | What is the most number of rounds that the Team from RBR Enterprises and having a Chevrolet Silverado ran? | CREATE TABLE table_name_40 (rounds INTEGER, truck_s_ VARCHAR, team VARCHAR) | Qual é o maior número de rodadas que a equipe da RBR Enterprises e ter um Chevrolet Silverado correu? |
77,225 | SELECT crew_chief FROM table_name_73 WHERE team = "make motorsports" | Who was the crew chief for the team from Make Motorsports? | CREATE TABLE table_name_73 (crew_chief VARCHAR, team VARCHAR) | Quem foi o chefe da equipe da Make Motorsports? |
77,226 | SELECT driver_s_ FROM table_name_34 WHERE crew_chief = "nick carlson" | Who was the driver for crew chief Nick Carlson? | CREATE TABLE table_name_34 (driver_s_ VARCHAR, crew_chief VARCHAR) | Quem foi o motorista do chefe da tripulação, Nick Carlson? |
77,227 | SELECT truck_s_ FROM table_name_23 WHERE driver_s_ = "brett moffitt" AND team = "hattori racing enterprises" | What is the truck used by Brett Moffitt, from Hattori Racing Enterprises? | CREATE TABLE table_name_23 (truck_s_ VARCHAR, driver_s_ VARCHAR, team VARCHAR) | Qual é o caminhão usado por Brett Moffitt, da Hattori Racing Enterprises? |
77,228 | SELECT losing_bonus FROM table_name_51 WHERE drawn = "1" AND try_bonus = "10" | What was the losing bonus that had 1 draw and a 10 try bonus? | CREATE TABLE table_name_51 (losing_bonus VARCHAR, drawn VARCHAR, try_bonus VARCHAR) | Qual foi o bônus perdedor que teve 1 empate e um bônus de 10 tentativas? |
77,229 | SELECT drawn FROM table_name_99 WHERE tries_for = "34" | How many resulted in draws with 34 tries for? | CREATE TABLE table_name_99 (drawn VARCHAR, tries_for VARCHAR) | Quantos resultaram em empates com 34 tentativas? |
77,230 | SELECT tries_against FROM table_name_69 WHERE points_against = "520" | How many tries against were there with 520 points against? | CREATE TABLE table_name_69 (tries_against VARCHAR, points_against VARCHAR) | Quantas tentativas contra houve com 520 pontos contra? |
77,231 | SELECT tries_for FROM table_name_38 WHERE points_against = "479" | How many tries for were there while having 479 points against? | CREATE TABLE table_name_38 (tries_for VARCHAR, points_against VARCHAR) | Quantas tentativas foram feitas, com 479 pontos contra? |
77,232 | SELECT lost FROM table_name_52 WHERE points_against = "479" | How many resulted in a loss with 479 points against? | CREATE TABLE table_name_52 (lost VARCHAR, points_against VARCHAR) | Quantos resultaram em uma derrota com 479 pontos contra? |
77,233 | SELECT try_bonus FROM table_name_67 WHERE points = "58" | What is the try bonus when there were 58 points? | CREATE TABLE table_name_67 (try_bonus VARCHAR, points VARCHAR) | Qual é o bônus de tentativa quando havia 58 pontos? |
77,234 | SELECT opponent FROM table_name_2 WHERE record = "44-28" | Which opponent has a record of 44-28? | CREATE TABLE table_name_2 (opponent VARCHAR, record VARCHAR) | Qual adversário tem um recorde de 44-28? |
77,235 | SELECT opponent FROM table_name_32 WHERE attendance = "40,560" | Which opponent has an attendance of 40,560? | CREATE TABLE table_name_32 (opponent VARCHAR, attendance VARCHAR) | Qual adversário tem uma participação de 40.560? |
77,236 | SELECT loss FROM table_name_23 WHERE date = "june 13" | Which loss was on June 13? | CREATE TABLE table_name_23 (loss VARCHAR, date VARCHAR) | Qual foi a perda em 13 de junho? |
77,237 | SELECT attendance FROM table_name_86 WHERE record = "43-28" | What is the attendance that has a record of 43-28? | CREATE TABLE table_name_86 (attendance VARCHAR, record VARCHAR) | Qual é a audiência que tem um registro de 43-28? |
77,238 | SELECT date FROM table_name_69 WHERE record = "43-28" | What was the date of the record of 43-28? | CREATE TABLE table_name_69 (date VARCHAR, record VARCHAR) | Qual foi a data do registro de 43-28? |
77,239 | SELECT AVG(goalsagainst) FROM table_name_40 WHERE points = 108 AND lost < 14 | Goalsagainst that has a Points of 108, and a Lost smaller than 14 has what average? | CREATE TABLE table_name_40 (goalsagainst INTEGER, points VARCHAR, lost VARCHAR) | Gols contra isso tem um Pontos de 108, e um Lost menor que 14 tem que média? |
77,240 | SELECT COUNT(games) FROM table_name_43 WHERE lost = 42 AND goalsfor > 195 | Lost of 42, and a Goalsfor larger than 195 contains how many number of games? | CREATE TABLE table_name_43 (games VARCHAR, lost VARCHAR, goalsfor VARCHAR) | Perdeu de 42, e um Goalsfor maior do que 195 contém quantos jogos? |
77,241 | SELECT MIN(goalsfor) FROM table_name_38 WHERE season = "2002–03" AND lost > 14 | Season of 2002–03, and a Lost larger than 14, what is the lowest goals? | CREATE TABLE table_name_38 (goalsfor INTEGER, season VARCHAR, lost VARCHAR) | Temporada de 2002-03, e um Lost maior que 14, quais são os objetivos mais baixos? |
77,242 | SELECT AVG(points) FROM table_name_88 WHERE goalsagainst = 285 AND season = "2006–07" AND games < 70 | Goalsagainst of 285, and a Season of 2006–07, and a Games smaller than 70 has what average points? | CREATE TABLE table_name_88 (points INTEGER, games VARCHAR, goalsagainst VARCHAR, season VARCHAR) | Gols contra 285, e uma temporada de 2006-07, e um jogo menor que 70 tem que pontos médios? |
77,243 | SELECT MAX(goalsagainst) FROM table_name_35 WHERE goalsfor = 288 AND points < 85 | Goals for of 288, and Points smaller than 85 what is the highest goals against? | CREATE TABLE table_name_35 (goalsagainst INTEGER, goalsfor VARCHAR, points VARCHAR) | Objetivos para 288, e Pontos menores que 85 quais são os objetivos mais altos contra? |
77,244 | SELECT player FROM table_name_26 WHERE original_team = "los angeles kings" | What player originally played for the Los Angeles Kings? | CREATE TABLE table_name_26 (player VARCHAR, original_team VARCHAR) | Qual jogador originalmente jogou pelo Los Angeles Kings? |
77,245 | SELECT offer_team FROM table_name_24 WHERE date = "july 29, 1994" | What Offer Team has a date of July 29, 1994? | CREATE TABLE table_name_24 (offer_team VARCHAR, date VARCHAR) | Qual Equipe de Oferta tem uma data de 29 de julho de 1994? |
77,246 | SELECT result FROM table_name_79 WHERE offer_team = "new york rangers" AND player = "adam graves" | What is the Result that has the New York Rangers as the Offer Team and Adam Graves as the Player? | CREATE TABLE table_name_79 (result VARCHAR, offer_team VARCHAR, player VARCHAR) | Qual é o resultado que tem o New York Rangers como a equipe de oferta e Adam Graves como o jogador? |
77,247 | SELECT date FROM table_name_26 WHERE original_team = "vancouver canucks" AND result = "matched" AND player = "ryan kesler" | What date has Vancouver Canucks as the original team, Ryan Kesler as the player, and matched as the Result? | CREATE TABLE table_name_26 (date VARCHAR, player VARCHAR, original_team VARCHAR, result VARCHAR) | Que data tem Vancouver Canucks como a equipe original, Ryan Kesler como o jogador, e combinado como o resultado? |
77,248 | SELECT offer_team FROM table_name_59 WHERE player = "david backes" | What was David Backes' Offer Team? | CREATE TABLE table_name_59 (offer_team VARCHAR, player VARCHAR) | Qual foi a equipe de oferta de David Backes? |
77,249 | SELECT result FROM table_name_73 WHERE offer_team = "philadelphia flyers" AND player = "chris gratton" | What is the result of Chris Gratton and Philadelphia Flyers as the Offer Team? | CREATE TABLE table_name_73 (result VARCHAR, offer_team VARCHAR, player VARCHAR) | Qual é o resultado de Chris Gratton e Philadelphia Flyers como a equipe de oferta? |
77,250 | SELECT AVG(game) FROM table_name_23 WHERE venue = "away" AND attendance = 5 OFFSET 000 | Which game had an attendance of 5,000 and was away? | CREATE TABLE table_name_23 (game INTEGER, venue VARCHAR, attendance VARCHAR) | Qual jogo teve uma participação de 5.000 e estava fora? |
77,251 | SELECT date FROM table_name_82 WHERE year = 1786 | When was the date in 1786? | CREATE TABLE table_name_82 (date VARCHAR, year VARCHAR) | Quando foi a data em 1786? |
77,252 | SELECT MIN(attendance) FROM table_name_15 WHERE opponent = "devil rays" AND date = "may 13" | How low is the Attendance that has an Opponent of devil rays and a Date of may 13? | CREATE TABLE table_name_15 (attendance INTEGER, opponent VARCHAR, date VARCHAR) | Quão baixo é o comparecimento que tem um oposto de raios do diabo e uma data de 13 de maio? |
77,253 | SELECT MAX(attendance) FROM table_name_68 WHERE record = "29-25" | How high is the Attendance with a Record of 29-25? | CREATE TABLE table_name_68 (attendance INTEGER, record VARCHAR) | Quão alto é o atendimento com um registro de 29-25? |
77,254 | SELECT opponent FROM table_name_45 WHERE loss = "wells (6-2)" | Which Opponent has a lost of wells (6-2)? | CREATE TABLE table_name_45 (opponent VARCHAR, loss VARCHAR) | Qual o adversário que perdeu os poços (6-2)? |
77,255 | SELECT team_1 FROM table_name_7 WHERE team_2 = "(g14)morolo" | What is the team 1 with a (g14)morolo team 2? | CREATE TABLE table_name_7 (team_1 VARCHAR, team_2 VARCHAR) | O que é a equipa 1 com uma equipa (g14)morolo 2? |
77,256 | SELECT AVG(total) FROM table_name_8 WHERE silver < 1 AND gold = 0 AND nation = "switzerland" AND bronze < 2 | What is the average Total, when the value for Silver is less than 1, when the value for Gold is 0, when the Nation is Switzerland, and when the value for Bronze is 2? | CREATE TABLE table_name_8 (total INTEGER, bronze VARCHAR, nation VARCHAR, silver VARCHAR, gold VARCHAR) | Qual é a média Total, quando o valor de Prata é inferior a 1, quando o valor de Ouro é 0, quando a Nação é a Suíça e quando o valor de Bronze é 2? |
77,257 | SELECT AVG(total) FROM table_name_52 WHERE nation = "sweden" AND bronze < 3 | What is the average Total, when the Nation is Sweden, and when the value for Bronze is less than 3? | CREATE TABLE table_name_52 (total INTEGER, nation VARCHAR, bronze VARCHAR) | Qual é o total médio, quando a nação é a Suécia, e quando o valor para o bronze é inferior a 3? |
77,258 | SELECT AVG(gold) FROM table_name_98 WHERE silver > 2 AND nation = "west germany" | What is the average value for Gold, when the value for Silver is greater than 2, and when the Nation is West Germany? | CREATE TABLE table_name_98 (gold INTEGER, silver VARCHAR, nation VARCHAR) | Qual é o valor médio do ouro, quando o valor da prata é maior que 2, e quando a nação é a Alemanha Ocidental? |
77,259 | SELECT COUNT(gold) FROM table_name_31 WHERE bronze < 0 | What is the value for Gold, when the value for Bronze is less than 0? | CREATE TABLE table_name_31 (gold VARCHAR, bronze INTEGER) | Qual é o valor para Ouro, quando o valor para Bronze é inferior a 0? |
77,260 | SELECT area FROM table_name_61 WHERE authority = "state" AND decile > 6 AND gender = "coed" AND roll = 26 | Where is the coed school with state authority, a Decile larger than 6 and 26 enrolled? | CREATE TABLE table_name_61 (area VARCHAR, roll VARCHAR, gender VARCHAR, authority VARCHAR, decile VARCHAR) | Onde está matriculada a escola coed com autoridade estatal, um Decil maior que 6 e 26? |
77,261 | SELECT AVG(roll) FROM table_name_18 WHERE name = "fairfield school" | What is the average roll for Fairfield school? | CREATE TABLE table_name_18 (roll INTEGER, name VARCHAR) | Qual é a média para a escola de Fairfield? |
77,262 | SELECT name FROM table_name_5 WHERE roll > 26 AND area = "fairfield" | Which school has a roll larger than 26 and is located in Fairfield? | CREATE TABLE table_name_5 (name VARCHAR, roll VARCHAR, area VARCHAR) | Qual escola tem um rolo maior que 26 e está localizada em Fairfield? |
77,263 | SELECT COUNT(points) FROM table_name_34 WHERE chassis = "porsche 718" AND year < 1964 | how many points are there for a Chassis of porsche 718, and a Year smaller than 1964? | CREATE TABLE table_name_34 (points VARCHAR, chassis VARCHAR, year VARCHAR) | Quantos pontos existem para um chassi de porsche 718, e um ano menor que 1964? |
77,264 | SELECT engine FROM table_name_27 WHERE points = 0 AND chassis = "porsche 718" AND year = 1961 | what is the engine that saw 0 points, and a Chassis of porsche 718, in 1961? | CREATE TABLE table_name_27 (engine VARCHAR, year VARCHAR, points VARCHAR, chassis VARCHAR) | Qual foi o motor que viu 0 pontos, e um chassi de porsche 718, em 1961? |
77,265 | SELECT engine FROM table_name_57 WHERE chassis = "porsche 718" AND points = 0 AND year < 1964 | what is the engine that saw a Chassis of porsche 718, and 0 points, prior to 1964? | CREATE TABLE table_name_57 (engine VARCHAR, year VARCHAR, chassis VARCHAR, points VARCHAR) | Qual é o motor que viu um chassi de porsche 718, e 0 pontos, antes de 1964? |
77,266 | SELECT bronze FROM table_name_85 WHERE nation = "poland" | Which bronze has a Nation of poland? | CREATE TABLE table_name_85 (bronze VARCHAR, nation VARCHAR) | Qual bronze tem uma nação de poland? |
77,267 | SELECT gold FROM table_name_15 WHERE silver = "3" AND total = "5" | Which gold has 3 silver and a Total of 5? | CREATE TABLE table_name_15 (gold VARCHAR, silver VARCHAR, total VARCHAR) | Qual ouro tem 3 pratas e um total de 5? |
77,268 | SELECT gold FROM table_name_65 WHERE bronze = "1" AND rank = "47" AND nation = "spain" | Which gold has a Bronze of 1, a Rank of 47, and a Nation of spain? | CREATE TABLE table_name_65 (gold VARCHAR, nation VARCHAR, bronze VARCHAR, rank VARCHAR) | Que ouro tem um bronze de 1, uma classificação de 47, e uma nação de Espanha? |
77,269 | SELECT nation FROM table_name_46 WHERE silver = "1" AND gold = "0" AND total = "1" | Which nation has a Silver of 1, a Gold of 0, and a Total of 1? | CREATE TABLE table_name_46 (nation VARCHAR, total VARCHAR, silver VARCHAR, gold VARCHAR) | Qual país tem uma prata de 1, um ouro de 0, e um total de 1? |
77,270 | SELECT bronze FROM table_name_66 WHERE rank = "37" | Which bronze has a Rank of 37? | CREATE TABLE table_name_66 (bronze VARCHAR, rank VARCHAR) | Qual bronze tem um Rank de 37? |
77,271 | SELECT silver FROM table_name_76 WHERE bronze = "1" AND total = "4" AND nation = "slovakia" | Which silver has a Bronze of 1, a Total of 4, and a Nation of slovakia? | CREATE TABLE table_name_76 (silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR) | Qual prata tem um bronze de 1, um total de 4, e uma nação de eslováquia? |
77,272 | SELECT MIN(laps) FROM table_name_16 WHERE qual = "138.750" | What car had the fewest laps with a qual of 138.750? | CREATE TABLE table_name_16 (laps INTEGER, qual VARCHAR) | Qual carro teve o menor número de voltas com 138,750? |
77,273 | SELECT laps FROM table_name_3 WHERE qual = "138.750" | How many laps were there for the car with a qual of 138.750? | CREATE TABLE table_name_3 (laps VARCHAR, qual VARCHAR) | Quantas voltas havia para o carro com um valor de 138.750? |
77,274 | SELECT rank FROM table_name_72 WHERE qual = "134.288" | For the car with a qual of 134.288, what was the rank? | CREATE TABLE table_name_72 (rank VARCHAR, qual VARCHAR) | Para o carro com um qual de 134.288, qual era o rank? |
77,275 | SELECT finish FROM table_name_95 WHERE year = "1953" | What was the finishing place for 1953? | CREATE TABLE table_name_95 (finish VARCHAR, year VARCHAR) | Qual foi o ponto de chegada para 1953? |
77,276 | SELECT name FROM table_name_73 WHERE laid_down = "22 september 1939" AND commissioned = "30 august 1941" | Tell me the name for commissioned of 30 august 1941 and laid down of 22 september 1939 | CREATE TABLE table_name_73 (name VARCHAR, laid_down VARCHAR, commissioned VARCHAR) | Diga-me o nome para comissionado de 30 de agosto de 1941 e estabelecido de 22 de setembro de 1939 |
77,277 | SELECT score FROM table_name_70 WHERE loss = "birkbeck (0–3)" | What is the score when there was a Loss of birkbeck (0–3)? | CREATE TABLE table_name_70 (score VARCHAR, loss VARCHAR) | Qual é a pontuação quando houve uma perda de birkbeck (03)? |
77,278 | SELECT gpu‡ FROM table_name_31 WHERE application = "cushaw" | Which GPU has the cushaw application? | CREATE TABLE table_name_31 (gpu‡ VARCHAR, application VARCHAR) | Qual GPU tem o aplicativo cushaw? |
77,279 | SELECT expected_speed_up† FROM table_name_47 WHERE application = "gpu-hmmer" | What is the expected speed up of the gpu-hmmer application? | CREATE TABLE table_name_47 (expected_speed_up† VARCHAR, application VARCHAR) | Qual é a velocidade esperada da aplicação gpu-hmmer? |
77,280 | SELECT host_team FROM table_name_32 WHERE stadium = "cleveland browns stadium" | Who was the host team at the game at the Cleveland Browns Stadium? | CREATE TABLE table_name_32 (host_team VARCHAR, stadium VARCHAR) | Quem foi o anfitrião do jogo no Cleveland Browns Stadium? |
77,281 | SELECT final_score FROM table_name_94 WHERE visiting_team = "buffalo bills" | What was the final score when the Buffalo Bills were the visiting team? | CREATE TABLE table_name_94 (final_score VARCHAR, visiting_team VARCHAR) | Qual foi a pontuação final quando os Buffalo Bills foram a equipe visitante? |
77,282 | SELECT final_score FROM table_name_27 WHERE visiting_team = "denver broncos" | What was the final score when the Denver Broncos were the visiting team? | CREATE TABLE table_name_27 (final_score VARCHAR, visiting_team VARCHAR) | Qual foi a pontuação final quando o Denver Broncos era a equipe visitante? |
77,283 | SELECT date FROM table_name_48 WHERE stadium = "alltel stadium" AND final_score = "6-20" | What is the date that a game at the Alltel Stadium had a final score of 6-20? | CREATE TABLE table_name_48 (date VARCHAR, stadium VARCHAR, final_score VARCHAR) | Qual é a data em que um jogo no Alltel Stadium teve uma pontuação final de 6-20? |
77,284 | SELECT SUM(2 AS nd_pl) FROM table_name_14 WHERE motorcycle = "ducati 916" AND wins < 7 | How many times was the motorcycle ducati 916 2nd place when wins is less than 7? | CREATE TABLE table_name_14 (motorcycle VARCHAR, wins VARCHAR) | Quantas vezes foi a moto ducati 916 2o lugar quando as vitórias são inferiores a 7? |
77,285 | SELECT catalog FROM table_name_31 WHERE label = "alfa records" AND date = "november 21, 1980" | What Catalog has a label of Alfa records and a date of November 21, 1980? | CREATE TABLE table_name_31 (catalog VARCHAR, label VARCHAR, date VARCHAR) | Qual Catálogo tem um selo de registros Alfa e uma data de 21 de novembro de 1980? |
77,286 | SELECT catalog FROM table_name_68 WHERE format = "ed remaster cd" AND date = "december 19, 2001" | What catalog has a format of ED remaster CD and a date of December 19, 2001? | CREATE TABLE table_name_68 (catalog VARCHAR, format VARCHAR, date VARCHAR) | Que catálogo tem um formato de CD de remasterização ED e uma data de 19 de dezembro de 2001? |
77,287 | SELECT date FROM table_name_35 WHERE label = "alfa records" | What Date has a label of alfa records? | CREATE TABLE table_name_35 (date VARCHAR, label VARCHAR) | Que data tem um rótulo de registros alfa? |
77,288 | SELECT region FROM table_name_46 WHERE label = "alfa records" AND date = "january 23, 1987" | What region has the label of alfa records and the date of January 23, 1987? | CREATE TABLE table_name_46 (region VARCHAR, label VARCHAR, date VARCHAR) | Qual região tem o rótulo de registros alfa e a data de 23 de janeiro de 1987? |
77,289 | SELECT date FROM table_name_72 WHERE format = "cd" AND catalog = "alca-274" | What date has the format of CD and catalog of alca-274? | CREATE TABLE table_name_72 (date VARCHAR, format VARCHAR, catalog VARCHAR) | Que data tem o formato de CD e catálogo de alca-274? |
77,290 | SELECT date FROM table_name_40 WHERE format = "cd" | What date has the format of cd? | CREATE TABLE table_name_40 (date VARCHAR, format VARCHAR) | Que data tem o formato de cd? |
77,291 | SELECT decile FROM table_name_33 WHERE name = "st mary's catholic school" | What is the Decile number for St Mary's Catholic School? | CREATE TABLE table_name_33 (decile VARCHAR, name VARCHAR) | Qual é o número Decil para a Escola Católica de Santa Maria? |
77,292 | SELECT authority FROM table_name_23 WHERE name = "hauturu school" | Which Authority is set for Hauturu School? | CREATE TABLE table_name_23 (authority VARCHAR, name VARCHAR) | Qual autoridade está definida para a Escola Hauturu? |
77,293 | SELECT name FROM table_name_60 WHERE area = "kio kio" | What School is in the kio kio area? | CREATE TABLE table_name_60 (name VARCHAR, area VARCHAR) | Qual escola está na área de Kio Kio? |
77,294 | SELECT race FROM table_name_61 WHERE position = "5th" | What race is in the 5th position? | CREATE TABLE table_name_61 (race VARCHAR, position VARCHAR) | Qual corrida está na 5a posição? |
77,295 | SELECT replica FROM table_name_46 WHERE race = "supersport race 1" | What Replica has a race of supersport race 1? | CREATE TABLE table_name_46 (replica VARCHAR, race VARCHAR) | Que réplica tem uma corrida de corrida supersport 1? |
77,296 | SELECT replica FROM table_name_82 WHERE position = "5th" | What replica has the 5th position? | CREATE TABLE table_name_82 (replica VARCHAR, position VARCHAR) | Qual réplica tem a 5a posição? |
77,297 | SELECT decimal FROM table_name_9 WHERE byte_string = "standard" AND model = "sigma 7" | When a Sigma 7 has a standard byte string, what is the value for the decimal? | CREATE TABLE table_name_9 (decimal VARCHAR, byte_string VARCHAR, model VARCHAR) | Quando um Sigma 7 tem uma cadeia de bytes padrão, qual é o valor para o decimal? |
77,298 | SELECT byte_string FROM table_name_23 WHERE memory_map = "standard" AND decimal = "standard" AND floating_point = "standard" AND max_memory__kwords_ < 512 | What is the value for the byte string when the memory map, decimal, and floating points are all standard and the max memory is smaller than 512? | CREATE TABLE table_name_23 (byte_string VARCHAR, max_memory__kwords_ VARCHAR, floating_point VARCHAR, memory_map VARCHAR, decimal VARCHAR) | Qual é o valor da cadeia de bytes quando o mapa de memória, os pontos decimais e flutuantes são todos padrão e a memória máxima é menor que 512? |
77,299 | SELECT model FROM table_name_90 WHERE byte_string = "standard" AND floating_point = "standard" | What model has both a standard byte string and floating-point? | CREATE TABLE table_name_90 (model VARCHAR, byte_string VARCHAR, floating_point VARCHAR) | Qual modelo tem uma string de byte padrão e um ponto flutuante? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.