Unnamed: 0
int64
0
78.6k
answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
translated_answer
stringlengths
12
992
72,900
SELECT AVG(lane) FROM table_name_79 WHERE nationality = "kenya" AND react > 0.212
What is the average lane for Kenya with react larger than 0.212?
CREATE TABLE table_name_79 (lane INTEGER, nationality VARCHAR, react VARCHAR)
Qual é a faixa média para Quênia com reação maior que 0,212?
72,901
SELECT MAX(rank) FROM table_name_34 WHERE athlete = "tim maeyens"
what is the highest rank for tim maeyens?
CREATE TABLE table_name_34 (rank INTEGER, athlete VARCHAR)
Qual é a classificação mais alta para tim maeyens?
72,902
SELECT notes FROM table_name_24 WHERE athlete = "andre vonarburg"
what is the notes for andre vonarburg?
CREATE TABLE table_name_24 (notes VARCHAR, athlete VARCHAR)
Quais são as notas de Andre vonarburg?
72,903
SELECT athlete FROM table_name_13 WHERE country = "greece"
Who is the athlete from greece?
CREATE TABLE table_name_13 (athlete VARCHAR, country VARCHAR)
Quem é o atleta da Grécia?
72,904
SELECT athlete FROM table_name_10 WHERE rank < 2
who is the athlete with the rank smaller than 2?
CREATE TABLE table_name_10 (athlete VARCHAR, rank INTEGER)
Quem é o atleta com a classificação menor que 2?
72,905
SELECT notes FROM table_name_86 WHERE time = "7:38.87"
what is the notes for the athlete with the time of 7:38.87?
CREATE TABLE table_name_86 (notes VARCHAR, time VARCHAR)
quais são as notas para o atleta com o tempo de 7:38.87?
72,906
SELECT SUM(gold) FROM table_name_74 WHERE silver = 4 AND total > 6
What is the sum of the gold medals of the nation with 4 silvers and more than 6 total medals?
CREATE TABLE table_name_74 (gold INTEGER, silver VARCHAR, total VARCHAR)
Qual é a soma das medalhas de ouro da nação com 4 pratas e mais de 6 medalhas totais?
72,907
SELECT MAX(bronze) FROM table_name_4 WHERE nation = "west germany" AND gold > 0
What is the highest number of bronze medals of west germany, which has more than 0 golds?
CREATE TABLE table_name_4 (bronze INTEGER, nation VARCHAR, gold VARCHAR)
Qual é o maior número de medalhas de bronze da Alemanha Ocidental, que tem mais de 0 ouros?
72,908
SELECT AVG(total) FROM table_name_2 WHERE bronze > 2 AND silver > 0 AND nation = "soviet union"
What is the average total medals of the soviet union, which has more than 2 bronze and more than 0 silver medals?
CREATE TABLE table_name_2 (total INTEGER, nation VARCHAR, bronze VARCHAR, silver VARCHAR)
Qual é a média de medalhas totais do sindicato soviético, que tem mais de 2 medalhas de bronze e mais de 0 medalhas de prata?
72,909
SELECT AVG(year) FROM table_name_32 WHERE ship = "europa" AND dates = "14 – 23 october"
What year did the ship Europa, have the dates of 14 – 23 October?
CREATE TABLE table_name_32 (year INTEGER, ship VARCHAR, dates VARCHAR)
Em que ano o navio Europa, tem as datas de 14 a 23 de outubro?
72,910
SELECT days, _hours, _minutes FROM table_name_81 WHERE dates = "21 – 26 october"
What is the Days, hours, minutes for 21 – 26 October?
CREATE TABLE table_name_81 (days VARCHAR, _hours VARCHAR, _minutes VARCHAR, dates VARCHAR)
O que são os Dias, Horas, Minutos para 21 – 26 de Outubro?
72,911
SELECT year_joined FROM table_name_83 WHERE mascot = "vikings"
Which year did the school with the mascot of the Vikings join?
CREATE TABLE table_name_83 (year_joined VARCHAR, mascot VARCHAR)
Em que ano a escola com o mascote dos Vikings se juntou?
72,912
SELECT writer_s_ FROM table_name_64 WHERE recorded_at = "funhouse studios" AND time = "3:27"
Who wrote the album recorded at funhouse studios with a time of 3:27?
CREATE TABLE table_name_64 (writer_s_ VARCHAR, recorded_at VARCHAR, time VARCHAR)
Quem escreveu o álbum gravado em estúdios funhouse com um tempo de 3:27?
72,913
SELECT performer_s_ FROM table_name_45 WHERE recorded_at = "the cabin in the woods studio" AND time = "3:16"
Who performed the song recorded at the Cabin in the Woods Studio with a Time of 3:16?
CREATE TABLE table_name_45 (performer_s_ VARCHAR, recorded_at VARCHAR, time VARCHAR)
Quem cantou a música gravada no Cabin in the Woods Studio com um tempo de 3:16?
72,914
SELECT league_cup_goals FROM table_name_45 WHERE league_cup_apps = "1 (1)"
Which League Cup Goals have a League Cup Apps of 1 (1)?
CREATE TABLE table_name_45 (league_cup_goals VARCHAR, league_cup_apps VARCHAR)
Qual Copa da Liga tem uma Copa da Liga Apps de 1 (1)?
72,915
SELECT fa_cup_apps FROM table_name_90 WHERE total_goals > 6 AND fa_cup_goals < 1
Which FA Cup Apps have Total Goals larger than 6, and an FA Cup Goals smaller than 1?
CREATE TABLE table_name_90 (fa_cup_apps VARCHAR, total_goals VARCHAR, fa_cup_goals VARCHAR)
Quais aplicativos da FA Cup têm Total Goals maior que 6 e um FA Cup Goals menor que 1?
72,916
SELECT COUNT(league_goals) FROM table_name_84 WHERE fa_cup_apps = "0 (1)"
How many League Goals have an FA Cup Apps of 0 (1)?
CREATE TABLE table_name_84 (league_goals VARCHAR, fa_cup_apps VARCHAR)
Quantos gols da Liga têm uma FA Cup Apps de 0 (1)?
72,917
SELECT MIN(round) FROM table_name_55 WHERE player = "will wilcox"
What is the lowest round number in which Will Wilcox was selected?
CREATE TABLE table_name_55 (round INTEGER, player VARCHAR)
Qual é o menor número redondo em que Will Wilcox foi selecionado?
72,918
SELECT player FROM table_name_7 WHERE college = "tennessee-chattanooga"
Which player went to college at Tennessee-Chattanooga?
CREATE TABLE table_name_7 (player VARCHAR, college VARCHAR)
Qual jogador foi para a faculdade em Tennessee-Chattanooga?
72,919
SELECT MIN(col__m_) FROM table_name_88 WHERE elevation__m_ < 1 OFFSET 624
Which Col (m) has an Elevation (m) smaller than 1,624?
CREATE TABLE table_name_88 (col__m_ INTEGER, elevation__m_ INTEGER)
Qual Col (m) tem uma Elevação (m) menor que 1.624?
72,920
SELECT SUM(elevation__m_) FROM table_name_45 WHERE prominence__m_ > 1 OFFSET 754
How much Elevation (m) has a Prominence (m) larger than 1,754?
CREATE TABLE table_name_45 (elevation__m_ INTEGER, prominence__m_ INTEGER)
Quanto Elevação (m) tem uma Proeminência (m) maior que 1.754?
72,921
SELECT MIN(1 AS st_half) FROM table_name_21 WHERE score > 621 AND rank = 35
What is the lowest first half when the score is larger than 621 and the rank 35?
CREATE TABLE table_name_21 (score VARCHAR, rank VARCHAR)
Qual é a menor primeira metade quando a pontuação é maior que 621 e a classificação 35?
72,922
SELECT grid FROM table_name_72 WHERE points > 10 AND time_retired = "+13.7 secs"
Which Grid has Points larger than 10 and a Time/Retired of +13.7 secs?
CREATE TABLE table_name_72 (grid VARCHAR, points VARCHAR, time_retired VARCHAR)
Qual Grade tem Pontos maiores que 10 e um Tempo/Aposentado de +13,7 segundos?
72,923
SELECT team FROM table_name_67 WHERE points = 0 AND grid > 13 AND driver = "alex yoong"
Which Team has Points of 0, a Grid larger than 13, and a Driver of alex yoong?
CREATE TABLE table_name_67 (team VARCHAR, driver VARCHAR, points VARCHAR, grid VARCHAR)
Qual Equipe tem Pontos de 0, uma Grade maior que 13 e um Driver de Alex Yoong?
72,924
SELECT MAX(silver) FROM table_name_75 WHERE rank = "19" AND gold < 2
What is the hioghest amount of silver medals for a nation ranked higher than 19 and less than 2 gold medals?
CREATE TABLE table_name_75 (silver INTEGER, rank VARCHAR, gold VARCHAR)
Qual é a maior quantidade de medalhas de prata para uma nação classificada acima de 19 e menos de 2 medalhas de ouro?
72,925
SELECT nation FROM table_name_67 WHERE silver = 11
What nation finished with 11 silver medals?
CREATE TABLE table_name_67 (nation VARCHAR, silver VARCHAR)
Que país terminou com 11 medalhas de prata?
72,926
SELECT pick FROM table_name_75 WHERE player = "benito cheng"
What is Benito Cheng's Pick number?
CREATE TABLE table_name_75 (pick VARCHAR, player VARCHAR)
Qual é o número de escolha de Benito Cheng?
72,927
SELECT pba_team FROM table_name_42 WHERE player = "richard bachmann"
What is Richard Bachmann's PBA team?
CREATE TABLE table_name_42 (pba_team VARCHAR, player VARCHAR)
O que é a equipe PBA de Richard Bachmann?
72,928
SELECT pick FROM table_name_55 WHERE college = "far eastern" AND player = "johnny abarrientos"
What is Far Eastern College Johnny Abarrientos' Pick number?
CREATE TABLE table_name_55 (pick VARCHAR, college VARCHAR, player VARCHAR)
O que é o Número de Escolha de Johnny Abarrientos do Far Eastern College?
72,929
SELECT home_team FROM table_name_14 WHERE tie_no = "10"
What home team has 10 as the tie no?
CREATE TABLE table_name_14 (home_team VARCHAR, tie_no VARCHAR)
Qual equipe da casa tem 10 como o empate não?
72,930
SELECT score FROM table_name_7 WHERE tie_no = "7"
What is the game score when the tie no is 7?
CREATE TABLE table_name_7 (score VARCHAR, tie_no VARCHAR)
Qual é a pontuação do jogo quando o empate não é 7?
72,931
SELECT away_team FROM table_name_82 WHERE date = "10 january 1979" AND tie_no = "17"
Who was the away team on 10 January 1979 who had a tie no of 17?
CREATE TABLE table_name_82 (away_team VARCHAR, date VARCHAR, tie_no VARCHAR)
Quem foi o time de fora em 10 de janeiro de 1979 que tinha um empate no 17?
72,932
SELECT date FROM table_name_91 WHERE tie_no = "2"
When was the game that has tie no 2?
CREATE TABLE table_name_91 (date VARCHAR, tie_no VARCHAR)
Quando foi o jogo que tem o empate no 2?
72,933
SELECT SUM(round) FROM table_name_44 WHERE event = "golden trophy 1999"
What round did the match at the Golden Trophy 1999 event end?
CREATE TABLE table_name_44 (round INTEGER, event VARCHAR)
Em que rodada terminou a partida no evento Troféu Dourado de 1999?
72,934
SELECT event FROM table_name_33 WHERE record = "8–5–1"
What event had a record of 8–5–1?
CREATE TABLE table_name_33 (event VARCHAR, record VARCHAR)
Que evento teve um recorde de 85?
72,935
SELECT hdr_output___exr_, _hdr, _logluv_, _etc_ FROM table_name_63 WHERE "name" = "name"
What's the HDR Output that has a name of name?
CREATE TABLE table_name_63 (hdr_output___exr_ VARCHAR, _hdr VARCHAR, _logluv_ VARCHAR, _etc_ VARCHAR)
Qual é a saída HDR que tem um nome?
72,936
SELECT exposure_fusion FROM table_name_38 WHERE name = "panoramaplus x4"
What's the exposure fusion of Panoramaplus x4?
CREATE TABLE table_name_38 (exposure_fusion VARCHAR, name VARCHAR)
Qual é a fusão de exposição de Panoramaplus x4?
72,937
SELECT hdr_output___exr_, _hdr, _logluv_, _etc_ FROM table_name_35 WHERE name = "photovista panorama"
What's the HDR output of Photovista Panorama?
CREATE TABLE table_name_35 (hdr_output___exr_ VARCHAR, _hdr VARCHAR, _logluv_ VARCHAR, _etc_ VARCHAR, name VARCHAR)
Qual é a saída HDR do Photovista Panorama?
72,938
SELECT location FROM table_name_72 WHERE capacity = "101,119"
Which location has 101,119 as the capacity?
CREATE TABLE table_name_72 (location VARCHAR, capacity VARCHAR)
Qual local tem 101,119 como capacidade?
72,939
SELECT MIN(rank) FROM table_name_68 WHERE location = "university park, pa"
What is the lowest rank that has university park, pa as the location?
CREATE TABLE table_name_68 (rank INTEGER, location VARCHAR)
Qual é a classificação mais baixa que tem o parque universitário, pa como o local?
72,940
SELECT home_team FROM table_name_13 WHERE rank > 6 AND capacity = "94,392"
What home team has a rank greater than 6, and 94,392 as the capacity?
CREATE TABLE table_name_13 (home_team VARCHAR, rank VARCHAR, capacity VARCHAR)
Qual time da casa tem uma classificação maior que 6, e 94.392 como a capacidade?
72,941
SELECT builder FROM table_name_98 WHERE name = "uss cambridge"
Who was the builder for the USS cambridge?
CREATE TABLE table_name_98 (builder VARCHAR, name VARCHAR)
Quem foi o construtor da ponte do USS?
72,942
SELECT laid_down FROM table_name_17 WHERE name = "uss cambridge"
What year was the USS Cambridge laid down?
CREATE TABLE table_name_17 (laid_down VARCHAR, name VARCHAR)
Em que ano foi estabelecido o USS Cambridge?
72,943
SELECT game FROM table_name_82 WHERE record = "11-12"
What was the number of the game when the record was 11-12?
CREATE TABLE table_name_82 (game VARCHAR, record VARCHAR)
Qual era o número do jogo quando o recorde era de 11-12?
72,944
SELECT score FROM table_name_4 WHERE game = "16"
What was the score of Game 16?
CREATE TABLE table_name_4 (score VARCHAR, game VARCHAR)
Qual foi a pontuação do jogo 16?
72,945
SELECT location_attendance FROM table_name_54 WHERE record = "9-6"
What was the location and attendance at the game when the record was 9-6?
CREATE TABLE table_name_54 (location_attendance VARCHAR, record VARCHAR)
Qual era a localização e a participação no jogo quando o recorde era de 9-6?
72,946
SELECT date FROM table_name_88 WHERE round__leg_ = "3"
What date has 3 as the round (leg)?
CREATE TABLE table_name_88 (date VARCHAR, round__leg_ VARCHAR)
Que data tem 3 como a rodada (perna)?
72,947
SELECT MIN(year) FROM table_name_87 WHERE result = "nominated" AND film = "bridget jones: the edge of reason"
What was the year of Bridget Jones: The Edge of Reason that was nominated?
CREATE TABLE table_name_87 (year INTEGER, result VARCHAR, film VARCHAR)
Qual foi o ano de Bridget Jones: The Edge of Reason que foi nomeado?
72,948
SELECT lost_to FROM table_name_74 WHERE film = "chicago"
Who was the loss to for the film Chicago?
CREATE TABLE table_name_74 (lost_to VARCHAR, film VARCHAR)
Para quem foi a perda do filme Chicago?
72,949
SELECT ihsaa_football_class FROM table_name_79 WHERE ihsaa_class = "aaa" AND location = "nashville"
Which IHSAA Football Class has a IHSAA Class of aaa, and a Location of nashville?
CREATE TABLE table_name_79 (ihsaa_football_class VARCHAR, ihsaa_class VARCHAR, location VARCHAR)
Qual classe de futebol da IHSAA tem uma classe IHSAA de aaa e uma localização de nashville?
72,950
SELECT mascot FROM table_name_63 WHERE enrollment = 640
Which Mascot has an Enrollment of 640?
CREATE TABLE table_name_63 (mascot VARCHAR, enrollment VARCHAR)
Qual Mascot tem uma inscrição de 640?
72,951
SELECT ihsaa_class FROM table_name_96 WHERE location = "brazil"
Which IHSAA Class has a Location of brazil?
CREATE TABLE table_name_96 (ihsaa_class VARCHAR, location VARCHAR)
Qual Classe IHSAA tem uma Localização do Brasil?
72,952
SELECT school FROM table_name_55 WHERE enrollment = 908
Which School has a Enrollment of 908?
CREATE TABLE table_name_55 (school VARCHAR, enrollment VARCHAR)
Qual escola tem uma inscrição de 908?
72,953
SELECT currency FROM table_name_34 WHERE code = "sek"
What type of currency has a code of SEK?
CREATE TABLE table_name_34 (currency VARCHAR, code VARCHAR)
Que tipo de moeda tem um código de SEK?
72,954
SELECT code FROM table_name_34 WHERE currency = "croatian kuna"
What code is used to represent the currency of Croatian Kuna?
CREATE TABLE table_name_34 (code VARCHAR, currency VARCHAR)
Qual o código é usado para representar a moeda de Kuna croata?
72,955
SELECT model FROM table_name_68 WHERE chassis_code = "w116.036"
What's the model that has chassis code W116.036?
CREATE TABLE table_name_68 (model VARCHAR, chassis_code VARCHAR)
Qual é o modelo que tem o código do chassi W116.036?
72,956
SELECT score FROM table_name_71 WHERE year = "1992"
What the score of the 1992 game?
CREATE TABLE table_name_71 (score VARCHAR, year VARCHAR)
Qual a pontuação do jogo de 1992?
72,957
SELECT score FROM table_name_59 WHERE runners_up = "tsv siegen"
What is the score when TSV Siegen was the runner-up?
CREATE TABLE table_name_59 (score VARCHAR, runners_up VARCHAR)
Qual é a pontuação quando TSV Siegen foi o segundo colocado?
72,958
SELECT year FROM table_name_30 WHERE venue = "bad neuenahr eppelborn"
What year was the game at Bad Neuenahr Eppelborn?
CREATE TABLE table_name_30 (year VARCHAR, venue VARCHAR)
Em que ano foi o jogo em Bad Neuenahr Eppelborn?
72,959
SELECT venue FROM table_name_65 WHERE runners_up = "tennis borussia berlin" AND score = "4 – 2 *"
What was the venue when the runner up was Tennis Borussia Berlin, and the score was 4 – 2 *?
CREATE TABLE table_name_65 (venue VARCHAR, runners_up VARCHAR, score VARCHAR)
Qual foi o local quando o vice-campeão foi o Tennis Borussia Berlin, e a pontuação foi de 4 – 2 *?
72,960
SELECT runners_up FROM table_name_2 WHERE venue = "bergisch gladbach" AND year = "1983"
What team was runner-up at Bergisch Gladbach in 1983?
CREATE TABLE table_name_2 (runners_up VARCHAR, venue VARCHAR, year VARCHAR)
Qual foi o vice-campeão do Bergisch Gladbach em 1983?
72,961
SELECT time FROM table_name_77 WHERE lane = 7
What was the time of the swimmer in lane 7?
CREATE TABLE table_name_77 (time VARCHAR, lane VARCHAR)
Qual foi o tempo do nadador na pista 7?
72,962
SELECT rank FROM table_name_23 WHERE time = "1:55.40"
What was the rank of the swimmer with a time of 1:55.40?
CREATE TABLE table_name_23 (rank VARCHAR, time VARCHAR)
Qual era a classificação do nadador com um tempo de 1:55.40?
72,963
SELECT date FROM table_name_14 WHERE game = "13"
What was the date for game 13?
CREATE TABLE table_name_14 (date VARCHAR, game VARCHAR)
Qual foi a data do jogo 13?
72,964
SELECT record FROM table_name_72 WHERE opponent = "st. louis cardinals"
What is the record for the opponent St. Louis Cardinals?
CREATE TABLE table_name_72 (record VARCHAR, opponent VARCHAR)
Qual é o recorde para o oponente St. Louis Cardinals?
72,965
SELECT record FROM table_name_42 WHERE game = "8"
What is the record for Game 8?
CREATE TABLE table_name_42 (record VARCHAR, game VARCHAR)
Qual é o recorde do jogo 8?
72,966
SELECT mobile FROM table_name_31 WHERE opera = "2.62%"
What percentage of users were using mobile browsers during the period in which 2.62% were using Opera?
CREATE TABLE table_name_31 (mobile VARCHAR, opera VARCHAR)
Que porcentagem de usuários estavam usando navegadores móveis durante o período em que 2,62% estavam usando o Opera?
72,967
SELECT mobile FROM table_name_28 WHERE chrome = "9.00%"
What percentage of users were using mobile browsers during the period in which 9.00% were using Chrome?
CREATE TABLE table_name_28 (mobile VARCHAR, chrome VARCHAR)
Qual porcentagem de usuários estava usando navegadores móveis durante o período em que 9,0% estavam usando o Chrome?
72,968
SELECT safari FROM table_name_96 WHERE firefox = "30.82%"
What percentage of users were using Safari during the period in which 30.82% were using Firefox?
CREATE TABLE table_name_96 (safari VARCHAR, firefox VARCHAR)
Que porcentagem de usuários estavam usando o Safari durante o período em que 30,82% estavam usando o Firefox?
72,969
SELECT internet_explorer FROM table_name_66 WHERE mobile = "2.1%"
What percentage of users were using Internet Explorer during the period in which 2.1% were using mobile browsers?
CREATE TABLE table_name_66 (internet_explorer VARCHAR, mobile VARCHAR)
Que porcentagem de usuários estavam usando o Internet Explorer durante o período em que 2,1% estavam usando navegadores móveis?
72,970
SELECT other_mozilla FROM table_name_58 WHERE chrome = "9.00%"
What percentage of users were using other Mozilla browsers during the period in which 9.00% were using Chrome?
CREATE TABLE table_name_58 (other_mozilla VARCHAR, chrome VARCHAR)
Que porcentagem de usuários estavam usando outros navegadores Mozilla durante o período em que 9,0% estavam usando o Chrome?
72,971
SELECT date FROM table_name_94 WHERE result = "w 14-10"
What date has w 14-10 as the result?
CREATE TABLE table_name_94 (date VARCHAR, result VARCHAR)
Que data tem w 14-10 como resultado?
72,972
SELECT opponent FROM table_name_29 WHERE week < 12 AND date = "november 25, 1965"
What opponent has a week less than 12, with November 25, 1965 as the date?
CREATE TABLE table_name_29 (opponent VARCHAR, week VARCHAR, date VARCHAR)
Qual adversário tem uma semana a menos de 12, com 25 de novembro de 1965 como data?
72,973
SELECT MIN(week) FROM table_name_70 WHERE date = "september 19, 1965" AND attendance < 46 OFFSET 941
What is the lowest week that has September 19, 1965 as the date, with an attendance less than 46,941?
CREATE TABLE table_name_70 (week INTEGER, date VARCHAR, attendance VARCHAR)
Qual é a semana mais baixa que tem 19 de setembro de 1965 como data, com uma frequência inferior a 46.941?
72,974
SELECT MIN(week) FROM table_name_66 WHERE attendance = 51 OFFSET 499
What is the lowest week that has 51,499 as the attendance?
CREATE TABLE table_name_66 (week INTEGER, attendance VARCHAR)
Qual é a semana mais baixa que tem 51.499 como presença?
72,975
SELECT frequency FROM table_name_18 WHERE format = "active rock"
What is the frequency for the active rock format?
CREATE TABLE table_name_18 (frequency VARCHAR, format VARCHAR)
Qual é a frequência para o formato de rocha ativa?
72,976
SELECT branding FROM table_name_66 WHERE frequency = "fm 88.9"
What is the branding for fm 88.9?
CREATE TABLE table_name_66 (branding VARCHAR, frequency VARCHAR)
O que é o branding para fm 88.9?
72,977
SELECT owner FROM table_name_38 WHERE branding = "rock 97.7"
What is the name of the owner of rock 97.7?
CREATE TABLE table_name_38 (owner VARCHAR, branding VARCHAR)
Qual é o nome do proprietário do rock 97.7?
72,978
SELECT branding FROM table_name_15 WHERE call_sign = "cbxp-fm"
What is the branding for cbxp-fm?
CREATE TABLE table_name_15 (branding VARCHAR, call_sign VARCHAR)
O que é o branding para cbxp-fm?
72,979
SELECT call_sign FROM table_name_34 WHERE format = "country" AND frequency = "fm 93.1"
What is the call sign for country station fm 93.1?
CREATE TABLE table_name_34 (call_sign VARCHAR, format VARCHAR, frequency VARCHAR)
Qual é o sinal de chamada para a estação do país fm 93,1?
72,980
SELECT frequency FROM table_name_65 WHERE format = "country" AND owner = "jim pattison group"
What is the frequency for the country station owned by Jim Pattison Group?
CREATE TABLE table_name_65 (frequency VARCHAR, format VARCHAR, owner VARCHAR)
Qual é a frequência para a estação do país de propriedade do Jim Pattison Group?
72,981
SELECT game FROM table_name_60 WHERE location_attendance = "los angeles memorial sports arena"
What game was located at the Los Angeles Memorial Sports Arena?
CREATE TABLE table_name_60 (game VARCHAR, location_attendance VARCHAR)
Qual jogo foi localizado na Los Angeles Memorial Sports Arena?
72,982
SELECT location_attendance FROM table_name_44 WHERE score = "w 106-81"
What is the location for the game with a score of w 106-81?
CREATE TABLE table_name_44 (location_attendance VARCHAR, score VARCHAR)
Qual é a localização do jogo com uma pontuação de w 106-81?
72,983
SELECT location_attendance FROM table_name_26 WHERE game = "4"
Where is the location of Game 4?
CREATE TABLE table_name_26 (location_attendance VARCHAR, game VARCHAR)
Onde fica a localização do jogo 4?
72,984
SELECT SUM(lane) FROM table_name_89 WHERE rank = 2
What is the lane total when rank is 2?
CREATE TABLE table_name_89 (lane INTEGER, rank VARCHAR)
Qual é a faixa total quando a classificação é 2?
72,985
SELECT time FROM table_name_56 WHERE name = "gemma spofforth"
Gemma Spofforth has what time?
CREATE TABLE table_name_56 (time VARCHAR, name VARCHAR)
Gemma Spofforth tem que tempo?
72,986
SELECT AVG(floors) FROM table_name_9 WHERE pinnacle_height_ft__m_ = "1,136 (346)" AND pinn_rank > 4
Which Floors have a Pinnacle height ft (m) of 1,136 (346), and a Pinn Rank larger than 4?
CREATE TABLE table_name_9 (floors INTEGER, pinnacle_height_ft__m_ VARCHAR, pinn_rank VARCHAR)
Quais pisos têm uma altura Pinnacle pés (m) de 1.136 (346), e um Pinn Rank maior que 4?
72,987
SELECT SUM(std_rank) FROM table_name_97 WHERE name = "311 south wacker drive" AND year > 1990
How much Standard Rank has a Name of 311 south wacker drive, and a Year larger than 1990?
CREATE TABLE table_name_97 (std_rank INTEGER, name VARCHAR, year VARCHAR)
Quanto Rank Padrão tem um nome de 311 unidade de wacker sul, e um ano maior do que 1990?
72,988
SELECT MAX(floors) FROM table_name_92 WHERE pinnacle_height_ft__m_ = "995 (303)" AND std_rank > 6
Which Floors have a Pinnacle height ft (m) of 995 (303), and an Std Rank larger than 6?
CREATE TABLE table_name_92 (floors INTEGER, pinnacle_height_ft__m_ VARCHAR, std_rank VARCHAR)
Que pisos têm uma altura Pinnacle pés (m) de 995 (303), e um Std Rank maior do que 6?
72,989
SELECT AVG(time) FROM table_name_24 WHERE rank > 2 AND name = "andy turner"
What is the average time with a rank lower than 2 for Andy Turner?
CREATE TABLE table_name_24 (time INTEGER, rank VARCHAR, name VARCHAR)
Qual é o tempo médio com uma classificação inferior a 2 para Andy Turner?
72,990
SELECT date FROM table_name_34 WHERE year > 1981 AND location = "morocco"
What was the date for morocco when the year was lerger than 1981?
CREATE TABLE table_name_34 (date VARCHAR, year VARCHAR, location VARCHAR)
Qual foi a data para o Marrocos quando o ano foi mais curto do que 1981?
72,991
SELECT MIN(year) FROM table_name_80 WHERE city = "casablanca"
What is the lowest year when the city is casablanca?
CREATE TABLE table_name_80 (year INTEGER, city VARCHAR)
Qual é o ano mais baixo quando a cidade é casablanca?
72,992
SELECT COUNT(year) FROM table_name_31 WHERE city = "san juan"
What year was the expansion in the city of San Juan?
CREATE TABLE table_name_31 (year VARCHAR, city VARCHAR)
Em que ano foi a expansão na cidade de San Juan?
72,993
SELECT city FROM table_name_50 WHERE location = "netherlands"
What city was located in the Netherlands?
CREATE TABLE table_name_50 (city VARCHAR, location VARCHAR)
Qual cidade estava localizada na Holanda?
72,994
SELECT location FROM table_name_88 WHERE year = 1971 AND city = "tokyo"
What location had a year of 1971 and a city of Tokyo?
CREATE TABLE table_name_88 (location VARCHAR, year VARCHAR, city VARCHAR)
Que local tinha um ano de 1971 e uma cidade de Tóquio?
72,995
SELECT award FROM table_name_62 WHERE year < 2005
What award did they win before 2005?
CREATE TABLE table_name_62 (award VARCHAR, year INTEGER)
Qual foi o prêmio que ganhou antes de 2005?
72,996
SELECT date FROM table_name_44 WHERE home_team = "southend united"
When was Southend United the home team?
CREATE TABLE table_name_44 (date VARCHAR, home_team VARCHAR)
Quando foi o Southend United a equipa da casa?
72,997
SELECT score FROM table_name_4 WHERE date = "13 december 1975" AND away_team = "halifax town"
For the game on 13 December 1975 with Halifax Town as the away team what was the score?
CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR, away_team VARCHAR)
Para o jogo em 13 de dezembro de 1975 com Halifax Town como o time de fora, qual foi o resultado?
72,998
SELECT away_team FROM table_name_69 WHERE tie_no = "6"
Who was the away team when 6 was the tie no?
CREATE TABLE table_name_69 (away_team VARCHAR, tie_no VARCHAR)
Quem era o time de fora quando 6 era o empate não?
72,999
SELECT score FROM table_name_69 WHERE tie_no = "13"
The game with 13 as the tie no had what as the score?
CREATE TABLE table_name_69 (score VARCHAR, tie_no VARCHAR)
O jogo com 13 como o empate não tinha o que como o placar?