Unnamed: 0 int64 0 78.6k | answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 | translated_answer stringlengths 12 992 |
|---|---|---|---|---|
71,800 | SELECT topic_of_the_show FROM table_name_5 WHERE date = "march 15, 2008" | What was the topic of the show on March 15, 2008? | CREATE TABLE table_name_5 (topic_of_the_show VARCHAR, date VARCHAR) | Qual foi o tema do show em 15 de março de 2008? |
71,801 | SELECT AVG(wins) FROM table_name_82 WHERE against > 1244 AND losses < 8 | When against is more than 1244 with less than 8 losses, what is the average of wins? | CREATE TABLE table_name_82 (wins INTEGER, against VARCHAR, losses VARCHAR) | Quando contra é mais de 1244 com menos de 8 perdas, qual é a média de vitórias? |
71,802 | SELECT name FROM table_name_76 WHERE ref_number > 8 AND location = "anawan street" | What is the name of the mill located on Anawan Street with a reference number larger than 8? | CREATE TABLE table_name_76 (name VARCHAR, ref_number VARCHAR, location VARCHAR) | Qual é o nome do moinho localizado na Rua Anawan com um número de referência maior que 8? |
71,803 | SELECT name FROM table_name_7 WHERE ref_number < 55 AND built = 1910 AND construction = "red brick" | What is the name of the mill constructed of red brick in 1910 with a reference number lower than 55? | CREATE TABLE table_name_7 (name VARCHAR, construction VARCHAR, ref_number VARCHAR, built VARCHAR) | Qual é o nome do moinho construído de tijolo vermelho em 1910 com um número de referência inferior a 55? |
71,804 | SELECT location FROM table_name_7 WHERE built < 1872 AND name = "durfee mill no. 1" | What is the location of the Durfee Mill No. 1, built before 1872 ? | CREATE TABLE table_name_7 (location VARCHAR, built VARCHAR, name VARCHAR) | Qual é a localização do Durfee Mill No. 1, construído antes de 1872? |
71,805 | SELECT location FROM table_name_99 WHERE ref_number = 44 | What is the location of the mill with a reference number of 44? | CREATE TABLE table_name_99 (location VARCHAR, ref_number VARCHAR) | Qual é a localização do moinho com um número de referência de 44? |
71,806 | SELECT construction FROM table_name_89 WHERE name__wade_giles_ = "fu-hsing" | Which Construction is named of fu-hsing? | CREATE TABLE table_name_89 (construction VARCHAR, name__wade_giles_ VARCHAR) | Qual construção é chamada de fu-hsing? |
71,807 | SELECT construction FROM table_name_69 WHERE name__wade_giles_ = "heng-hai" | which Construction is named heng-hai? | CREATE TABLE table_name_69 (construction VARCHAR, name__wade_giles_ VARCHAR) | Qual construção se chama heng-hai? |
71,808 | SELECT characters FROM table_name_33 WHERE construction = "1873, foochow navy yard" | Who has a Construction of 1873, foochow navy yard? | CREATE TABLE table_name_33 (characters VARCHAR, construction VARCHAR) | Quem tem uma construção de 1873, pátio da marinha de foochow? |
71,809 | SELECT name__pinyin_ FROM table_name_64 WHERE name__wade_giles_ = "fu-ching" | Which Name (pinyin) is named fu-ching? | CREATE TABLE table_name_64 (name__pinyin_ VARCHAR, name__wade_giles_ VARCHAR) | Qual nome (pinyin) é chamado fu-ching? |
71,810 | SELECT characters FROM table_name_1 WHERE construction = "1870, foochow navy yard" AND name__wade_giles_ = "fu-hsing" | Who has a Construction of 1870, foochow navy yard, and a Name (Wade Giles) of fu-hsing? | CREATE TABLE table_name_1 (characters VARCHAR, construction VARCHAR, name__wade_giles_ VARCHAR) | Quem tem uma construção de 1870, pátio da marinha de foochow, e um nome (Wade Giles) de fu-hsing? |
71,811 | SELECT label FROM table_name_16 WHERE release = "liebesgrüsse aus ost-berlin" | Which Label has a Release of liebesgrüsse aus ost-berlin? | CREATE TABLE table_name_16 (label VARCHAR, release VARCHAR) | Qual rótulo tem uma liberação de liebesgrsse aus ost-berlin? |
71,812 | SELECT SUM(rank) FROM table_name_20 WHERE games_played > 5 | What is the rank of the person with more than 5 games played? | CREATE TABLE table_name_20 (rank INTEGER, games_played INTEGER) | Qual é a classificação da pessoa com mais de 5 jogos jogados? |
71,813 | SELECT COUNT(gold) FROM table_name_61 WHERE bronze > 1 AND silver > 1 AND rank = "total" | How many golds have a bronze greater than 1, a silver greater than 1, with total as the rank? | CREATE TABLE table_name_61 (gold VARCHAR, rank VARCHAR, bronze VARCHAR, silver VARCHAR) | Quantos ouros têm um bronze maior que 1, uma prata maior que 1, com o total como classificação? |
71,814 | SELECT COUNT(gold) FROM table_name_27 WHERE bronze > 1 AND nation = "total" AND silver < 18 | How many golds have a bronze greater than 1, total as the nation, and a silver less than 18? | CREATE TABLE table_name_27 (gold VARCHAR, silver VARCHAR, bronze VARCHAR, nation VARCHAR) | Quantos ouros têm um bronze maior que 1, total como a nação, e uma prata menor que 18? |
71,815 | SELECT SUM(bronze) FROM table_name_51 WHERE nation = "west germany" | How many bronzes have west germany as the nation? | CREATE TABLE table_name_51 (bronze INTEGER, nation VARCHAR) | Quantos bronzes têm a Alemanha Ocidental como nação? |
71,816 | SELECT COUNT(gold) FROM table_name_86 WHERE nation = "denmark" AND total < 1 | How many golds have denmark as the nation, with a total less than 1? | CREATE TABLE table_name_86 (gold VARCHAR, nation VARCHAR, total VARCHAR) | Quantos ouros têm demarcação como a nação, com um total inferior a 1? |
71,817 | SELECT COUNT(total) FROM table_name_60 WHERE gold = 1 AND rank = "12" AND silver > 0 | How many totals have 1 for the gold, 12 for the rank, and a sliver greater than 0? | CREATE TABLE table_name_60 (total VARCHAR, silver VARCHAR, gold VARCHAR, rank VARCHAR) | Quantos totais têm 1 para o ouro, 12 para a classificação e uma fatia maior que 0? |
71,818 | SELECT MIN(silver) FROM table_name_15 WHERE bronze = 1 AND total = 1 AND rank = "17" AND gold < 0 | What is the lowest silver that has 1 for the bronze, 1 as the total, 17 as the rank, with a gold less than 0? | CREATE TABLE table_name_15 (silver INTEGER, gold VARCHAR, rank VARCHAR, bronze VARCHAR, total VARCHAR) | Qual é a prata mais baixa que tem 1 para o bronze, 1 como o total, 17 como a classificação, com um ouro inferior a 0? |
71,819 | SELECT first_publisher FROM table_name_31 WHERE year < 1999 | What is the First Publisher prior to 1999? | CREATE TABLE table_name_31 (first_publisher VARCHAR, year INTEGER) | O que é o primeiro editor antes de 1999? |
71,820 | SELECT isbn FROM table_name_48 WHERE year = 1999 | What is the ISBN in 1999? | CREATE TABLE table_name_48 (isbn VARCHAR, year VARCHAR) | O que é o ISBN em 1999? |
71,821 | SELECT isbn FROM table_name_54 WHERE japanese_title = "霧の訪問者 (kiri no hōmonsha)" | What is the ISBN of Japanese Title of 霧の訪問者 (kiri no hōmonsha)? | CREATE TABLE table_name_54 (isbn VARCHAR, japanese_title VARCHAR) | O que é o ISBN do título japonês de (kiri no hmonsha)? |
71,822 | SELECT first_publisher FROM table_name_8 WHERE year = 2007 | What is the First Publisher in 2007? | CREATE TABLE table_name_8 (first_publisher VARCHAR, year VARCHAR) | O que é o primeiro editor em 2007? |
71,823 | SELECT year FROM table_name_80 WHERE first_publisher = "kodansha novels" AND english_title = "tokyo nightmare" | What is the Year of Kodansha Novels' Tokyo Nightmare? | CREATE TABLE table_name_80 (year VARCHAR, first_publisher VARCHAR, english_title VARCHAR) | Qual é o Ano do Pesadelo de Tóquio da Kodansha Novels? |
71,824 | SELECT AVG(year) FROM table_name_37 WHERE isbn = "isbn 4-06-182042-7" | What Year has an ISBN OF ISBN 4-06-182042-7? | CREATE TABLE table_name_37 (year INTEGER, isbn VARCHAR) | Que ano tem um ISBN de ISBN 4-06-182042-7? |
71,825 | SELECT MIN(bronze) FROM table_name_53 WHERE gold < 0 | What is the bronze number for the nation with less than 0 gold? | CREATE TABLE table_name_53 (bronze INTEGER, gold INTEGER) | Qual é o número de bronze para a nação com menos de 0 ouro? |
71,826 | SELECT january FROM table_name_26 WHERE region = "eastman" | What is the January climate figure for Eastman? | CREATE TABLE table_name_26 (january VARCHAR, region VARCHAR) | Qual é o número climático de janeiro para Eastman? |
71,827 | SELECT city FROM table_name_49 WHERE july = "23/9°c (73/48°f)" | In what city is the July temperature 23/9°c (73/48°f)? | CREATE TABLE table_name_49 (city VARCHAR, july VARCHAR) | Em que cidade é a temperatura de julho 23/9 ° c (73/48 ° f)? |
71,828 | SELECT july FROM table_name_23 WHERE annual_precipitation = "514mm (20.2in)" | What is the July temperature where the annual precipitation is 514mm (20.2in)? | CREATE TABLE table_name_23 (july VARCHAR, annual_precipitation VARCHAR) | Qual é a temperatura de julho onde a precipitação anual é de 514mm (20.2in)? |
71,829 | SELECT july FROM table_name_32 WHERE plant_hardiness_zone = "2b" AND january = "−12/−23°c (10-9°f)" | What is the July temperature where plant hardiness zone is 2B and January figure is −12/−23°c (10-9°f)? | CREATE TABLE table_name_32 (july VARCHAR, plant_hardiness_zone VARCHAR, january VARCHAR) | Qual é a temperatura de julho, onde a zona de resistência da planta é 2B e o valor de janeiro é 12 / 23°c (10-9 ° f)? |
71,830 | SELECT plant_hardiness_zone FROM table_name_36 WHERE region = "northern" AND annual_precipitation = "443mm (17.4in)" | What is the plant hardiness zone in the Northern region where the annual precipitation is 443mm (17.4in)? | CREATE TABLE table_name_36 (plant_hardiness_zone VARCHAR, region VARCHAR, annual_precipitation VARCHAR) | Qual é a zona de resistência às plantas na região norte, onde a precipitação anual é de 443 mm (17,4 pol)? |
71,831 | SELECT city FROM table_name_52 WHERE plant_hardiness_zone = "2b" AND january = "−12/−23°c (10/-9°f)" | In what city is the plant hardiness zone 2B and January temp is −12/−23°c (10/-9°f)? | CREATE TABLE table_name_52 (city VARCHAR, plant_hardiness_zone VARCHAR, january VARCHAR) | Em que cidade é a zona de resistência da planta 2B e janeiro temp é 12 / 23°c (10 / 9°f)? |
71,832 | SELECT total_apps FROM table_name_78 WHERE name = "paul wilson" | What is the Total Apps listing for Paul Wilson? | CREATE TABLE table_name_78 (total_apps VARCHAR, name VARCHAR) | Qual é a lista de aplicativos totais para Paul Wilson? |
71,833 | SELECT winner FROM table_name_84 WHERE course = "milan circuit race" | Who was the winner at Milan Circuit Race? | CREATE TABLE table_name_84 (winner VARCHAR, course VARCHAR) | Quem foi o vencedor da Corrida do Circuito de Milão? |
71,834 | SELECT winner FROM table_name_67 WHERE course = "rest day" | Who was the winner at Rest Day course? | CREATE TABLE table_name_67 (winner VARCHAR, course VARCHAR) | Quem foi o vencedor do Rest Day Course? |
71,835 | SELECT type FROM table_name_39 WHERE course = "sestri levante to riomaggiore" | What's the type on Sestri Levante to Riomaggiore? | CREATE TABLE table_name_39 (type VARCHAR, course VARCHAR) | Qual é o tipo de Sestri Levante para Riomaggiore? |
71,836 | SELECT player FROM table_name_49 WHERE events = 12 | Which player competed in 12 events? | CREATE TABLE table_name_49 (player VARCHAR, events VARCHAR) | Qual jogador competiu em 12 eventos? |
71,837 | SELECT MAX(finishes) FROM table_name_48 WHERE points < 337 AND stage_wins = 2 AND wins > 0 | what is the highest finishes when the points is less than 337, the stage wins is 2 and the wins is more than 0? | CREATE TABLE table_name_48 (finishes INTEGER, wins VARCHAR, points VARCHAR, stage_wins VARCHAR) | Qual é o maior resultado quando os pontos são inferiores a 337, a etapa ganha é 2 e a vitória é maior que 0? |
71,838 | SELECT AVG(starts) FROM table_name_94 WHERE chassis = "focus rs wrc 08" AND finishes > 27 | what is the average starts when the chassis is focus rs wrc 08 and finishes is more than 27? | CREATE TABLE table_name_94 (starts INTEGER, chassis VARCHAR, finishes VARCHAR) | qual é a média começa quando o chassi é foco rs wrc 08 e acabamentos é mais de 27? |
71,839 | SELECT SUM(finishes) FROM table_name_90 WHERE points > 337 AND starts > 26 | what is the finishes when points is more than 337 and starts is more than 26? | CREATE TABLE table_name_90 (finishes INTEGER, points VARCHAR, starts VARCHAR) | Quais são os acabamentos quando os pontos são mais do que 337 e o início é mais do que 26? |
71,840 | SELECT AVG(starts) FROM table_name_35 WHERE podiums > 0 AND stage_wins > 39 AND points > 456 | what is the average starts when the podiums is more than 0, stage wins is more than 39 and points is more than 456? | CREATE TABLE table_name_35 (starts INTEGER, points VARCHAR, podiums VARCHAR, stage_wins VARCHAR) | Qual é a média de partidas quando os pódios são mais de 0, as vitórias em etapas são mais de 39 e os pontos são mais de 456? |
71,841 | SELECT school FROM table_name_35 WHERE mascot = "squires" | Which School has a Mascot of squires? | CREATE TABLE table_name_35 (school VARCHAR, mascot VARCHAR) | Qual escola tem um mascote de escudeiros? |
71,842 | SELECT school FROM table_name_43 WHERE _number___county = "85 wabash" AND ihsaa_football_class = "a" AND mascot = "norsemen" | Which School has a #/ County of 85 wabash, and an IHSAA Football Class of A, and a Mascot of norsemen? | CREATE TABLE table_name_43 (school VARCHAR, mascot VARCHAR, _number___county VARCHAR, ihsaa_football_class VARCHAR) | Qual escola tem um # / Condado de 85 wabash, e uma classe de futebol IHSAA de A, e um mascote de norsemen? |
71,843 | SELECT ihsaa_football_class FROM table_name_99 WHERE school = "whitko" | Which IHSAA Football Class has a School of whitko? | CREATE TABLE table_name_99 (ihsaa_football_class VARCHAR, school VARCHAR) | Qual classe de futebol da IHSAA tem uma escola de whitko? |
71,844 | SELECT ihsaa_football_class FROM table_name_50 WHERE location = "wabash" AND school = "wabash" | Which IHSAA Football Class has a Location of wabash, and a School of wabash? | CREATE TABLE table_name_50 (ihsaa_football_class VARCHAR, location VARCHAR, school VARCHAR) | Qual classe de futebol da IHSAA tem uma localização de wabash e uma escola de wabash? |
71,845 | SELECT AVG(to_par) FROM table_name_88 WHERE player = "davis love iii" AND total > 149 | With a Total of more than 149, what is Davis Love III's To par? | CREATE TABLE table_name_88 (to_par INTEGER, player VARCHAR, total VARCHAR) | Com um total de mais de 149, o que é o par de Davis Love III? |
71,846 | SELECT MIN(total) FROM table_name_87 WHERE year_won > 1993 AND to_par = 6 | What is the Total of the Player with a To par of 6 and Year won after 1993? | CREATE TABLE table_name_87 (total INTEGER, year_won VARCHAR, to_par VARCHAR) | Qual é o total do jogador com um par de 6 e Ano ganhou depois de 1993? |
71,847 | SELECT COUNT(year_won) FROM table_name_93 WHERE player = "davis love iii" AND total < 149 | What is the Year won of Davis Love III with a Total of less than 149? | CREATE TABLE table_name_93 (year_won VARCHAR, player VARCHAR, total VARCHAR) | Qual é o ano ganho de Davis Love III com um total de menos de 149? |
71,848 | SELECT genre FROM table_name_14 WHERE game = "mass effect" | What is the genre of the Mass Effect game? | CREATE TABLE table_name_14 (genre VARCHAR, game VARCHAR) | Qual é o gênero do jogo Mass Effect? |
71,849 | SELECT genre FROM table_name_72 WHERE year = "2006" | What is the genre of the game from 2006? | CREATE TABLE table_name_72 (genre VARCHAR, year VARCHAR) | Qual é o gênero do jogo de 2006? |
71,850 | SELECT genre FROM table_name_85 WHERE developer_s_ = "nintendo ead" | What is the genre of the game developed by Nintendo EAD? | CREATE TABLE table_name_85 (genre VARCHAR, developer_s_ VARCHAR) | Qual é o gênero do jogo desenvolvido pela Nintendo EAD? |
71,851 | SELECT platform_s_ FROM table_name_53 WHERE year = "2006" | What is the platform of the game built in 2006? | CREATE TABLE table_name_53 (platform_s_ VARCHAR, year VARCHAR) | Qual é a plataforma do jogo construído em 2006? |
71,852 | SELECT game FROM table_name_53 WHERE developer_s_ = "ubisoft montreal" | What game was developed by Ubisoft Montreal? | CREATE TABLE table_name_53 (game VARCHAR, developer_s_ VARCHAR) | Qual jogo foi desenvolvido pela Ubisoft Montreal? |
71,853 | SELECT genre FROM table_name_32 WHERE game = "portal 2" | What is the genre for Portal 2? | CREATE TABLE table_name_32 (genre VARCHAR, game VARCHAR) | Qual é o gênero de Portal 2? |
71,854 | SELECT platform_s_ FROM table_name_88 WHERE game = "portal 2" | Which platforms can you play Portal 2 on? | CREATE TABLE table_name_88 (platform_s_ VARCHAR, game VARCHAR) | Em quais plataformas você pode jogar o Portal 2? |
71,855 | SELECT meet FROM table_name_4 WHERE event = "1500m freestyle" | What event had the 1500m freestyle? | CREATE TABLE table_name_4 (meet VARCHAR, event VARCHAR) | Que evento teve o freestyle de 1500m? |
71,856 | SELECT name FROM table_name_92 WHERE country = "italy" AND giro_wins = 0 AND young_rider = 0 AND maglia_rosa < 3 | Who is from italy has 0 giro wins, 0 young rider and less than 3 maglia rosa? | CREATE TABLE table_name_92 (name VARCHAR, maglia_rosa VARCHAR, young_rider VARCHAR, country VARCHAR, giro_wins VARCHAR) | Quem é de Itália tem 0 vitórias de giro, 0 jovem piloto e menos de 3 maglia rosa? |
71,857 | SELECT AVG(bronze) FROM table_name_18 WHERE nation = "united kingdom" AND silver < 0 | How many bronze medals for the United Kingdom when the silver was less than 0? | CREATE TABLE table_name_18 (bronze INTEGER, nation VARCHAR, silver VARCHAR) | Quantas medalhas de bronze para o Reino Unido quando a prata era inferior a 0? |
71,858 | SELECT COUNT(bronze) FROM table_name_65 WHERE total > 2 AND nation = "west germany" | How many bronze medals for West Germany having a total more than 2? | CREATE TABLE table_name_65 (bronze VARCHAR, total VARCHAR, nation VARCHAR) | Quantas medalhas de bronze para a Alemanha Ocidental têm um total de mais de 2? |
71,859 | SELECT MIN(silver) FROM table_name_21 WHERE rank = "11" AND gold < 0 | What is the amount of silver for rank 11 having less than 0 gold? | CREATE TABLE table_name_21 (silver INTEGER, rank VARCHAR, gold VARCHAR) | Qual é a quantidade de prata para a classificação 11 com menos de 0 ouro? |
71,860 | SELECT rank FROM table_name_44 WHERE silver < 3 AND bronze > 1 AND nation = "bulgaria" | What rank is Bulgaria with less than 3 silver and more than 1 bronze? | CREATE TABLE table_name_44 (rank VARCHAR, nation VARCHAR, silver VARCHAR, bronze VARCHAR) | Qual é a classificação da Bulgária com menos de 3 pratas e mais de 1 bronze? |
71,861 | SELECT mountains_classification FROM table_name_60 WHERE stage = "17" | What is the mountains classification when stage is 17? | CREATE TABLE table_name_60 (mountains_classification VARCHAR, stage VARCHAR) | Qual é a classificação das montanhas quando o estágio é 17? |
71,862 | SELECT winner FROM table_name_45 WHERE points_classification = "robbie mcewen" AND mountains_classification = "josé rujano" | Who was the winner when points classification is Robbie Mcewen, and a Mountains classification is José Rujano? | CREATE TABLE table_name_45 (winner VARCHAR, points_classification VARCHAR, mountains_classification VARCHAR) | Quem foi o vencedor quando a classificação de pontos é Robbie Mcewen, e uma classificação de Montanhas é José Rujano? |
71,863 | SELECT trofeo_fast_team FROM table_name_34 WHERE stage = "19" | What is the Trofeo Fast Team when stage is 19? | CREATE TABLE table_name_34 (trofeo_fast_team VARCHAR, stage VARCHAR) | O que é o Trofeo Fast Team quando a etapa é 19? |
71,864 | SELECT points_classification FROM table_name_19 WHERE intergiro_classification = "sven krauß" AND mountains_classification = "koldo gil" AND trofeo_super_team = "liquigas-bianchi" AND stage = "9" | What is the points classification when the Intergiro classification is Sven Krauß, and the mountains classification is koldo gil, Trofeo Super Team is Liquigas-Bianchi, and stage is 9? | CREATE TABLE table_name_19 (points_classification VARCHAR, stage VARCHAR, trofeo_super_team VARCHAR, intergiro_classification VARCHAR, mountains_classification VARCHAR) | Qual é a classificação de pontos quando a classificação Intergiro é Sven Krau, e a classificação de montanhas é koldo gil, Trofeo Super Team é Liquigas-Bianchi, e o estágio é 9? |
71,865 | SELECT intergiro_classification FROM table_name_16 WHERE points_classification = "paolo bettini" AND trofeo_super_team = "davitamon-lotto" AND mountains_classification = "josé rujano" | What is the Intergiro classification when the points classification is Paolo Bettini, Trofeo Super Team is Davitamon-Lotto, and the Mountains classification is José Rujano? | CREATE TABLE table_name_16 (intergiro_classification VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR, trofeo_super_team VARCHAR) | Qual é a classificação Intergiro quando a classificação de pontos é Paolo Bettini, Trofeo Super Team é Davitamon-Lotto, e a classificação Montanhas é José Rujano? |
71,866 | SELECT stage FROM table_name_67 WHERE points_classification = "danilo di luca" AND mountains_classification = "josé rujano" AND general_classification = "danilo di luca" | What is the Stage when the points classification is Danilo Di Luca, Mountains classification is José Rujano, and general classification is Danilo Di Luca? | CREATE TABLE table_name_67 (stage VARCHAR, general_classification VARCHAR, points_classification VARCHAR, mountains_classification VARCHAR) | Qual é o Estágio quando a classificação de pontos é Danilo Di Luca, a classificação de Montanhas é José Rujano, e a classificação geral é Danilo Di Luca? |
71,867 | SELECT AVG(geo_id) FROM table_name_4 WHERE latitude < 46.57958 AND longitude = -102.109898 AND land___sqmi__ > 35.99 | What is the average GEO ID with a latitude less than 46.57958, a latitude of -102.109898 and more than 35.99 square miles of land? | CREATE TABLE table_name_4 (geo_id INTEGER, land___sqmi__ VARCHAR, latitude VARCHAR, longitude VARCHAR) | Qual é a média GEO ID com uma latitude inferior a 46,57958, uma latitude de -102,109898 e mais de 35,99 milhas quadradas de terra? |
71,868 | SELECT geo_id FROM table_name_83 WHERE longitude = -102.693028 | What GEO ID has a longitude of -102.693028? | CREATE TABLE table_name_83 (geo_id VARCHAR, longitude VARCHAR) | Que ID GEO tem uma longitude de -102.693028? |
71,869 | SELECT MAX(latitude) FROM table_name_69 WHERE water__sqmi_ > 0.518 AND longitude < -99.830606 AND pop__2010_ = 18 | What is the highest latitude when there are more than 0.518 square miles of water, a longitude less than -99.830606, and a population of 18? | CREATE TABLE table_name_69 (latitude INTEGER, pop__2010_ VARCHAR, water__sqmi_ VARCHAR, longitude VARCHAR) | Qual é a latitude mais alta quando há mais de 0.518 milhas quadradas de água, uma longitude inferior a -99.830606, e uma população de 18? |
71,870 | SELECT AVG(lane) FROM table_name_30 WHERE nationality = "australia" | What is the average lane for Australia? | CREATE TABLE table_name_30 (lane INTEGER, nationality VARCHAR) | Qual é a faixa média para a Austrália? |
71,871 | SELECT MAX(rank) FROM table_name_54 WHERE name = "josefin lillhage" | What is the highest rank for Josefin Lillhage? | CREATE TABLE table_name_54 (rank INTEGER, name VARCHAR) | Qual é a classificação mais alta para Josefin Lillhage? |
71,872 | SELECT attendance FROM table_name_97 WHERE final = "quarter (1)" | What was the attendance for the final quarter (1)? | CREATE TABLE table_name_97 (attendance VARCHAR, final VARCHAR) | Qual foi a participação no último trimestre (1)? |
71,873 | SELECT stadium FROM table_name_21 WHERE score = "1 - 1 dodd 38'" | What stadium had the score 1 - 1 dodd 38'? | CREATE TABLE table_name_21 (stadium VARCHAR, score VARCHAR) | Qual estádio teve o placar 1 - 1 dodd 38'? |
71,874 | SELECT method FROM table_name_78 WHERE event = "pride 17" | What method was used in the Pride 17 event? | CREATE TABLE table_name_78 (method VARCHAR, event VARCHAR) | Que método foi usado no evento Pride 17? |
71,875 | SELECT rank FROM table_name_57 WHERE highest_floor > 50 | What is the Rank of the building that has a Highest floor larger than 50? | CREATE TABLE table_name_57 (rank VARCHAR, highest_floor INTEGER) | Qual é o Rank do edifício que tem um andar mais alto maior que 50? |
71,876 | SELECT MAX(free) FROM table_name_87 WHERE total = 81.167 AND rank > 23 | what is the most free when the total is 81.167 and the rank is higher than 23? | CREATE TABLE table_name_87 (free INTEGER, total VARCHAR, rank VARCHAR) | Qual é o mais livre quando o total é 81,167 e a classificação é superior a 23? |
71,877 | SELECT COUNT(tracks) FROM table_name_7 WHERE unformatted_capacity_per_side = "2000kb" | How many tracks have an unformatted capacity per side of 2000kb? | CREATE TABLE table_name_7 (tracks VARCHAR, unformatted_capacity_per_side VARCHAR) | Quantas faixas têm uma capacidade não formatada por lado de 2000kb? |
71,878 | SELECT unformatted_capacity_per_side FROM table_name_42 WHERE size = "8in" | What is the unformatted capacity per side if the size is 8in? | CREATE TABLE table_name_42 (unformatted_capacity_per_side VARCHAR, size VARCHAR) | Qual é a capacidade não formatada por lado se o tamanho é 8in? |
71,879 | SELECT COUNT(tracks) FROM table_name_93 WHERE density = "single" | How many tracks have a single density? | CREATE TABLE table_name_93 (tracks VARCHAR, density VARCHAR) | Quantas faixas têm uma única densidade? |
71,880 | SELECT elevated FROM table_name_77 WHERE cardinalatial_title = "priest of ss. xii apostoli" | What's listed for Elevatated that has Cardinalatial title of Priest of SS. XII Apostoli? | CREATE TABLE table_name_77 (elevated VARCHAR, cardinalatial_title VARCHAR) | O que está listado para Elevatated que tem título Cardinalatial de Priest of SS. XII Apostoli? |
71,881 | SELECT elector FROM table_name_33 WHERE place_of_birth = "san severino" | What Elector has the Place of birth of San Severino? | CREATE TABLE table_name_33 (elector VARCHAR, place_of_birth VARCHAR) | Qual eleitor tem o local de nascimento de San Severino? |
71,882 | SELECT cardinalatial_title FROM table_name_40 WHERE elevated = "december 18, 1182" AND place_of_birth = "lucca" AND elector = "pandolfo" | What's the Cardinalatial Title has the Elevated of December 18, 1182, the Place of birth of Lucca, and the Electo rof Pandolfo? | CREATE TABLE table_name_40 (cardinalatial_title VARCHAR, elector VARCHAR, elevated VARCHAR, place_of_birth VARCHAR) | Qual é o Título Cardinalatial tem o Elevado de 18 de dezembro de 1182, o Local de nascimento de Lucca, e o Electo rof Pandolfo? |
71,883 | SELECT elevated FROM table_name_25 WHERE cardinalatial_title = "priest of s. eusebio and archbishop of benevento" | What's listed for the Elevated with a Cardinalatial title of Priest of S. Eusebio and Archbishop of Benevento? | CREATE TABLE table_name_25 (elevated VARCHAR, cardinalatial_title VARCHAR) | O que está listado para os Elevados com um título cardinalício de Sacerdote de S. Eusebio e Arcebispo de Benevento? |
71,884 | SELECT elector FROM table_name_4 WHERE place_of_birth = "bavaria" | What Elector has the Place of Birth listed as Bavaria? | CREATE TABLE table_name_4 (elector VARCHAR, place_of_birth VARCHAR) | Qual eleitor tem o local de nascimento listado como Baviera? |
71,885 | SELECT total_apps FROM table_name_16 WHERE league_apps = "41" AND total_goals > 1 | What are the total apps that have 41 as the League apps, with total goals greater than 1? | CREATE TABLE table_name_16 (total_apps VARCHAR, league_apps VARCHAR, total_goals VARCHAR) | Quais são os aplicativos totais que têm 41 como aplicativos da Liga, com metas totais superiores a 1? |
71,886 | SELECT AVG(league_goals) FROM table_name_18 WHERE total_apps = "2 (1)" | What are the average league goals that have 2 (1) as the total apps? | CREATE TABLE table_name_18 (league_goals INTEGER, total_apps VARCHAR) | Quais são os objetivos médios da liga que têm 2 (1) como o total de aplicativos? |
71,887 | SELECT MAX(league_goals) FROM table_name_46 WHERE name = "barry endean" AND fa_cup_apps > 0 | What is the highest league goals that have barry endean as the name, wirh FA cup apps greater than 0? | CREATE TABLE table_name_46 (league_goals INTEGER, name VARCHAR, fa_cup_apps VARCHAR) | Quais são os objetivos mais altos da liga que têm o barry endean como nome, wirh FA Cup apps maiores que 0? |
71,888 | SELECT school FROM table_name_81 WHERE team_name = "panthers" AND year_left = "1968" | Which school left in 1968 and has the team name of Panthers? | CREATE TABLE table_name_81 (school VARCHAR, team_name VARCHAR, year_left VARCHAR) | Qual escola saiu em 1968 e tem o nome de Panthers? |
71,889 | SELECT year_left FROM table_name_89 WHERE school = "north dearborn" | What year did a team from North Dearborn leave? | CREATE TABLE table_name_89 (year_left VARCHAR, school VARCHAR) | Em que ano uma equipe da North Dearborn saiu? |
71,890 | SELECT city FROM table_name_48 WHERE county = "40 jennings" AND school = "north vernon" | Which city has a school of North Vernon and a county of 40 Jennings? | CREATE TABLE table_name_48 (city VARCHAR, county VARCHAR, school VARCHAR) | Qual cidade tem uma escola de North Vernon e um condado de 40 Jennings? |
71,891 | SELECT year_joined FROM table_name_5 WHERE school = "jennings county" | What year did a school from Jennings County join? | CREATE TABLE table_name_5 (year_joined VARCHAR, school VARCHAR) | Em que ano se juntou uma escola do condado de Jennings? |
71,892 | SELECT school FROM table_name_24 WHERE team_name = "red devils" | Which school are the Red Devils from? | CREATE TABLE table_name_24 (school VARCHAR, team_name VARCHAR) | De que escola são os Red Devils? |
71,893 | SELECT school FROM table_name_57 WHERE city = "brookville" | Which school comes from Brookville? | CREATE TABLE table_name_57 (school VARCHAR, city VARCHAR) | Qual escola vem de Brookville? |
71,894 | SELECT MIN(rank) FROM table_name_70 WHERE lane = 3 | What's the lowest rank of Lane 3? | CREATE TABLE table_name_70 (rank INTEGER, lane VARCHAR) | Qual é o nível mais baixo de Lane 3? |
71,895 | SELECT MAX(lane) FROM table_name_62 WHERE time < 24.72 AND rank = 4 | What's the highest lane of rank 4 with a time less than 24.72? | CREATE TABLE table_name_62 (lane INTEGER, time VARCHAR, rank VARCHAR) | Qual é a faixa mais alta do ranking 4 com um tempo inferior a 24,72? |
71,896 | SELECT SUM(time) FROM table_name_50 WHERE lane < 4 AND name = "britta steffen" | What's the time of Britta Steffen in a lane less than 4? | CREATE TABLE table_name_50 (time INTEGER, lane VARCHAR, name VARCHAR) | Qual é o tempo de Britta Steffen em uma faixa de menos de 4? |
71,897 | SELECT MIN(rank) FROM table_name_74 WHERE nationality = "united states" AND time < 24.63 | What's the lowest rank of the United States with a time less than 24.63? | CREATE TABLE table_name_74 (rank INTEGER, nationality VARCHAR, time VARCHAR) | Qual é a classificação mais baixa dos Estados Unidos com um tempo inferior a 24,63? |
71,898 | SELECT duration FROM table_name_98 WHERE soap_opera = "the archers" AND actor = "norman painting" | What's the duration of the Archers with Norman Painting as an actor? | CREATE TABLE table_name_98 (duration VARCHAR, soap_opera VARCHAR, actor VARCHAR) | Qual é a duração dos Archers com Norman Painting como ator? |
71,899 | SELECT duration FROM table_name_45 WHERE soap_opera = "the archers" AND actor = "pauline seville" | What's the duration of the Archers with Pauline Seville acting? | CREATE TABLE table_name_45 (duration VARCHAR, soap_opera VARCHAR, actor VARCHAR) | Qual é a duração dos Arqueiros com Pauline Seville atuando? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.