Unnamed: 0
int64 0
78.6k
| answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
| translated_answer
stringlengths 12
992
|
---|---|---|---|---|
77,400 | SELECT MIN(wind__m_s_) FROM table_name_16 WHERE nation = "united states" AND athlete = "brenda morehead" | what is the wind speed when brenda morehead was in the united states? | CREATE TABLE table_name_16 (wind__m_s_ INTEGER, nation VARCHAR, athlete VARCHAR) | Qual é a velocidade do vento quando Brenda Morehead estava nos Estados Unidos? |
77,401 | SELECT MAX(rank) FROM table_name_97 WHERE location = "dresden" AND fastest_time__s_ < 10.88 | what is the highest rank in dresden with a time faster than 10.88? | CREATE TABLE table_name_97 (rank INTEGER, location VARCHAR, fastest_time__s_ VARCHAR) | Qual é a classificação mais alta em Dresden com um tempo mais rápido que 10,88? |
77,402 | SELECT course FROM table_name_10 WHERE date = "1 june" | What is the course on 1 June? | CREATE TABLE table_name_10 (course VARCHAR, date VARCHAR) | Qual é o curso em 1o de junho? |
77,403 | SELECT winner FROM table_name_95 WHERE course = "florence to genoa" | Who is the winner of the Florence to Genoa course? | CREATE TABLE table_name_95 (winner VARCHAR, course VARCHAR) | Quem é o vencedor do curso de Florença para Génova? |
77,404 | SELECT date FROM table_name_44 WHERE course = "rome to florence" | What is the date of the Rome to Florence course? | CREATE TABLE table_name_44 (date VARCHAR, course VARCHAR) | Qual é a data do curso de Roma para Florença? |
77,405 | SELECT assists FROM table_name_94 WHERE blocks = "2 tied (1)" AND year > 1995 | What is Assists that has a Blocks of 2 tied (1) with a Year larger than 1995 | CREATE TABLE table_name_94 (assists VARCHAR, blocks VARCHAR, year VARCHAR) | O que é assistências que tem um blocos de 2 empatado (1) com um ano maior do que 1995 |
77,406 | SELECT MAX(lane) FROM table_name_81 WHERE heat = 6 AND time = "dns" | What is the highest lane for heat 6 with a time of dns? | CREATE TABLE table_name_81 (lane INTEGER, heat VARCHAR, time VARCHAR) | Qual é a faixa mais alta para o calor 6 com um tempo de dns? |
77,407 | SELECT MIN(lane) FROM table_name_43 WHERE time = "2:05.90" AND heat > 3 | What is the lowest lane with a time of 2:05.90, and a Heat larger than 3? | CREATE TABLE table_name_43 (lane INTEGER, time VARCHAR, heat VARCHAR) | Qual é a faixa mais baixa com um tempo de 2:05.90, e um calor maior que 3? |
77,408 | SELECT nationality FROM table_name_70 WHERE lane > 4 AND time = "2:00.37" | What nationality has a lane larger than 4 and a Time of 2:00.37? | CREATE TABLE table_name_70 (nationality VARCHAR, lane VARCHAR, time VARCHAR) | Que nacionalidade tem uma faixa maior que 4 e um Tempo de 2:00.37? |
77,409 | SELECT AVG(lane) FROM table_name_57 WHERE nationality = "belarus" | What is the average Lane where Belarus is the nationality? | CREATE TABLE table_name_57 (lane INTEGER, nationality VARCHAR) | Qual é a faixa média onde a Bielorrússia é a nacionalidade? |
77,410 | SELECT MAX(lane) FROM table_name_16 WHERE name = "nisha millet" | What is the highest lane for nisha millet? | CREATE TABLE table_name_16 (lane INTEGER, name VARCHAR) | Qual é a faixa mais alta para o nisha millet? |
77,411 | SELECT date FROM table_name_31 WHERE course = "rome to naples" | On what date was the race course from Rome to Naples? | CREATE TABLE table_name_31 (date VARCHAR, course VARCHAR) | Em que data foi o curso de corrida de Roma a Nápoles? |
77,412 | SELECT losing_bp FROM table_name_72 WHERE played = "22" AND try_bp = "9" | Name the Losing BP with 22 played and 9 Try BP. | CREATE TABLE table_name_72 (losing_bp VARCHAR, played VARCHAR, try_bp VARCHAR) | Nomeie a BP Perdedora com 22 jogadas e 9 Experimente a BP. |
77,413 | SELECT losing_bp FROM table_name_14 WHERE drawn = "1" AND try_bp = "6" | Name the Losing BP with drawn of 1 and a Try BP of 6. | CREATE TABLE table_name_14 (losing_bp VARCHAR, drawn VARCHAR, try_bp VARCHAR) | Nomeie o BP Perdedor com 1 e um BP Experimental de 6. |
77,414 | SELECT losing_bp FROM table_name_14 WHERE lost = "19" AND club = "newport saracens rfc" | Name the Losing BP of Newport Saracens RFC and has a Lost of 19. | CREATE TABLE table_name_14 (losing_bp VARCHAR, lost VARCHAR, club VARCHAR) | Nomear o BP Perdendo de Newport Saracens RFC e tem um Perdido de 19. |
77,415 | SELECT drawn FROM table_name_39 WHERE played = "22" AND club = "ystrad rhondda rfc" | Name the Drawn for Ystrad Rhondda RFC and has Played of 22. | CREATE TABLE table_name_39 (drawn VARCHAR, played VARCHAR, club VARCHAR) | Nomeie o Drawn para Ystrad Rhondda RFC e jogou de 22. |
77,416 | SELECT drawn FROM table_name_60 WHERE lost = "1" | Can you name the drawn with a Lost of 1? | CREATE TABLE table_name_60 (drawn VARCHAR, lost VARCHAR) | Você pode nomear o desenho com um Lost of 1? |
77,417 | SELECT drawn FROM table_name_34 WHERE losing_bp = "8" | With a Losing BP of 8, what is the drawn? | CREATE TABLE table_name_34 (drawn VARCHAR, losing_bp VARCHAR) | Com um BP perdedor de 8, qual é o desenho? |
77,418 | SELECT disposals FROM table_name_84 WHERE marks = "134" | What is the number of disposals when marks is 134? | CREATE TABLE table_name_84 (disposals VARCHAR, marks VARCHAR) | Qual é o número de descartes quando as marcas são 134? |
77,419 | SELECT score1 FROM table_name_9 WHERE match = 42 | What is the Score1 of Match 42? | CREATE TABLE table_name_9 (score1 VARCHAR, match VARCHAR) | Qual é a pontuação 1 do jogo 42? |
77,420 | SELECT date FROM table_name_2 WHERE match > 8 AND ground = "a" AND opponent = "guiseley" | On what date was the match higher than 8 on ground A against Guiseley? | CREATE TABLE table_name_2 (date VARCHAR, opponent VARCHAR, match VARCHAR, ground VARCHAR) | Em que data a partida foi maior que 8 no terreno A contra Guiseley? |
77,421 | SELECT ground FROM table_name_60 WHERE date = "31 jul 2007" | On what ground was the game on 31 Jul 2007? | CREATE TABLE table_name_60 (ground VARCHAR, date VARCHAR) | Em que terreno foi o jogo em 31 de julho de 2007? |
77,422 | SELECT SUM(total) FROM table_name_20 WHERE player = "david toms" | What is the total of David Toms? | CREATE TABLE table_name_20 (total INTEGER, player VARCHAR) | Qual é o total de David Toms? |
77,423 | SELECT AVG(total) FROM table_name_96 WHERE finish = "t10" AND country = "fiji" | What is the average of Fiji with t10 Finish? | CREATE TABLE table_name_96 (total INTEGER, finish VARCHAR, country VARCHAR) | Qual é a média de Fiji com t10 Finish? |
77,424 | SELECT player FROM table_name_60 WHERE year_s__won = "1983" | Who won in 1983? | CREATE TABLE table_name_60 (player VARCHAR, year_s__won VARCHAR) | Quem ganhou em 1983? |
77,425 | SELECT website FROM table_name_89 WHERE language = "english" AND frequency = "daily" | Which english website has a daily frequency ? | CREATE TABLE table_name_89 (website VARCHAR, language VARCHAR, frequency VARCHAR) | Qual site em inglês tem uma frequência diária? |
77,426 | SELECT frequency FROM table_name_70 WHERE city = "nuevo laredo" AND name = "el diario de nuevo laredo" | What is the frequency of the newspaper, el diario de nuevo laredo in the city of nuevo laredo ? | CREATE TABLE table_name_70 (frequency VARCHAR, city VARCHAR, name VARCHAR) | Qual é a frequência do jornal, el diario de nuevo laredo na cidade de nuevo laredo? |
77,427 | SELECT name FROM table_name_17 WHERE website = "liderinformativo.com" | What is the name of the newspaper with the website liderinformativo.com ? | CREATE TABLE table_name_17 (name VARCHAR, website VARCHAR) | Qual é o nome do jornal com o site liderinformativo.com? |
77,428 | SELECT website FROM table_name_77 WHERE language = "english" AND frequency = "online newspaper" | Which website is in english and has the frequency of an online newspaper ? | CREATE TABLE table_name_77 (website VARCHAR, language VARCHAR, frequency VARCHAR) | Qual site está em inglês e tem a frequência de um jornal online? |
77,429 | SELECT city FROM table_name_3 WHERE language = "spanish" AND website = "ultimahora.com" | Which city has spanish news on the website ultimahora.com ? | CREATE TABLE table_name_3 (city VARCHAR, language VARCHAR, website VARCHAR) | Qual cidade tem notícias espanholas no site ultimahora.com? |
77,430 | SELECT MAX(points) FROM table_name_92 WHERE year > 1959 | Which line after 1959 had the highest amount of points? | CREATE TABLE table_name_92 (points INTEGER, year INTEGER) | Qual linha depois de 1959 teve a maior quantidade de pontos? |
77,431 | SELECT MIN(points) FROM table_name_59 WHERE year = 1954 | Which line has the lowest amount of points and a year of 1954? | CREATE TABLE table_name_59 (points INTEGER, year VARCHAR) | Qual linha tem a menor quantidade de pontos e um ano de 1954? |
77,432 | SELECT SUM(points) FROM table_name_59 WHERE entrant = "christy" AND year < 1954 | What is the total amount of points that Christy has in the years before 1954? | CREATE TABLE table_name_59 (points INTEGER, entrant VARCHAR, year VARCHAR) | Qual é a quantidade total de pontos que Christy tem nos anos anteriores a 1954? |
77,433 | SELECT MAX(year) FROM table_name_82 WHERE engine = "offenhauser l4" AND chassis = "kurtis kraft 500c" AND entrant = "federal engineering" | Which is the latest year that has an engine of Offenhauser l4, a chassis of Kurtis Kraft 500c, and the entrant of Federal Engineering? | CREATE TABLE table_name_82 (year INTEGER, entrant VARCHAR, engine VARCHAR, chassis VARCHAR) | Qual é o último ano que tem um motor de Offenhauser l4, um chassi de Kurtis Kraft 500c, e o entrante da Engenharia Federal? |
77,434 | SELECT chassis FROM table_name_76 WHERE year = 1954 | Which chasis was in the year 1954? | CREATE TABLE table_name_76 (chassis VARCHAR, year VARCHAR) | Que chasis foi no ano de 1954? |
77,435 | SELECT final_score FROM table_name_31 WHERE year = 2007 AND competition = "world league" AND town = "novi sad" AND opponent = "italy" | What is the final score in 2007 for the world league in novi sad played against Italy? | CREATE TABLE table_name_31 (final_score VARCHAR, opponent VARCHAR, town VARCHAR, year VARCHAR, competition VARCHAR) | Qual é o resultado final em 2007 para a liga mundial em novi sad jogado contra a Itália? |
77,436 | SELECT competition FROM table_name_56 WHERE town = "budva" AND opponent = "italy" | what is the competition played in budva against italy? | CREATE TABLE table_name_56 (competition VARCHAR, town VARCHAR, opponent VARCHAR) | Qual é a competição disputada no budva contra a itália? |
77,437 | SELECT competition FROM table_name_79 WHERE final_score = "6:5" | what is the competition that had a final score of 6:5? | CREATE TABLE table_name_79 (competition VARCHAR, final_score VARCHAR) | Qual é a competição que teve uma pontuação final de 6:5? |
77,438 | SELECT opponent FROM table_name_90 WHERE year < 2007 AND town = "trieste" | who is the opponent when played in trieste before 2007? | CREATE TABLE table_name_90 (opponent VARCHAR, year VARCHAR, town VARCHAR) | Quem é o adversário quando jogado na tentativa antes de 2007? |
77,439 | SELECT MIN(bonus_pts) FROM table_name_36 WHERE rider = "bob jameson" AND rides < 15 | What was Bob Jameson's lowest bonus where he had less than 15 rides? | CREATE TABLE table_name_36 (bonus_pts INTEGER, rider VARCHAR, rides VARCHAR) | Qual foi o bônus mais baixo de Bob Jameson, onde ele tinha menos de 15 corridas? |
77,440 | SELECT MIN(rides) FROM table_name_92 WHERE bonus_pts < 3 AND matches < 7 | How many rides did it take to get less than 3 bonus pts in no more than 7 matches? | CREATE TABLE table_name_92 (rides INTEGER, bonus_pts VARCHAR, matches VARCHAR) | Quantos passeios foram necessários para obter menos de 3 pts de bônus em não mais do que 7 partidas? |
77,441 | SELECT AVG(total_points) FROM table_name_29 WHERE matches = 34 AND rides = 111 AND bonus_pts > 15 | What is the total for 34 matches with 111 rides, but no more than 15 bonus points? | CREATE TABLE table_name_29 (total_points INTEGER, bonus_pts VARCHAR, matches VARCHAR, rides VARCHAR) | Qual é o total de 34 partidas com 111 corridas, mas não mais do que 15 pontos de bônus? |
77,442 | SELECT COUNT(rides) FROM table_name_16 WHERE total_points < 274 AND rider = "ray day" AND bonus_pts > 3 | How many rides did it take Ray Day to get 274 points in total with less than 3 bonus points? | CREATE TABLE table_name_16 (rides VARCHAR, bonus_pts VARCHAR, total_points VARCHAR, rider VARCHAR) | Quantos passeios levou Ray Day para obter 274 pontos no total com menos de 3 pontos de bônus? |
77,443 | SELECT rider FROM table_name_37 WHERE total_points < 342 AND rides < 76 AND matches = 7 AND bonus_pts > 2 | Which rider had less than 342 points in no more than 76 rides in 7 matches with more than 2 bonus points? | CREATE TABLE table_name_37 (rider VARCHAR, bonus_pts VARCHAR, matches VARCHAR, total_points VARCHAR, rides VARCHAR) | Qual piloto teve menos de 342 pontos em não mais de 76 corridas em 7 partidas com mais de 2 pontos de bônus? |
77,444 | SELECT margin_of_victory FROM table_name_41 WHERE date = "aug 11, 2002" | What is the Margin of victory on aug 11, 2002? | CREATE TABLE table_name_41 (margin_of_victory VARCHAR, date VARCHAR) | Qual é a Margem da vitória em 11 de agosto de 2002? |
77,445 | SELECT date FROM table_name_98 WHERE winning_score = –16(70 - 65 - 65 = 200) | When has a Winning score of –16 (70-65-65=200)? | CREATE TABLE table_name_98 (date VARCHAR, winning_score VARCHAR) | Quando tem uma pontuação de -16 (70-65-65200)? |
77,446 | SELECT margin_of_victory FROM table_name_21 WHERE date = "oct 5, 1997" | What is the Margin of victory on oct 5, 1997? | CREATE TABLE table_name_21 (margin_of_victory VARCHAR, date VARCHAR) | Qual é a Margem da vitória em 5 de outubro de 1997? |
77,447 | SELECT winning_score FROM table_name_93 WHERE date = "oct 22, 2000" | What is the Winning score on oct 22, 2000? | CREATE TABLE table_name_93 (winning_score VARCHAR, date VARCHAR) | Qual é a pontuação de vencedor em 22 de outubro de 2000? |
77,448 | SELECT COUNT(total_viewers) FROM table_name_82 WHERE share = "16.2%" AND episode_no < 1 | How many episodes have a share of 16.2% and an episode number of less than 1? | CREATE TABLE table_name_82 (total_viewers VARCHAR, share VARCHAR, episode_no VARCHAR) | Quantos episódios têm uma quota de 16,2% e um número de episódios inferior a 1? |
77,449 | SELECT 2010 FROM table_name_31 WHERE 2012 = "2r" AND tournament = "french open" | If the French Open tournament had 2r in 2012, what was it in 2010? | CREATE TABLE table_name_31 (tournament VARCHAR) | Se o torneio do Aberto da França teve 2r em 2012, o que foi em 2010? |
77,450 | SELECT 2012 FROM table_name_43 WHERE 2010 = "2r" | Which 2012 tournament had 2r in 2010? | CREATE TABLE table_name_43 (Id VARCHAR) | Qual torneio de 2012 teve 2r em 2010? |
77,451 | SELECT tournament FROM table_name_60 WHERE 2010 = "2r" | Which tournament had 2r in 2010? | CREATE TABLE table_name_60 (tournament VARCHAR) | Qual torneio teve 2r em 2010? |
77,452 | SELECT 2009 FROM table_name_71 WHERE 2012 = "2r" AND tournament = "french open" | If the French Open tournament had 2r in 2012, what was it in 2009? | CREATE TABLE table_name_71 (tournament VARCHAR) | Se o torneio do Aberto da França teve 2r em 2012, o que foi em 2009? |
77,453 | SELECT 2010 FROM table_name_84 WHERE 2012 = "2r" AND tournament = "us open" | If the US Open tournament had 2r in 2012, what was it in 2010? | CREATE TABLE table_name_84 (tournament VARCHAR) | Se o torneio US Open teve 2r em 2012, o que foi em 2010? |
77,454 | SELECT school FROM table_name_56 WHERE team = "senators" | What is the school, when the Team is Senators? | CREATE TABLE table_name_56 (school VARCHAR, team VARCHAR) | O que é a escola, quando a equipe é senadora? |
77,455 | SELECT season_outcome FROM table_name_70 WHERE school = "sussex tech" | What is the Season Outcome, when the School is Sussex Tech? | CREATE TABLE table_name_70 (season_outcome VARCHAR, school VARCHAR) | Qual é o resultado da temporada, quando a escola é Sussex Tech? |
77,456 | SELECT school FROM table_name_15 WHERE team = "golden knights" | What is the School, when the Team is Golden Knights? | CREATE TABLE table_name_15 (school VARCHAR, team VARCHAR) | O que é a Escola, quando a Equipe é Cavaleiro de Ouro? |
77,457 | SELECT venue FROM table_name_2 WHERE result = "5–1" | What is the Venue where the Result is 5–1? | CREATE TABLE table_name_2 (venue VARCHAR, result VARCHAR) | Qual é o local onde o resultado é de 5? |
77,458 | SELECT score FROM table_name_37 WHERE goal > 11 AND competition = "2009 nehru cup" AND date = "24 august 2009" | What was the Score where Goal is larger than 11, and a Competition of 2009 nehru cup, and had a Date of 24 august 2009? | CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR, goal VARCHAR, competition VARCHAR) | Qual foi a Pontuação onde o Gol é maior que 11, e uma Competição da Copa nehru de 2009, e teve uma Data de 24 de agosto de 2009? |
77,459 | SELECT result FROM table_name_68 WHERE goal = 9 | What is the Result where Goal is 9? | CREATE TABLE table_name_68 (result VARCHAR, goal VARCHAR) | Qual é o resultado onde a meta é 9? |
77,460 | SELECT goal FROM table_name_65 WHERE competition = "international friendly" AND result = "2–1" | What was Goal that where Competition of international friendly, and a Result of 2–1? | CREATE TABLE table_name_65 (goal VARCHAR, competition VARCHAR, result VARCHAR) | Qual foi o objetivo onde a competição de amistoso internacional, e um resultado de 2 ? |
77,461 | SELECT competition FROM table_name_59 WHERE score = "3–0" AND goal > 4 | What is the Competition where the Score was 3–0, and the was Goal larger than 4? | CREATE TABLE table_name_59 (competition VARCHAR, score VARCHAR, goal VARCHAR) | Qual foi a competição onde a pontuação foi de 3 a 0, e o gol foi maior que 4? |
77,462 | SELECT population__2009_estimate_ FROM table_name_34 WHERE name = "northeast" | What is the 2009 estimate population of the Northeast? | CREATE TABLE table_name_34 (population__2009_estimate_ VARCHAR, name VARCHAR) | Qual é a população estimada do Nordeste em 2009? |
77,463 | SELECT population__2009_estimate_ FROM table_name_79 WHERE largest_city = "manaus" | What is the 2009 estimate population of the region with Manaus as the largest city? | CREATE TABLE table_name_79 (population__2009_estimate_ VARCHAR, largest_city VARCHAR) | Qual é a população estimada de 2009 da região com Manaus como a maior cidade? |
77,464 | SELECT number_of_states FROM table_name_83 WHERE population__2009_estimate_ = "27,3 million" | How many states has a 2009 estimate population of 27,3 million? | CREATE TABLE table_name_83 (number_of_states VARCHAR, population__2009_estimate_ VARCHAR) | Quantos estados têm uma população estimada em 2009 de 27,3 milhões? |
77,465 | SELECT largest_metropolitan_area FROM table_name_99 WHERE name = "central-west" | What is the largest metropolitan area of the Central-West? | CREATE TABLE table_name_99 (largest_metropolitan_area VARCHAR, name VARCHAR) | Qual é a maior área metropolitana do Centro-Oeste? |
77,466 | SELECT population__2009_estimate_ FROM table_name_11 WHERE largest_city = "manaus" | What is the 2009 estimate population of the region with Manaus as the largest city? | CREATE TABLE table_name_11 (population__2009_estimate_ VARCHAR, largest_city VARCHAR) | Qual é a população estimada de 2009 da região com Manaus como a maior cidade? |
77,467 | SELECT leader_at_the_summit FROM table_name_78 WHERE stage > 14 AND category = 1 AND start = "saint-girons" AND finish = "cauterets" | Who was the leader at the summit when the stage was larger than 14, the category was 1, the start was Saint-Girons, and the finish was Cauterets? | CREATE TABLE table_name_78 (leader_at_the_summit VARCHAR, finish VARCHAR, start VARCHAR, stage VARCHAR, category VARCHAR) | Quem era o líder no cume quando o palco era maior que 14, a categoria era 1, o início era Saint-Girons, e o final era Cauterets? |
77,468 | SELECT MIN(year) FROM table_name_56 WHERE start = "saint-gaudens" AND stage < 15 | What was the earliest year that had a start of Saint-Gaudens and a stage smaller than 15? | CREATE TABLE table_name_56 (year INTEGER, start VARCHAR, stage VARCHAR) | Qual foi o primeiro ano que teve um início de Saint-Gaudens e um estágio menor que 15? |
77,469 | SELECT model FROM table_name_62 WHERE seats = "37-78" | Which Model had 37-78 seats? | CREATE TABLE table_name_62 (model VARCHAR, seats VARCHAR) | Qual modelo tinha 37-78 assentos? |
77,470 | SELECT studio FROM table_name_13 WHERE title = "the oregon trail" | Which studio did The Oregon Trail? | CREATE TABLE table_name_13 (studio VARCHAR, title VARCHAR) | Qual estúdio fez o Oregon Trail? |
77,471 | SELECT title FROM table_name_28 WHERE leading_lady = "muriel evans" | Which title had Muriel Evans as leading lady? | CREATE TABLE table_name_28 (title VARCHAR, leading_lady VARCHAR) | Qual título tinha Muriel Evans como líder? |
77,472 | SELECT leading_lady FROM table_name_96 WHERE title = "the lonely trail" | Who is the leading lady in The Lonely Trail? | CREATE TABLE table_name_96 (leading_lady VARCHAR, title VARCHAR) | Quem é a protagonista de The Lonely Trail? |
77,473 | SELECT leading_lady FROM table_name_71 WHERE studio = "uni" AND director = "frank strayer" | Who was the leading lady for Uni studio and Frank Strayer? | CREATE TABLE table_name_71 (leading_lady VARCHAR, studio VARCHAR, director VARCHAR) | Quem foi a protagonista do estúdio Uni e Frank Strayer? |
77,474 | SELECT title FROM table_name_73 WHERE leading_lady = "ann rutherford" AND director = "joseph kane" | In which title was Ann Rutherford the leading lady for Joseph Kane? | CREATE TABLE table_name_73 (title VARCHAR, leading_lady VARCHAR, director VARCHAR) | Em que título Ann Rutherford era a principal dama de Joseph Kane? |
77,475 | SELECT leading_lady FROM table_name_59 WHERE director = "joseph kane" AND title = "the lonely trail" | Who is the leading lady in The Lonely Trail for Joseph Kane? | CREATE TABLE table_name_59 (leading_lady VARCHAR, director VARCHAR, title VARCHAR) | Quem é a protagonista de The Lonely Trail para Joseph Kane? |
77,476 | SELECT chassis FROM table_name_12 WHERE year < 1960 AND points < 8 | What was the Chassis with less than 8 points before 1960? | CREATE TABLE table_name_12 (chassis VARCHAR, year VARCHAR, points VARCHAR) | O que era o Chassis com menos de 8 pontos antes de 1960? |
77,477 | SELECT chassis FROM table_name_58 WHERE points = 0 | Which Chassis has 0 points? | CREATE TABLE table_name_58 (chassis VARCHAR, points VARCHAR) | Qual Chassis tem 0 pontos? |
77,478 | SELECT SUM(points) FROM table_name_85 WHERE year > 1957 | What were the total Pints after 1957? | CREATE TABLE table_name_85 (points INTEGER, year INTEGER) | Quais foram os Pints totais depois de 1957? |
77,479 | SELECT MAX(year) FROM table_name_41 WHERE entrant = "dean van lines" | What was the most recent year for Dean Van Lines? | CREATE TABLE table_name_41 (year INTEGER, entrant VARCHAR) | Qual foi o ano mais recente para Dean Van Lines? |
77,480 | SELECT gold_coast FROM table_name_58 WHERE auckland = "cancelled" AND adelaide = "yes" | What Gold Coast has Auckland cancelled, and Adelaide yes? | CREATE TABLE table_name_58 (gold_coast VARCHAR, auckland VARCHAR, adelaide VARCHAR) | O que a Gold Coast cancelou em Auckland e Adelaide sim? |
77,481 | SELECT sydney FROM table_name_73 WHERE auckland = "cancelled" AND perth = "yes" | Which Sydney has Auckland cancelled and Perth yes? | CREATE TABLE table_name_73 (sydney VARCHAR, auckland VARCHAR, perth VARCHAR) | Que Sydney cancelou Auckland e Perth, sim? |
77,482 | SELECT sydney FROM table_name_39 WHERE gold_coast = "no" AND adelaide = "no" AND auckland = "no" | Which Sydney has Gold Coast no, Adelaide no< and Auckland no? | CREATE TABLE table_name_39 (sydney VARCHAR, auckland VARCHAR, gold_coast VARCHAR, adelaide VARCHAR) | Qual Sydney tem Gold Coast não, Adelaide não e Auckland não? |
77,483 | SELECT gold_coast FROM table_name_8 WHERE melbourne = "yes" AND auckland = "yes" | Which Gold Coast has Melbourne yes, and Auckland yes? | CREATE TABLE table_name_8 (gold_coast VARCHAR, melbourne VARCHAR, auckland VARCHAR) | Qual Gold Coast tem Melbourne sim, e Auckland sim? |
77,484 | SELECT perth FROM table_name_50 WHERE auckland = "yes" AND gold_coast = "yes" | Which Perth has Auckland yes and Gold Coast yes? | CREATE TABLE table_name_50 (perth VARCHAR, auckland VARCHAR, gold_coast VARCHAR) | Que Perth tem Auckland sim e Gold Coast sim? |
77,485 | SELECT gold_coast FROM table_name_24 WHERE auckland = "no" AND adelaide = "yes" AND melbourne = "no" | Which Gold Coast has Auckland no, Adelaide yes, and Melbourne no? | CREATE TABLE table_name_24 (gold_coast VARCHAR, melbourne VARCHAR, auckland VARCHAR, adelaide VARCHAR) | Qual Gold Coast tem Auckland não, Adelaide sim, e Melbourne não? |
77,486 | SELECT round FROM table_name_67 WHERE date = "7 january 2003" | What round was on 7 January 2003? | CREATE TABLE table_name_67 (round VARCHAR, date VARCHAR) | Qual foi a ronda de 7 de Janeiro de 2003? |
77,487 | SELECT result_f_a FROM table_name_60 WHERE date = "17 december 2002" | What is the result F_A on 17 December 2002? | CREATE TABLE table_name_60 (result_f_a VARCHAR, date VARCHAR) | Qual é o resultado F_A em 17 de Dezembro de 2002? |
77,488 | SELECT attendance FROM table_name_14 WHERE date = "7 january 2003" | What attendance was on 7 January 2003? | CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR) | Qual foi a participação em 7 de janeiro de 2003? |
77,489 | SELECT recording FROM table_name_86 WHERE year = "2012" | Name the recording for 2012 | CREATE TABLE table_name_86 (recording VARCHAR, year VARCHAR) | Nome da gravação para 2012 |
77,490 | SELECT year FROM table_name_43 WHERE category = "best female pop vocal album" AND result = "won" | Name the year with the best female pop vocal album and result of won | CREATE TABLE table_name_43 (year VARCHAR, category VARCHAR, result VARCHAR) | Nomeie o ano com o melhor álbum vocal pop feminino e o resultado de won |
77,491 | SELECT category FROM table_name_15 WHERE year = "2013" | Name the category for 2013 | CREATE TABLE table_name_15 (category VARCHAR, year VARCHAR) | Nomear a categoria para 2013 |
77,492 | SELECT MIN(gold) FROM table_name_94 WHERE silver < 0 | Which was the lowest gold when silver was smaller than 0? | CREATE TABLE table_name_94 (gold INTEGER, silver INTEGER) | Qual era o ouro mais baixo quando a prata era menor que 0? |
77,493 | SELECT MAX(total) FROM table_name_74 WHERE rank = 6 AND bronze = 2 AND gold > 0 | Which is the highest total at rank 6, bronze 2, and gold larger than 0? | CREATE TABLE table_name_74 (total INTEGER, gold VARCHAR, rank VARCHAR, bronze VARCHAR) | Qual é o total mais alto na posição 6, bronze 2 e ouro maior que 0? |
77,494 | SELECT MAX(bronze) FROM table_name_89 WHERE rank > 5 AND nation = "chinese taipei" AND total < 1 | Which is the highest bronze at Chinese Taipei when the rank was higher than 5 and total was smaller than 1? | CREATE TABLE table_name_89 (bronze INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR) | Qual é o bronze mais alto em Taipé chinês quando a classificação era maior que 5 e o total era menor que 1? |
77,495 | SELECT us_dance FROM table_name_89 WHERE year > 1985 | Name the US dance when the year is more than 1985 | CREATE TABLE table_name_89 (us_dance VARCHAR, year INTEGER) | Nomeie a dança dos EUA quando o ano é mais de 1985 |
77,496 | SELECT us_hot_100 FROM table_name_81 WHERE album = "i like you" | Name the US Hot 100 for album of I like you | CREATE TABLE table_name_81 (us_hot_100 VARCHAR, album VARCHAR) | Nomeie o US Hot 100 para o álbum de I like you |
77,497 | SELECT us_r & b FROM table_name_39 WHERE year = 1981 | Name the US R&B for 1981 | CREATE TABLE table_name_39 (us_r VARCHAR, b VARCHAR, year VARCHAR) | Nomeie o R&B dos EUA para 1981 |
77,498 | SELECT writer_s_ FROM table_name_57 WHERE recipient = "parkville pictures ltd" | Who was the writer when Parkville Pictures Ltd was the recipient? | CREATE TABLE table_name_57 (writer_s_ VARCHAR, recipient VARCHAR) | Quem foi o escritor quando Parkville Pictures Ltd foi o destinatário? |
77,499 | SELECT director_s_ FROM table_name_35 WHERE writer_s_ = "alex winckler" | Alex Winckler wrote the film, who was the director? | CREATE TABLE table_name_35 (director_s_ VARCHAR, writer_s_ VARCHAR) | Alex Winckler escreveu o filme, quem foi o diretor? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.