Unnamed: 0
int64 0
78.6k
| answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
| translated_answer
stringlengths 12
992
|
---|---|---|---|---|
78,000 | SELECT city_of_license FROM table_name_64 WHERE frequency_mhz < 102.3 AND erp_w = 25 | what is the city of license for the station with the frequency mhz less than 102.3 abd erp w of 25? | CREATE TABLE table_name_64 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR) | qual é a cidade de licença para a estação com a frequência mhz inferior a 102,3 abd erp w de 25? |
78,001 | SELECT class FROM table_name_35 WHERE call_sign = "w254ah" | \What is the class of the station with the call sign w254ah? | CREATE TABLE table_name_35 (class VARCHAR, call_sign VARCHAR) | Qual é a classe da estação com o sinal de chamada w254ah? |
78,002 | SELECT class FROM table_name_54 WHERE erp_w > 30 | what is the class of the station with erp w more than 30? | CREATE TABLE table_name_54 (class VARCHAR, erp_w INTEGER) | Qual é a classe da estação com erp w mais de 30? |
78,003 | SELECT MAX(frequency_mhz) FROM table_name_77 WHERE call_sign = "w292cu" | what is the highest frequency mhz with the call sign w292cu? | CREATE TABLE table_name_77 (frequency_mhz INTEGER, call_sign VARCHAR) | Qual é a frequência mais alta mhz com o sinal de chamada w292cu? |
78,004 | SELECT constructor FROM table_name_98 WHERE chassis = "ej15 ej15b" | Which constructor makes the ej15 ej15b chassis? | CREATE TABLE table_name_98 (constructor VARCHAR, chassis VARCHAR) | Qual construtor faz o chassi ej15 ej15b? |
78,005 | SELECT tyre FROM table_name_35 WHERE driver = "pedro de la rosa" | Which tyre is on the car driven by Pedro de la Rosa? | CREATE TABLE table_name_35 (tyre VARCHAR, driver VARCHAR) | Qual pneu está no carro conduzido por Pedro de la Rosa? |
78,006 | SELECT constructor FROM table_name_34 WHERE chassis = "rb1" AND driver = "david coulthard" | Which constructor made the car with a rb1 chassis and which is driven by David Coulthard? | CREATE TABLE table_name_34 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR) | Qual construtor fez o carro com um chassi rb1 e que é conduzido por David Coulthard? |
78,007 | SELECT engine_† FROM table_name_85 WHERE chassis = "c24" AND driver = "jacques villeneuve" | Which constructor manufactured the car with a c24 chassis and which is driven by Jacques Villeneuve? | CREATE TABLE table_name_85 (engine_† VARCHAR, chassis VARCHAR, driver VARCHAR) | Qual construtor fabricou o carro com um chassi c24 e que é conduzido por Jacques Villeneuve? |
78,008 | SELECT region FROM table_name_39 WHERE catalog = "mhcl-20004" | What Region is the MHCL-20004 Catalog? | CREATE TABLE table_name_39 (region VARCHAR, catalog VARCHAR) | Qual é a região do catálogo MHCL-20004? |
78,009 | SELECT region FROM table_name_88 WHERE catalog = "alca-272" | What region is the ALCA-272 Catalog? | CREATE TABLE table_name_88 (region VARCHAR, catalog VARCHAR) | Qual é a região do catálogo ALCA-272? |
78,010 | SELECT label FROM table_name_77 WHERE catalog = "alca-9197" | What label is the ALCA-9197 Catalog? | CREATE TABLE table_name_77 (label VARCHAR, catalog VARCHAR) | Qual é o rótulo do Catálogo ALCA-9197? |
78,011 | SELECT date FROM table_name_82 WHERE catalog = "mhcl-20004" | What date is the MHCL-20004 Catalog? | CREATE TABLE table_name_82 (date VARCHAR, catalog VARCHAR) | Qual é a data do Catálogo MHCL-20004? |
78,012 | SELECT date FROM table_name_88 WHERE format = "ed remaster cd" AND catalog = "toct-24365" | On what date was the Ed Remaster CD and TOCT-24365 Catalog released? | CREATE TABLE table_name_88 (date VARCHAR, format VARCHAR, catalog VARCHAR) | Em que data foi lançado o CD Ed Remaster e o catálogo TOCT-24365? |
78,013 | SELECT identity_ies_ FROM table_name_93 WHERE dvd_volume > 5 | What identities have more than 5 DVD volumes? | CREATE TABLE table_name_93 (identity_ies_ VARCHAR, dvd_volume INTEGER) | Quais identidades têm mais de 5 volumes de DVD? |
78,014 | SELECT dvd_volume FROM table_name_36 WHERE identity_ies_ = "skippy johnson" | How many DVD volumes was identified by Skippy Johnson? | CREATE TABLE table_name_36 (dvd_volume VARCHAR, identity_ies_ VARCHAR) | Quantos volumes de DVD foram identificados por Skippy Johnson? |
78,015 | SELECT score FROM table_name_92 WHERE visitor = "st. louis" | What was the score when St. Louis was the visiting team? | CREATE TABLE table_name_92 (score VARCHAR, visitor VARCHAR) | Qual foi a pontuação quando St. Louis era a equipe visitante? |
78,016 | SELECT decision FROM table_name_85 WHERE visitor = "chicago" | What was the decision when Chicago was the visiting team? | CREATE TABLE table_name_85 (decision VARCHAR, visitor VARCHAR) | Qual foi a decisão quando Chicago era a equipe visitante? |
78,017 | SELECT score FROM table_name_52 WHERE home = "detroit" AND decision = "legace" AND date = "december 3" | What was the score on December 3 when Detroit was the home team and Legace took the decision? | CREATE TABLE table_name_52 (score VARCHAR, date VARCHAR, home VARCHAR, decision VARCHAR) | Qual foi a pontuação em 3 de dezembro, quando Detroit era o time da casa e Legace tomou a decisão? |
78,018 | SELECT record FROM table_name_68 WHERE visitor = "minnesota" | What was the record when Minnesota was the visiting team? | CREATE TABLE table_name_68 (record VARCHAR, visitor VARCHAR) | Qual era o recorde quando Minnesota era a equipe visitante? |
78,019 | SELECT date FROM table_name_3 WHERE catalog = "alca-275" | On what date was the record with catalog ALCA-275 released? | CREATE TABLE table_name_3 (date VARCHAR, catalog VARCHAR) | Em que data foi lançado o disco com o catálogo ALCA-275? |
78,020 | SELECT label FROM table_name_9 WHERE date = "march 25, 1984" | What label released a record on March 25, 1984? | CREATE TABLE table_name_9 (label VARCHAR, date VARCHAR) | Que gravadora lançou um disco em 25 de março de 1984? |
78,021 | SELECT label FROM table_name_83 WHERE date = "december 19, 2001" | What label released a record on December 19, 2001? | CREATE TABLE table_name_83 (label VARCHAR, date VARCHAR) | Que gravadora lançou um disco em 19 de dezembro de 2001? |
78,022 | SELECT catalog FROM table_name_94 WHERE date = "may 27, 2009" | What is the catalog of the record released on May 27, 2009? | CREATE TABLE table_name_94 (catalog VARCHAR, date VARCHAR) | Qual é o catálogo do disco lançado em 27 de maio de 2009? |
78,023 | SELECT date FROM table_name_5 WHERE label = "village records" AND catalog = "vrcl-2205" | On what date was a record from Village Records with catalog VRCL-2205 released? | CREATE TABLE table_name_5 (date VARCHAR, label VARCHAR, catalog VARCHAR) | Em que data foi lançado um disco da Village Records com o catálogo VRCL-2205? |
78,024 | SELECT date FROM table_name_32 WHERE catalog = "alca-275" | On what date was the record with catalog ALCA-275 released? | CREATE TABLE table_name_32 (date VARCHAR, catalog VARCHAR) | Em que data foi lançado o disco com o catálogo ALCA-275? |
78,025 | SELECT MIN(took_office) FROM table_name_70 WHERE name = "yvette alexander" AND up_for_reelection > 2016 | What was the earliest year that Yvette Alexander took office and was up for reelection after 2016? | CREATE TABLE table_name_70 (took_office INTEGER, name VARCHAR, up_for_reelection VARCHAR) | Qual foi o primeiro ano em que Yvette Alexander assumiu o cargo e foi para a reeleição depois de 2016? |
78,026 | SELECT MIN(up_for_reelection) FROM table_name_80 WHERE took_office > 2011 AND position = "chairman" | What is the earliest year a Chairman who took office after 2011 is up for reelection? | CREATE TABLE table_name_80 (up_for_reelection INTEGER, took_office VARCHAR, position VARCHAR) | Qual é o primeiro ano em que um presidente que assumiu o cargo depois de 2011 está pronto para a reeleição? |
78,027 | SELECT year FROM table_name_17 WHERE laps < 36 | What year had less than 36 laps? | CREATE TABLE table_name_17 (year VARCHAR, laps INTEGER) | Que ano teve menos de 36 voltas? |
78,028 | SELECT MAX(laps) FROM table_name_84 WHERE finish = "10" AND qual = "106.185" | What was the most laps with a finish of 10 and qualification of 106.185? | CREATE TABLE table_name_84 (laps INTEGER, finish VARCHAR, qual VARCHAR) | Qual foi o maior número de voltas com um final de 10 e qualificação de 106.185? |
78,029 | SELECT MAX(laps) FROM table_name_38 WHERE qual = "106.185" | What is the most laps with a qualification of 106.185? | CREATE TABLE table_name_38 (laps INTEGER, qual VARCHAR) | Qual é o maior número de voltas com uma qualificação de 106.185? |
78,030 | SELECT year FROM table_name_59 WHERE laps < 64 AND finish = "25" | In what year were laps less than 64 and the finish at 25? | CREATE TABLE table_name_59 (year VARCHAR, laps VARCHAR, finish VARCHAR) | Em que ano as voltas foram inferiores a 64 e a final em 25? |
78,031 | SELECT qual FROM table_name_51 WHERE year = "1932" | What was the qualification in 1932? | CREATE TABLE table_name_51 (qual VARCHAR, year VARCHAR) | Qual foi a qualificação em 1932? |
78,032 | SELECT start FROM table_name_12 WHERE rank = "3" AND year = "1936" | What was the start with a rank of 3 in 1936? | CREATE TABLE table_name_12 (start VARCHAR, rank VARCHAR, year VARCHAR) | Qual foi o início com uma classificação de 3 em 1936? |
78,033 | SELECT agg FROM table_name_47 WHERE team_1 = "al-merrikh" | For a Team 1 of Al-Merrikh, what was the aggregate? | CREATE TABLE table_name_47 (agg VARCHAR, team_1 VARCHAR) | Para uma equipe 1 da Al-Merrikh, qual foi o agregado? |
78,034 | SELECT 2 AS nd_leg FROM table_name_74 WHERE agg = "1-3" | For an aggregate of 1-3, what was the 2nd leg? | CREATE TABLE table_name_74 (agg VARCHAR) | Para um total de 1-3, qual foi a 2a perna? |
78,035 | SELECT 2 AS nd_leg FROM table_name_96 WHERE team_2 = "al-faisaly" | For a team 2 of Al-Faisaly, what was the 2nd leg? | CREATE TABLE table_name_96 (team_2 VARCHAR) | Para uma equipe 2 da Al-Faisaly, qual foi a segunda etapa? |
78,036 | SELECT years FROM table_name_90 WHERE area = "upper hutt" AND authority = "private" | What years is the private school in upper hutt? | CREATE TABLE table_name_90 (years VARCHAR, area VARCHAR, authority VARCHAR) | Que anos é a escola particular na cabana superior? |
78,037 | SELECT name FROM table_name_39 WHERE decile = "7" AND area = "upper hutt" | What school with a decile of 7 is in upper hutt? | CREATE TABLE table_name_39 (name VARCHAR, decile VARCHAR, area VARCHAR) | Que escola com um decil de 7 está na cabana superior? |
78,038 | SELECT authority FROM table_name_58 WHERE gender = "coed" AND area = "pinehaven" | What authority is the coed school in pinehaven? | CREATE TABLE table_name_58 (authority VARCHAR, gender VARCHAR, area VARCHAR) | Que autoridade é a escola de coed em Pinehaven? |
78,039 | SELECT years FROM table_name_96 WHERE name = "plateau school" | What years does plateau school serve? | CREATE TABLE table_name_96 (years VARCHAR, name VARCHAR) | A que anos serve a escola de platô? |
78,040 | SELECT authority FROM table_name_2 WHERE name = "upper valley middle school" | Is Upper valley middle school public or private? | CREATE TABLE table_name_2 (authority VARCHAR, name VARCHAR) | O Upper Valley é público ou privado? |
78,041 | SELECT record FROM table_name_57 WHERE date = "june 13" | What is the record on June 13? | CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR) | Qual é o recorde de 13 de junho? |
78,042 | SELECT MAX(lot_no) FROM table_name_46 WHERE notes = "b4 bogies" AND diagram = 185 | Name the most lot number with notes of b4 bogies and diagram of 185 | CREATE TABLE table_name_46 (lot_no INTEGER, notes VARCHAR, diagram VARCHAR) | Nomeie o número de lote com notas de b4 bogies e diagrama de 185 |
78,043 | SELECT fleet_numbers FROM table_name_10 WHERE diagram = 186 AND lot_no = 30798 | Name the fleet numbers for diagram of 186 and lot number of 30798 | CREATE TABLE table_name_10 (fleet_numbers VARCHAR, diagram VARCHAR, lot_no VARCHAR) | Nomeie os números da frota para o diagrama de 186 e o número do lote de 30798 |
78,044 | SELECT name FROM table_name_36 WHERE direction = "toyohashi east" AND length__km_ = 24.7 | What line is 24.7 km and head towards Toyohashi East? | CREATE TABLE table_name_36 (name VARCHAR, direction VARCHAR, length__km_ VARCHAR) | Qual é a linha de 24,7 km e siga em direção a Toyohashi East? |
78,045 | SELECT record FROM table_name_26 WHERE date = "november 18" | What is the record on November 18? | CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR) | Qual é o recorde de 18 de novembro? |
78,046 | SELECT AVG(attendance) FROM table_name_22 WHERE home = "chicago bears" | What was the average attendance when Chicago Bears were the home team? | CREATE TABLE table_name_22 (attendance INTEGER, home VARCHAR) | Qual foi a média de presença quando o Chicago Bears era o time da casa? |
78,047 | SELECT score FROM table_name_52 WHERE record = "5-4-1" | What is the score when the record is 5-4-1? | CREATE TABLE table_name_52 (score VARCHAR, record VARCHAR) | Qual é a pontuação quando o recorde é 5-4-1? |
78,048 | SELECT MAX(attendance) FROM table_name_63 WHERE record = "1-1-0" | What is the largest number in attendance when the record is 1-1-0? | CREATE TABLE table_name_63 (attendance INTEGER, record VARCHAR) | Qual é o maior número de participantes quando o recorde é de 1-1-0? |
78,049 | SELECT gdp_per_capita__us$_ FROM table_name_77 WHERE population = "56,210,000" | What is the GDP of the nation with 56,210,000 people? | CREATE TABLE table_name_77 (gdp_per_capita__us$_ VARCHAR, population VARCHAR) | Qual é o PIB da nação com 56.210.000 pessoas? |
78,050 | SELECT area__km²_ FROM table_name_11 WHERE gdp_per_capita__us$_ = "11,929" | What is the area of the nation with GDP per capita (US$) of 11,929? | CREATE TABLE table_name_11 (area__km²_ VARCHAR, gdp_per_capita__us$_ VARCHAR) | Qual é a área do país com PIB per capita (US$) de 11.929? |
78,051 | SELECT population FROM table_name_99 WHERE gdp_per_capita__us$_ = "11,929" | What is the population of the nation that has a GDP per capita (US$) of 11,929? | CREATE TABLE table_name_99 (population VARCHAR, gdp_per_capita__us$_ VARCHAR) | Qual é a população da nação que tem um PIB per capita (US$) de 11.929? |
78,052 | SELECT population FROM table_name_31 WHERE area__km²_ = "70,273" | What is the Population of the nation that has an Area (km²) of 70,273? | CREATE TABLE table_name_31 (population VARCHAR, area__km²_ VARCHAR) | Qual é a população da nação que tem uma área (km2) de 70.273? |
78,053 | SELECT population FROM table_name_68 WHERE member_countries = "existing members (1973)" | What is the Population of the nation that has a Member countries consisting of existing members (1973)? | CREATE TABLE table_name_68 (population VARCHAR, member_countries VARCHAR) | Qual é a população da nação que tem um país membro composto por membros existentes (1973)? |
78,054 | SELECT television_network FROM table_name_67 WHERE type_of_network = "community" AND founded = "2002" | What television network, founded in 2002, has a community type of network? | CREATE TABLE table_name_67 (television_network VARCHAR, type_of_network VARCHAR, founded VARCHAR) | Qual rede de televisão, fundada em 2002, tem um tipo de rede comunitária? |
78,055 | SELECT stadium FROM table_name_67 WHERE visiting_team = "green bay packers" | At what stadium did the Green Bay Packers play an away game? | CREATE TABLE table_name_67 (stadium VARCHAR, visiting_team VARCHAR) | Em que estádio os Green Bay Packers jogaram um jogo fora? |
78,056 | SELECT stadium FROM table_name_60 WHERE final_score = "31-28" | At what stadium was the final score 31-28? | CREATE TABLE table_name_60 (stadium VARCHAR, final_score VARCHAR) | Em que estádio foi a pontuação final 31-28? |
78,057 | SELECT host_team FROM table_name_53 WHERE visiting_team = "kansas city chiefs" | Which team hosted the Kansas City Chiefs? | CREATE TABLE table_name_53 (host_team VARCHAR, visiting_team VARCHAR) | Que equipa organizou o Kansas City Chiefs? |
78,058 | SELECT host_team FROM table_name_75 WHERE stadium = "tampa stadium" | What team hosted at Tampa Stadium? | CREATE TABLE table_name_75 (host_team VARCHAR, stadium VARCHAR) | Qual equipe se hospedou no Tampa Stadium? |
78,059 | SELECT score FROM table_name_89 WHERE record = "43-26" | With a record of 43-26, what was the score that game? | CREATE TABLE table_name_89 (score VARCHAR, record VARCHAR) | Com um recorde de 43-26, qual foi a pontuação desse jogo? |
78,060 | SELECT loss FROM table_name_58 WHERE opponent = "tigers" AND date = "june 8" | On June 8, what's the loss when the Blue Jays played the Tigers? | CREATE TABLE table_name_58 (loss VARCHAR, opponent VARCHAR, date VARCHAR) | Em 8 de junho, qual é a perda quando os Blue Jays jogaram os Tigers? |
78,061 | SELECT date FROM table_name_71 WHERE record = "38-22" | What date was the record 38-22? | CREATE TABLE table_name_71 (date VARCHAR, record VARCHAR) | Qual foi a data do recorde 38-22? |
78,062 | SELECT score FROM table_name_77 WHERE record = "39-25" | The game that had a record of 39-25, what was the score? | CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR) | O jogo que teve um recorde de 39-25, qual foi a pontuação? |
78,063 | SELECT runner_up FROM table_name_12 WHERE margin_of_victory = "10 strokes" | Which runner-up has a 10 strokes margin of victory? | CREATE TABLE table_name_12 (runner_up VARCHAR, margin_of_victory VARCHAR) | Qual vice-campeão tem uma margem de vitória de 10 tempos? |
78,064 | SELECT event FROM table_name_66 WHERE time = "0:55" | Which of the events only lasted no more than 0:55? | CREATE TABLE table_name_66 (event VARCHAR, time VARCHAR) | Qual dos eventos durou apenas 0:55? |
78,065 | SELECT event FROM table_name_50 WHERE round = 3 AND opponent = "fernando terere" | Which event only lasted for 3 rounds against Fernando Terere? | CREATE TABLE table_name_50 (event VARCHAR, round VARCHAR, opponent VARCHAR) | Qual evento durou apenas 3 rodadas contra Fernando Terere? |
78,066 | SELECT primary_sponsor_s_ FROM table_name_4 WHERE owner_s_ = "randy humphrey" | What is the Primary Sponsor for the team owned by Randy Humphrey? | CREATE TABLE table_name_4 (primary_sponsor_s_ VARCHAR, owner_s_ VARCHAR) | Qual é o principal patrocinador da equipe de propriedade de Randy Humphrey? |
78,067 | SELECT driver_s_ FROM table_name_57 WHERE owner_s_ = "bob keselowski" | Who is the Driver on Bob Keselowski's team? | CREATE TABLE table_name_57 (driver_s_ VARCHAR, owner_s_ VARCHAR) | Quem é o motorista da equipe de Bob Keselowski? |
78,068 | SELECT team FROM table_name_50 WHERE crew_chief = "walter giles" | Walter Giles is Crew Chief of what team? | CREATE TABLE table_name_50 (team VARCHAR, crew_chief VARCHAR) | Walter Giles é Chefe de Equipe de que equipe? |
78,069 | SELECT club FROM table_name_34 WHERE stadium = "stc krymteplitsia" | What club does the stadium stc krymteplitsia belong to? | CREATE TABLE table_name_34 (club VARCHAR, stadium VARCHAR) | A que clube pertence o estádio stc krymteplitsia? |
78,070 | SELECT qual FROM table_name_61 WHERE year = "1947" | What was Tony Bettenhausen's qualifying time in 1947? | CREATE TABLE table_name_61 (qual VARCHAR, year VARCHAR) | Qual foi o tempo de qualificação de Tony Bettenhausen em 1947? |
78,071 | SELECT year FROM table_name_43 WHERE laps > 200 | Which year did Tony Bettenhausen complete more than 200 laps? | CREATE TABLE table_name_43 (year VARCHAR, laps INTEGER) | Em que ano Tony Bettenhausen completou mais de 200 voltas? |
78,072 | SELECT 2006 FROM table_name_40 WHERE 2003 = "not held" AND 2012 = "a" | What was the value in 2006 when 2003 was not held and 2012 was A? | CREATE TABLE table_name_40 (Id VARCHAR) | Qual foi o valor em 2006 quando 2003 não foi realizado e 2012 foi A? |
78,073 | SELECT 2008 FROM table_name_35 WHERE 2012 = "grand slam tournaments" | What was the 2008 value when 2012 was Grand Slam Tournaments? | CREATE TABLE table_name_35 (Id VARCHAR) | Qual foi o valor de 2008 quando 2012 foi Grand Slam Tournaments? |
78,074 | SELECT 2008 FROM table_name_1 WHERE 2012 = "1r" AND 2010 = "a" AND 2005 = "a" | What was the value in 2008 when 2012 was 1R, 2010 was A, and 2005 was A? | CREATE TABLE table_name_1 (Id VARCHAR) | Qual foi o valor em 2008 quando 2012 foi 1R, 2010 foi A e 2005 foi A? |
78,075 | SELECT 2003 FROM table_name_86 WHERE 2006 = "wta premier mandatory tournaments" | What was the value in 2003 when 2006 was WTA Premier Mandatory Tournaments? | CREATE TABLE table_name_86 (Id VARCHAR) | Qual foi o valor em 2003, quando 2006 foi WTA Premier Torneios obrigatórios? |
78,076 | SELECT 2009 FROM table_name_5 WHERE 2005 = "a" AND tournament = "australian open" | What was the value in 2009 when 2005 was A for the Australian Open? | CREATE TABLE table_name_5 (tournament VARCHAR) | Qual foi o valor em 2009, quando 2005 foi A para o Aberto da Austrália? |
78,077 | SELECT 2012 FROM table_name_83 WHERE 2002 = "q1" AND 2010 = "1r" | What was the value in 2012 when 2002 was Q1 and 2010 was 1R? | CREATE TABLE table_name_83 (Id VARCHAR) | Qual foi o valor em 2012 quando 2002 foi Q1 e 2010 foi 1R? |
78,078 | SELECT type FROM table_name_15 WHERE gnis_id = 1139805 | What type has a GNIS ID of 1139805 | CREATE TABLE table_name_15 (type VARCHAR, gnis_id VARCHAR) | Que tipo tem um GNIS ID de 1139805 |
78,079 | SELECT name FROM table_name_85 WHERE usgs_map = "clear lake" | Which name has a USGS Map of clear lake? | CREATE TABLE table_name_85 (name VARCHAR, usgs_map VARCHAR) | Que nome tem um mapa USGS do lago claro? |
78,080 | SELECT status FROM table_name_31 WHERE name = "norris" | What is the status of Norris? | CREATE TABLE table_name_31 (status VARCHAR, name VARCHAR) | Qual é o status de Norris? |
78,081 | SELECT source FROM table_name_18 WHERE name = "laird" | What is the source for Laird? | CREATE TABLE table_name_18 (source VARCHAR, name VARCHAR) | Qual é a fonte de Laird? |
78,082 | SELECT 1958 AS _cié FROM table_name_69 WHERE class = "s" | What 1958 CIE is class s? | CREATE TABLE table_name_69 (class VARCHAR) | Que CIE 1958 é classe s? |
78,083 | SELECT date_withdrawn FROM table_name_96 WHERE fleet_numbers = "12, 25, 42–46, 50, 70–71, 74–77, 106–107, 129" | What day withdrawn is associated with fleet numbers of 12, 25, 42–46, 50, 70–71, 74–77, 106–107, 129? | CREATE TABLE table_name_96 (date_withdrawn VARCHAR, fleet_numbers VARCHAR) | Em que dia a retirada está associada com números de frota de 12, 25, 42-46, 50, 70-71, 74-77, 106-07, 129? |
78,084 | SELECT player FROM table_name_72 WHERE score = 74 - 74 - 73 - 70 = 291 | Which player has a score of 74-74-73-70=291? | CREATE TABLE table_name_72 (player VARCHAR, score VARCHAR) | Qual jogador tem uma pontuação de 74-74-73-70291? |
78,085 | SELECT AVG(earnings___) AS $__ FROM table_name_58 WHERE country = "united states" AND score = 72 - 68 - 74 - 72 = 286 | What is the average earnings of a United States player who had a score of 72-68-74-72=286? | CREATE TABLE table_name_58 (earnings___ INTEGER, country VARCHAR, score VARCHAR) | Qual é a média de ganhos de um jogador dos Estados Unidos que teve uma pontuação de 72-68-74-72-286? |
78,086 | SELECT attendance FROM table_name_12 WHERE loss = "mercker (3-1)" | What was the attendance at the game that had a loss of Mercker (3-1)? | CREATE TABLE table_name_12 (attendance VARCHAR, loss VARCHAR) | Qual foi a participação no jogo que teve uma perda de Mercker (3-1)? |
78,087 | SELECT attendance FROM table_name_49 WHERE loss = "ayala (6-12)" | What was the attendance at the game that had a loss of Ayala (6-12)? | CREATE TABLE table_name_49 (attendance VARCHAR, loss VARCHAR) | Qual foi a participação no jogo que teve uma perda de Ayala (6-12)? |
78,088 | SELECT loss FROM table_name_65 WHERE score = "9-7" | What was the loss of the game that had a score of 9-7? | CREATE TABLE table_name_65 (loss VARCHAR, score VARCHAR) | Qual foi a perda do jogo que teve uma pontuação de 9-7? |
78,089 | SELECT loss FROM table_name_62 WHERE attendance = "14,691" | What was the loss of the game attended by 14,691? | CREATE TABLE table_name_62 (loss VARCHAR, attendance VARCHAR) | Qual foi a perda do jogo com a participação de 14.691? |
78,090 | SELECT loss FROM table_name_21 WHERE attendance = "29,704" | What was the loss of the game attended by 29,704? | CREATE TABLE table_name_21 (loss VARCHAR, attendance VARCHAR) | Qual foi a perda do jogo com a participação de 29.704? |
78,091 | SELECT winner FROM table_name_66 WHERE location = "clemson, sc" AND date = "november 17, 2012" | What is the Winner, when the Location is Clemson, SC, and when the Date is November 17, 2012? | CREATE TABLE table_name_66 (winner VARCHAR, location VARCHAR, date VARCHAR) | O que é o vencedor, quando a localização é Clemson, SC, e quando a data é 17 de novembro de 2012? |
78,092 | SELECT location FROM table_name_88 WHERE score = "38-29" | What is the Location, when the Score is 38-29? | CREATE TABLE table_name_88 (location VARCHAR, score VARCHAR) | Qual é a localização, quando a pontuação é 38-29? |
78,093 | SELECT location FROM table_name_63 WHERE score = "35-31" | What is the Location, when the Score is 35-31? | CREATE TABLE table_name_63 (location VARCHAR, score VARCHAR) | Qual é a localização, quando a pontuação é 35-31? |
78,094 | SELECT score FROM table_name_67 WHERE location = "clemson, sc" AND winner = "clemson" AND date = "november 11, 2006" | What is the Score, when the Location is Clemson, SC, when the Winner is Clemson, and when the Date is November 11, 2006? | CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, location VARCHAR, winner VARCHAR) | Qual é a Pontuação, quando a Localização é Clemson, SC, quando o Vencedor é Clemson, e quando a Data é 11 de novembro de 2006? |
78,095 | SELECT result FROM table_name_83 WHERE date = "november 16, 1969" | What was the game result on November 16, 1969? | CREATE TABLE table_name_83 (result VARCHAR, date VARCHAR) | Qual foi o resultado do jogo em 16 de novembro de 1969? |
78,096 | SELECT general_classification FROM table_name_99 WHERE stage = "3" | What is the general classification of stage 3 | CREATE TABLE table_name_99 (general_classification VARCHAR, stage VARCHAR) | Qual é a classificação geral da fase 3 |
78,097 | SELECT points_classification FROM table_name_55 WHERE young_rider_classification = "lech piasecki" AND general_classification = "stephen roche" AND winner = "carrera jeans-vagabond" | How many points did lech piasecki, stephen roche, and carrera jeans-vagabond have? | CREATE TABLE table_name_55 (points_classification VARCHAR, winner VARCHAR, young_rider_classification VARCHAR, general_classification VARCHAR) | Quantos pontos lech piasecki, stephen roche e carrera jeans-vagabond tiveram? |
78,098 | SELECT venue FROM table_name_23 WHERE date = "11 september 2012" | What venue was the 11 September 2012 game? | CREATE TABLE table_name_23 (venue VARCHAR, date VARCHAR) | Qual foi o local do jogo de 11 de setembro de 2012? |
78,099 | SELECT MIN(decile) FROM table_name_40 WHERE roll < 3 | What is the lowest Decile for a school with a roll smaller than 3? | CREATE TABLE table_name_40 (decile INTEGER, roll INTEGER) | Qual é o menor Decil para uma escola com um rolo menor que 3? |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.