Unnamed: 0 int64 0 78.6k | answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 | translated_answer stringlengths 12 992 |
|---|---|---|---|---|
73,100 | SELECT score FROM table_name_40 WHERE high_assists = "whalen (5)" | Which Score has a High assists of whalen (5)? | CREATE TABLE table_name_40 (score VARCHAR, high_assists VARCHAR) | Qual pontuação tem uma alta assistências de whalen (5)? |
73,101 | SELECT high_rebounds FROM table_name_94 WHERE game < 9 AND opponent = "detroit" | Which High rebounds has a Game smaller than 9, and a Opponent of detroit? | CREATE TABLE table_name_94 (high_rebounds VARCHAR, game VARCHAR, opponent VARCHAR) | Qual High rebotes tem um jogo menor que 9, e um adversário de detroit? |
73,102 | SELECT high_rebounds FROM table_name_62 WHERE score = "w 81-69" | Which High rebounds has a Score of w 81-69? | CREATE TABLE table_name_62 (high_rebounds VARCHAR, score VARCHAR) | Qual alta rebotes tem uma pontuação de w 81-69? |
73,103 | SELECT surface FROM table_name_10 WHERE result = "fernando verdasco" | Which Surface has a Result of fernando verdasco? | CREATE TABLE table_name_10 (surface VARCHAR, result VARCHAR) | Qual superfície tem um resultado de fernando verdasco? |
73,104 | SELECT NOT COUNT AS event FROM table_name_42 WHERE winner = "clay" | How many events did clay win? | CREATE TABLE table_name_42 (COUNT VARCHAR, winner VARCHAR) | Quantos eventos o Clay ganhou? |
73,105 | SELECT surface FROM table_name_59 WHERE opponent = "rafael nadal" AND NOT event = 2 | Which Surface has an Opponent of rafael nadal, and an Event of 2? | CREATE TABLE table_name_59 (surface VARCHAR, opponent VARCHAR, event VARCHAR) | Qual superfície tem um oposto de rafael nadal, e um evento de 2? |
73,106 | SELECT opponent FROM table_name_7 WHERE result = "iván navarro" | Who is iván navarro's opponent? | CREATE TABLE table_name_7 (opponent VARCHAR, result VARCHAR) | Quem é o adversário de Iván Navarro? |
73,107 | SELECT NOT MAX AS event FROM table_name_23 WHERE surface = "semifinal" AND winner = "hard (i)" | Which Event has a Surface of semifinal, and a Winner of hard (i)? | CREATE TABLE table_name_23 (MAX VARCHAR, surface VARCHAR, winner VARCHAR) | Qual evento tem uma superfície de semifinal, e um vencedor de difícil (i)? |
73,108 | SELECT leader_at_the_summit FROM table_name_82 WHERE year < 1956 AND finish = "carcassonne" | Who was the leader at the summit earlier than 1956, when Carcassonne shows for finish? | CREATE TABLE table_name_82 (leader_at_the_summit VARCHAR, year VARCHAR, finish VARCHAR) | Quem era o líder na cúpula antes de 1956, quando Carcassonne aparece para terminar? |
73,109 | SELECT SUM(year) FROM table_name_90 WHERE finish = "toulouse" AND stage > 12 | What year was finish Toulouse, and stage was larger than 12? | CREATE TABLE table_name_90 (year INTEGER, finish VARCHAR, stage VARCHAR) | Em que ano terminou Toulouse, e o palco foi maior que 12? |
73,110 | SELECT MAX(stage) FROM table_name_36 WHERE year > 1948 AND leader_at_the_summit = "group" AND finish = "bagnères-de-bigorre" | What is the highest stage number for a year later than 1948, leader at the summit was group, and finish was Bagnères-De-Bigorre? | CREATE TABLE table_name_36 (stage INTEGER, finish VARCHAR, year VARCHAR, leader_at_the_summit VARCHAR) | Qual é o maior número de palco para um ano depois de 1948, líder na cúpula foi grupo, e terminar foi Bagnres-De-Bigorre? |
73,111 | SELECT vacator FROM table_name_6 WHERE reason_for_change = "resigned november 10, 1965" | which Vacator has a Reason for change of resigned november 10, 1965? | CREATE TABLE table_name_6 (vacator VARCHAR, reason_for_change VARCHAR) | qual Vacator tem um Motivo para a mudança de resignado 10 de novembro de 1965? |
73,112 | SELECT reason_for_change FROM table_name_54 WHERE state__class_ = "tennessee (2)" | Which Reason has a State (class) of tennessee (2)? | CREATE TABLE table_name_54 (reason_for_change VARCHAR, state__class_ VARCHAR) | Qual Razão tem um Estado (classe) de tennessee (2)? |
73,113 | SELECT state__class_ FROM table_name_54 WHERE successor = "harry f. byrd, jr. (d)" | Which State (class) has a Successor of harry f. byrd, jr. (d)? Question | CREATE TABLE table_name_54 (state__class_ VARCHAR, successor VARCHAR) | Qual Estado (classe) tem um Sucessor de harry f. byrd, jr. (d)? Pergunta |
73,114 | SELECT country FROM table_name_33 WHERE col__m_ = 1374 | Which country has a Col (m) of 1374? | CREATE TABLE table_name_33 (country VARCHAR, col__m_ VARCHAR) | Que país tem um Col (m) de 1374? |
73,115 | SELECT SUM(games) FROM table_name_94 WHERE years_at_club = "1971–1974" AND debut_year > 1971 | How many Games have Years at club of 1971–1974, and a Debut year larger than 1971? | CREATE TABLE table_name_94 (games INTEGER, years_at_club VARCHAR, debut_year VARCHAR) | Quantos Jogos têm Anos no clube de 1971-1974, e um ano de estreia maior do que 1971? |
73,116 | SELECT AVG(games) FROM table_name_89 WHERE years_at_club = "1974–1975" AND goals = 4 | Which Games have Years at club of 1974–1975, and Goals of 4? | CREATE TABLE table_name_89 (games INTEGER, years_at_club VARCHAR, goals VARCHAR) | Quais jogos têm anos no clube de 1974-1975, e gols de 4? |
73,117 | SELECT years_at_club FROM table_name_10 WHERE games < 7 AND goals > 2 AND player = "john frazer" | Which Years at club have Games smaller than 7, and Goals larger than 2, and a Player of john frazer? | CREATE TABLE table_name_10 (years_at_club VARCHAR, player VARCHAR, games VARCHAR, goals VARCHAR) | Quais anos no clube têm jogos menores que 7, gols maiores que 2 e um jogador de john frazer? |
73,118 | SELECT AVG(games) FROM table_name_5 WHERE years_at_club = "1977" AND goals = 17 AND debut_year < 1977 | Which Games have Years at club of 1977, and Goals of 17, and a Debut year smaller than 1977? | CREATE TABLE table_name_5 (games INTEGER, debut_year VARCHAR, years_at_club VARCHAR, goals VARCHAR) | Quais jogos têm anos no clube de 1977, e gols de 17, e um ano de estreia menor que 1977? |
73,119 | SELECT MIN(goals) FROM table_name_57 WHERE games < 41 AND player = "mark amos" | Which Goals have Games smaller than 41, and a Player of mark amos? | CREATE TABLE table_name_57 (goals INTEGER, games VARCHAR, player VARCHAR) | Quais gols têm jogos menores que 41 e um jogador de mark amos? |
73,120 | SELECT SUM(rank) FROM table_name_78 WHERE name = "melaine walker" | What is Melaine Walker's Rank? | CREATE TABLE table_name_78 (rank INTEGER, name VARCHAR) | O que é o Rank de Melaine Walker? |
73,121 | SELECT name FROM table_name_84 WHERE heat = 4 AND rank < 23 AND result = "55.91" | What is the Name of the Player with a Rank of 23 or less, Heat of 4 and Result of 55.91? | CREATE TABLE table_name_84 (name VARCHAR, result VARCHAR, heat VARCHAR, rank VARCHAR) | Qual é o nome do jogador com uma classificação de 23 ou menos, calor de 4 e resultado de 55.91? |
73,122 | SELECT heat FROM table_name_54 WHERE rank < 18 AND result = "55.15" | What is the Heat of the Player with a Rank of 18 or less and Result of 55.15? | CREATE TABLE table_name_54 (heat VARCHAR, rank VARCHAR, result VARCHAR) | Qual é o calor do jogador com uma classificação de 18 ou menos e o resultado de 55.15? |
73,123 | SELECT quantity_preserved FROM table_name_11 WHERE fleet_number_s_ = "3000–3015" | What is the quantity preserved for fleet number(s) 3000–3015? | CREATE TABLE table_name_11 (quantity_preserved VARCHAR, fleet_number_s_ VARCHAR) | Qual é a quantidade preservada para o(s) número(s) de frota 30003015? |
73,124 | SELECT manufacturer FROM table_name_34 WHERE wheel_arrangement = "4-6-6-4" AND class = "z-7" | What manufacturer has a wheel arrangement of 4-6-6-4, and a Class of z-7? | CREATE TABLE table_name_34 (manufacturer VARCHAR, wheel_arrangement VARCHAR, class VARCHAR) | Que fabricante tem um arranjo de roda de 4-6-6-4, e uma classe de z-7? |
73,125 | SELECT year_made FROM table_name_98 WHERE fleet_number_s_ = "5000" | What is the Year for fleet number 5000? | CREATE TABLE table_name_98 (year_made VARCHAR, fleet_number_s_ VARCHAR) | Qual é o ano da frota número 5000? |
73,126 | SELECT year_made FROM table_name_63 WHERE quantity_made = "4" | What year made has a Quantity made of 4? | CREATE TABLE table_name_63 (year_made VARCHAR, quantity_made VARCHAR) | Que ano feito tem uma quantidade feita de 4? |
73,127 | SELECT quantity_preserved FROM table_name_19 WHERE serial_numbers = "mallet and simple articulated locomotives" | What is the quantity preserved for the serial number of mallet and simple articulated locomotives? | CREATE TABLE table_name_19 (quantity_preserved VARCHAR, serial_numbers VARCHAR) | Qual é a quantidade preservada para o número de série de mallet e locomotivas articuladas simples? |
73,128 | SELECT silver FROM table_name_20 WHERE gold > 1 AND total < 97 AND nation = "estonia" | How many silver medals did Estonia, which won more than 1 gold and less than 97 medals total, win? | CREATE TABLE table_name_20 (silver VARCHAR, nation VARCHAR, gold VARCHAR, total VARCHAR) | Quantas medalhas de prata a Estônia, que ganhou mais de 1 ouro e menos de 97 medalhas no total, ganhou? |
73,129 | SELECT MIN(gold) FROM table_name_65 WHERE nation = "denmark" | How many gold medals did Denmark win? | CREATE TABLE table_name_65 (gold INTEGER, nation VARCHAR) | Quantas medalhas de ouro a Dinamarca ganhou? |
73,130 | SELECT COUNT(gold) FROM table_name_59 WHERE bronze > 27 AND total < 305 | What is the total number of gold medals won among nations that won more than 27 bronze and less than 305 medals total? | CREATE TABLE table_name_59 (gold VARCHAR, bronze VARCHAR, total VARCHAR) | Qual é o número total de medalhas de ouro conquistadas entre as nações que ganharam mais de 27 medalhas de bronze e menos de 305 medalhas no total? |
73,131 | SELECT COUNT(gold) FROM table_name_88 WHERE silver > 4 AND bronze > 14 AND total = 97 | How many gold medals were won by the nation that won over 4 silver medals, over 14 bronze, and 97 medals total? | CREATE TABLE table_name_88 (gold VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR) | Quantas medalhas de ouro foram conquistadas pela nação que ganhou mais de 4 medalhas de prata, mais de 14 medalhas de bronze e 97 medalhas no total? |
73,132 | SELECT MAX(championship) FROM table_name_85 WHERE league_cup = 1 AND total = "17" | What is the highest championship that has 1 as the league cup, and 17 as the total? | CREATE TABLE table_name_85 (championship INTEGER, league_cup VARCHAR, total VARCHAR) | Qual é o campeonato mais alto que tem 1 como a taça da liga, e 17 como o total? |
73,133 | SELECT COUNT(league_cup) FROM table_name_70 WHERE fa_cup < 0 | How many league cups have an FA Cup less than 0? | CREATE TABLE table_name_70 (league_cup VARCHAR, fa_cup INTEGER) | Quantas taças da liga têm uma FA Cup menor que 0? |
73,134 | SELECT AVG(rank) FROM table_name_48 WHERE silver > 1 AND gold < 11 AND bronze = 2 AND nation = "west germany (frg)" | What is the average rank of west germany (frg), which has more than 1 silver, less than 11 gold, and 2 bronze medals? | CREATE TABLE table_name_48 (rank INTEGER, nation VARCHAR, bronze VARCHAR, silver VARCHAR, gold VARCHAR) | Qual é a classificação média da Alemanha Ocidental (frg), que tem mais de 1 prata, menos de 11 medalhas de ouro e 2 medalhas de bronze? |
73,135 | SELECT date FROM table_name_82 WHERE nation = "russia" AND place = "beijing, china" AND athlete = "yelena isinbayeva" | What's the date when Yelena Isinbayeva for Russia was in Beijing, China? | CREATE TABLE table_name_82 (date VARCHAR, athlete VARCHAR, nation VARCHAR, place VARCHAR) | Qual é a data em que Yelena Isinbayeva para a Rússia estava em Pequim, China? |
73,136 | SELECT performance FROM table_name_89 WHERE athlete = "dire tune" | What's the performance of Dire Tune? | CREATE TABLE table_name_89 (performance VARCHAR, athlete VARCHAR) | Qual é o desempenho de Dire Tune? |
73,137 | SELECT place FROM table_name_33 WHERE performance = "14:11.15" | What place had 14:11.15 as the performance? | CREATE TABLE table_name_33 (place VARCHAR, performance VARCHAR) | Que lugar tinha 14:11.15 como o desempenho? |
73,138 | SELECT event FROM table_name_51 WHERE nation = "ethiopia" AND performance = "14:11.15" | What's the event that had a performance of 14:11.15 by Ethiopia? | CREATE TABLE table_name_51 (event VARCHAR, nation VARCHAR, performance VARCHAR) | Qual foi o evento que teve uma performance de 14:11.15 pela Etiópia? |
73,139 | SELECT position FROM table_name_96 WHERE pick > 94 AND team = "boston patriots" | What was the position of the player picked after 94, by the Boston Patriots? | CREATE TABLE table_name_96 (position VARCHAR, pick VARCHAR, team VARCHAR) | Qual foi a posição do jogador escolhido após 94, pelo Boston Patriots? |
73,140 | SELECT college FROM table_name_50 WHERE pick = 93 | What college had the 93 pick? | CREATE TABLE table_name_50 (college VARCHAR, pick VARCHAR) | Qual faculdade teve a escolha 93? |
73,141 | SELECT venue FROM table_name_60 WHERE competition = "euro 2004 q." | What venue has euro 2004 q. as the competition? | CREATE TABLE table_name_60 (venue VARCHAR, competition VARCHAR) | Qual é o local que tem o euro 2004 q. como competição? |
73,142 | SELECT county FROM table_name_72 WHERE school = "whiteland community" | What county is Whiteland Community School in? | CREATE TABLE table_name_72 (county VARCHAR, school VARCHAR) | Em que município fica a Whiteland Community School? |
73,143 | SELECT county FROM table_name_25 WHERE ihsaa_football_class = "aaaaa" AND mascot = "grizzly cubs" | What county has a football team in IHSAA class AAAAA and a school macot of the Grizzly Cubs? | CREATE TABLE table_name_25 (county VARCHAR, ihsaa_football_class VARCHAR, mascot VARCHAR) | Que condado tem um time de futebol na classe AAAAA da IHSAA e um macot escolar dos Grizzly Cubs? |
73,144 | SELECT county FROM table_name_71 WHERE mascot = "pioneers" | What county has a school mascot of the Pioneers? | CREATE TABLE table_name_71 (county VARCHAR, mascot VARCHAR) | Que país tem um mascote escolar dos pioneiros? |
73,145 | SELECT ihsaa_class FROM table_name_34 WHERE location = "indianapolis" | What are the IHSAA classes of the Indianapolis schools? | CREATE TABLE table_name_34 (ihsaa_class VARCHAR, location VARCHAR) | Quais são as aulas da IHSAA nas escolas de Indianápolis? |
73,146 | SELECT song FROM table_name_52 WHERE points < 53 AND place > 8 AND draw > 1 | Which Song has Points smaller than 53, and a Place larger than 8, and a Draw larger than 1? | CREATE TABLE table_name_52 (song VARCHAR, draw VARCHAR, points VARCHAR, place VARCHAR) | Qual música tem pontos menores que 53, e um lugar maior que 8, e um empate maior que 1? |
73,147 | SELECT green_communist FROM table_name_64 WHERE left_bloc = "3.6%" | What is the result for the Green-Communist party when the Left Bloc has 3.6%? | CREATE TABLE table_name_64 (green_communist VARCHAR, left_bloc VARCHAR) | Qual é o resultado para o Partido Verde-Comunista quando o Bloco de Esquerda tem 3,6%? |
73,148 | SELECT green_communist FROM table_name_87 WHERE left_bloc = "3.0%" | What is the result for the Green-Communist party when the Left Bloc has 3.0%? | CREATE TABLE table_name_87 (green_communist VARCHAR, left_bloc VARCHAR) | Qual é o resultado para o Partido Verde-Comunista quando o Bloco de Esquerda tem 3,0%? |
73,149 | SELECT date_released FROM table_name_35 WHERE left_bloc = "3.2%" | What is the date released when the Left Bloc had 3.2%? | CREATE TABLE table_name_35 (date_released VARCHAR, left_bloc VARCHAR) | Qual é a data de lançamento quando o Bloco de Esquerda teve 3,2%? |
73,150 | SELECT cardinalatial_order_and_title FROM table_name_26 WHERE elevated = "circa 1116" | What is the cardinalatial order of the elector elevated circa 1116? | CREATE TABLE table_name_26 (cardinalatial_order_and_title VARCHAR, elevated VARCHAR) | Qual é a ordem cardinalícia do eleitor elevado por volta de 1116? |
73,151 | SELECT elevated FROM table_name_13 WHERE nationality = "pisa" | When was the elector from pisa elevated? | CREATE TABLE table_name_13 (elevated VARCHAR, nationality VARCHAR) | Quando o eleitor de Pisa foi elevado? |
73,152 | SELECT cardinalatial_order_and_title FROM table_name_92 WHERE elector = "bosone" | What is the cardinalatial order and title of bosone? | CREATE TABLE table_name_92 (cardinalatial_order_and_title VARCHAR, elector VARCHAR) | Qual é a ordem cardinalícia e o título de bosone? |
73,153 | SELECT elevator FROM table_name_83 WHERE nationality = "crema" | Who is the elevator from crema? | CREATE TABLE table_name_83 (elevator VARCHAR, nationality VARCHAR) | Quem é o elevador do crema? |
73,154 | SELECT name FROM table_name_16 WHERE heat > 4 AND lane = 4 AND nationality = "australia" | What is the name of the swimmer from Australia in lane 4 with a heat larger than 4? | CREATE TABLE table_name_16 (name VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR) | Qual é o nome do nadador da Austrália na pista 4 com um calor maior que 4? |
73,155 | SELECT MIN(heat) FROM table_name_5 WHERE time = "2:34.94" | What is the lowest heat number for a swimmer with a time of 2:34.94? | CREATE TABLE table_name_5 (heat INTEGER, time VARCHAR) | Qual é o menor número de calor para um nadador com um tempo de 2:34.94? |
73,156 | SELECT COUNT(rank) FROM table_name_29 WHERE nationality = "ukraine" AND react < 0.26 | What is the rank of the player from Ukraine with react less than 0.26? | CREATE TABLE table_name_29 (rank VARCHAR, nationality VARCHAR, react VARCHAR) | Qual é a classificação do jogador da Ucrânia com uma reação inferior a 0.26? |
73,157 | SELECT MAX(week) FROM table_name_81 WHERE result = "w 21-17" AND attendance > 45 OFFSET 254 | What was the highest week with a w 21-17 result, and more than 45,254 in attendance? | CREATE TABLE table_name_81 (week INTEGER, result VARCHAR, attendance VARCHAR) | Qual foi a semana mais alta com um resultado de 21-17, e mais de 45.254 participantes? |
73,158 | SELECT proto_germanic FROM table_name_3 WHERE old_english = "/d/" | What's the Proto-Germanic when the Old English is /d/? | CREATE TABLE table_name_3 (proto_germanic VARCHAR, old_english VARCHAR) | O que é o Proto-Germânico quando o inglês antigo é /d/? |
73,159 | SELECT proto_germanic FROM table_name_41 WHERE german = "/s/ or /ts/" | What's the Proto Germanic when then German is /s/ or /ts/? | CREATE TABLE table_name_41 (proto_germanic VARCHAR, german VARCHAR) | O que é o Proto germânico quando então o alemão é /s/ ou /ts/? |
73,160 | SELECT dutch FROM table_name_66 WHERE old_english = "/d/" | What's the Dutch when then Old English is /d/? | CREATE TABLE table_name_66 (dutch VARCHAR, old_english VARCHAR) | O que é o holandês quando então o inglês antigo é /d/? |
73,161 | SELECT west_germanic FROM table_name_90 WHERE german = "/s/ or /ts/" | What's the West Germanic when the German is /s/ or /ts/? | CREATE TABLE table_name_90 (west_germanic VARCHAR, german VARCHAR) | O que é o germânico ocidental quando o alemão é /s/ ou /ts/? |
73,162 | SELECT proto_germanic FROM table_name_48 WHERE german = "/t/" | What's the Proto-Germanic when the German is /t/? | CREATE TABLE table_name_48 (proto_germanic VARCHAR, german VARCHAR) | O que é o proto-germânico quando o alemão é /t/? |
73,163 | SELECT to_par FROM table_name_49 WHERE country = "japan" | What is the to par for japan | CREATE TABLE table_name_49 (to_par VARCHAR, country VARCHAR) | O que é o par para o Japão |
73,164 | SELECT player FROM table_name_4 WHERE money___$__ = "187,500" AND score = 66 - 75 - 71 - 69 = 281 | what player has $187,500 and score 66-75-71-69=281 | CREATE TABLE table_name_4 (player VARCHAR, money___$__ VARCHAR, score VARCHAR) | qual jogador tem $187.500 e pontuação 66-75-71-69281 |
73,165 | SELECT place FROM table_name_74 WHERE score = 66 - 74 - 68 - 73 = 281 | what place has score 66-74-68-73=281 | CREATE TABLE table_name_74 (place VARCHAR, score VARCHAR) | que lugar tem pontuação 66-74-68-73281 |
73,166 | SELECT player FROM table_name_37 WHERE place = "t10" | what player has place t10 | CREATE TABLE table_name_37 (player VARCHAR, place VARCHAR) | o que o jogador tem lugar t10 |
73,167 | SELECT to_par FROM table_name_83 WHERE money___$__ = "242,813" AND score = 68 - 72 - 74 - 66 = 280 | what is the to par for $242,813 with score 68-72-74-66=280 | CREATE TABLE table_name_83 (to_par VARCHAR, money___$__ VARCHAR, score VARCHAR) | qual é o par para $242,813 com pontuação 68-72-74-66280 |
73,168 | SELECT school FROM table_name_59 WHERE size > 408 AND mascot = "pacers" | Which School has a Size larger than 408, and a Mascot of pacers? | CREATE TABLE table_name_59 (school VARCHAR, size VARCHAR, mascot VARCHAR) | Qual escola tem um tamanho maior que 408 e um mascote de pacers? |
73,169 | SELECT SUM(size) FROM table_name_76 WHERE ihsaa_class = "aa" AND location = "milan" | Which Size has an IHSAA Class of aa, and a Location of milan? | CREATE TABLE table_name_76 (size INTEGER, ihsaa_class VARCHAR, location VARCHAR) | Qual tamanho tem uma classe IHSAA de aa, e uma localização de milan? |
73,170 | SELECT county FROM table_name_36 WHERE mascot = "pacers" | Which County has a Mascot of pacers? | CREATE TABLE table_name_36 (county VARCHAR, mascot VARCHAR) | Qual município tem um mascote de pacers? |
73,171 | SELECT mascot FROM table_name_30 WHERE county = "69 ripley" AND ihsaa_class = "aa" AND school = "south ripley" | Which Mascot has a County of 69 ripley, and an IHSAA Class of aa, and a School of south ripley? | CREATE TABLE table_name_30 (mascot VARCHAR, school VARCHAR, county VARCHAR, ihsaa_class VARCHAR) | Qual Mascot tem um Condado de 69 ripley, e uma Classe IHSAA de aa, e uma Escola de ripley sul? |
73,172 | SELECT name FROM table_name_32 WHERE heat = 7 AND lane = 5 | Who was in Lane 5 and had a heat of 7? | CREATE TABLE table_name_32 (name VARCHAR, heat VARCHAR, lane VARCHAR) | Quem estava na pista 5 e teve um calor de 7? |
73,173 | SELECT COUNT(lane) FROM table_name_22 WHERE heat = 4 AND nationality = "hungary" | What lane number was Hungary and had a heat of 4? | CREATE TABLE table_name_22 (lane VARCHAR, heat VARCHAR, nationality VARCHAR) | Que número de faixa era a Hungria e tinha um calor de 4? |
73,174 | SELECT date FROM table_name_77 WHERE score = "690.3" | What's the date when the score was 690.3? | CREATE TABLE table_name_77 (date VARCHAR, score VARCHAR) | Qual é a data em que a pontuação foi 690.3? |
73,175 | SELECT place FROM table_name_94 WHERE comp = "ech" AND date = "1989" | What's the place of 1989 with a comp of ECH? | CREATE TABLE table_name_94 (place VARCHAR, comp VARCHAR, date VARCHAR) | Qual é o lugar de 1989 com uma comp de ECH? |
73,176 | SELECT shooter FROM table_name_59 WHERE score = "686.4" | Who was the shooter with a score of 686.4? | CREATE TABLE table_name_59 (shooter VARCHAR, score VARCHAR) | Quem foi o atirador com uma pontuação de 686.4? |
73,177 | SELECT year FROM table_name_81 WHERE game = "borderlands 2" | what is the year for borderlands 2? | CREATE TABLE table_name_81 (year VARCHAR, game VARCHAR) | Qual é o ano da fronteira 2? |
73,178 | SELECT year FROM table_name_53 WHERE game = "dead space 2" | what is the year for the game dead space 2? | CREATE TABLE table_name_53 (year VARCHAR, game VARCHAR) | Qual é o ano do jogo Dead Space 2? |
73,179 | SELECT developer_s_ FROM table_name_8 WHERE game = "demon's souls" | who is the developers for demon's souls? | CREATE TABLE table_name_8 (developer_s_ VARCHAR, game VARCHAR) | Quem são os criadores das almas dos demônios? |
73,180 | SELECT year FROM table_name_88 WHERE standalone = "zaxxon" | In what year is Zaxxon the Standalone? | CREATE TABLE table_name_88 (year VARCHAR, standalone VARCHAR) | Em que ano é Zaxxon o Standalone? |
73,181 | SELECT standalone FROM table_name_43 WHERE console = "space invaders" | What is the Standalone in the year when Space Invaders is the Console? | CREATE TABLE table_name_43 (standalone VARCHAR, console VARCHAR) | O que é o Standalone no ano em que Space Invaders é o Console? |
73,182 | SELECT standalone FROM table_name_99 WHERE arcade = "tron" | What is the Standalone when Tron is the Arcade? | CREATE TABLE table_name_99 (standalone VARCHAR, arcade VARCHAR) | O que é o Standalone quando Tron é o Arcade? |
73,183 | SELECT console FROM table_name_59 WHERE arcade = "space invaders" | What is the Console when Space Invaders is the Arcade? | CREATE TABLE table_name_59 (console VARCHAR, arcade VARCHAR) | O que é o Console quando Space Invaders é o Arcade? |
73,184 | SELECT position FROM table_name_6 WHERE team = "arizona diamondbacks" | What position does the player from the Arizona Diamondbacks play? | CREATE TABLE table_name_6 (position VARCHAR, team VARCHAR) | Qual posição o jogador do Arizona Diamondbacks joga? |
73,185 | SELECT school FROM table_name_30 WHERE position = "p" AND team = "kansas city royals" AND player = "jay gehrke" | What school did P Jay Gehrke of the Kansas City Royals attend? | CREATE TABLE table_name_30 (school VARCHAR, player VARCHAR, position VARCHAR, team VARCHAR) | Em que escola participou P Jay Gehrke do Kansas City Royals? |
73,186 | SELECT country FROM table_name_31 WHERE athletes = "adam van koeverden" | What country does Adam van Koeverden play for? | CREATE TABLE table_name_31 (country VARCHAR, athletes VARCHAR) | Para que país joga Adam van Koeverden? |
73,187 | SELECT pick FROM table_name_63 WHERE school = "jasper hs (jasper, texas)" | what is the pick when the school is jasper hs (jasper, texas)? | CREATE TABLE table_name_63 (pick VARCHAR, school VARCHAR) | Qual é a escolha quando a escola é jasper hs (jasper, texas)? |
73,188 | SELECT player FROM table_name_99 WHERE position = "p" AND team = "oakland athletics" | who is the player when the position is p and the team is oakland athletics? | CREATE TABLE table_name_99 (player VARCHAR, position VARCHAR, team VARCHAR) | Quem é o jogador quando a posição é p e a equipe é atletismo Oakland? |
73,189 | SELECT school FROM table_name_1 WHERE team = "new york yankees" | what is the school when the team is new york yankees? | CREATE TABLE table_name_1 (school VARCHAR, team VARCHAR) | O que é a escola quando a equipe é nova york yankees? |
73,190 | SELECT player FROM table_name_24 WHERE school = "spring hs (spring, texas)" | who is the player when the school is spring hs (spring, texas)? | CREATE TABLE table_name_24 (player VARCHAR, school VARCHAR) | Quem é o jogador quando a escola é primavera hs (primavera, texas)? |
73,191 | SELECT melamine_content_mg_kg_ FROM table_name_31 WHERE samples_failed > 1 AND product = "英雄牌嬰幼兒配方乳粉" | What's the melamine content of 英雄牌嬰幼兒配方乳粉 having more than 1 samples failed? | CREATE TABLE table_name_31 (melamine_content_mg_kg_ VARCHAR, samples_failed VARCHAR, product VARCHAR) | Qual é o conteúdo de melamina de ter mais de 1 amostras falhou? |
73,192 | SELECT MAX(melamine_content_mg_kg_) FROM table_name_48 WHERE producer = "guangzhou jinding dairy products factory" AND samples_failed > 1 | What's the most melamine content that has more than 1 samples failed and produced by Guangzhou Jinding Dairy Products Factory? | CREATE TABLE table_name_48 (melamine_content_mg_kg_ INTEGER, producer VARCHAR, samples_failed VARCHAR) | Qual é o conteúdo mais melamina que tem mais de 1 amostras falhou e produzido por Guangzhou Jinding Dairy Products Factory? |
73,193 | SELECT product FROM table_name_88 WHERE melamine_content_mg_kg_ < 98.6 AND samples_failed > 1 AND samples_taken < 3 | What's the product that has less than 98.6 melamine content, more than 1 sample failed and took less than 3 samples? | CREATE TABLE table_name_88 (product VARCHAR, samples_taken VARCHAR, melamine_content_mg_kg_ VARCHAR, samples_failed VARCHAR) | Qual é o produto que tem menos de 98.6 conteúdo de melamina, mais de 1 amostra falhou e coletou menos de 3 amostras? |
73,194 | SELECT MAX(samples_failed) FROM table_name_77 WHERE product = "可淇牌嬰幼兒配方乳粉" AND samples_taken < 1 | What the most samples failed for 可淇牌嬰幼兒配方乳粉 and had less than 1 samples taken? | CREATE TABLE table_name_77 (samples_failed INTEGER, product VARCHAR, samples_taken VARCHAR) | O que a maioria das amostras falhou para e teve menos de 1 amostras colhidas? |
73,195 | SELECT SUM(samples_taken) FROM table_name_12 WHERE melamine_content_mg_kg_ < 53.4 AND producer = "qingdao suncare nutritional technology" | How many samples taken from producer Qingdao Suncare Nutritional Technology with a melamine content less than 53.4? | CREATE TABLE table_name_12 (samples_taken INTEGER, melamine_content_mg_kg_ VARCHAR, producer VARCHAR) | Quantas amostras retiradas do produtor Qingdao Suncare Nutritional Technology com um teor de melamina inferior a 53,4? |
73,196 | SELECT score FROM table_name_13 WHERE country = "australia" | What did the golfer from Australia score? | CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR) | O que o jogador de golfe da Austrália fez? |
73,197 | SELECT date FROM table_name_64 WHERE opera = "5.1%" AND internet_explorer = "59.5%" | Which date has an Opera usage percentage of 5.1% and Internet Explorer usage of 59.5%? | CREATE TABLE table_name_64 (date VARCHAR, opera VARCHAR, internet_explorer VARCHAR) | Qual data tem uma porcentagem de uso do Opera de 5,1% e uso do Internet Explorer de 59,5%? |
73,198 | SELECT source FROM table_name_28 WHERE date = "june 2008" | Which source has a date of June 2008? | CREATE TABLE table_name_28 (source VARCHAR, date VARCHAR) | Qual fonte tem data de junho de 2008? |
73,199 | SELECT source FROM table_name_52 WHERE internet_explorer = "60.2%" | Which source date has an Internet Explorer usage of 60.2%? | CREATE TABLE table_name_52 (source VARCHAR, internet_explorer VARCHAR) | Qual data de origem tem um uso do Internet Explorer de 60,2%? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.