Unnamed: 0
int64
0
78.6k
answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
translated_answer
stringlengths
12
992
75,500
SELECT SUM(first_season_of_current_spell_in_segunda_división) FROM table_name_44 WHERE city = "cañete"
What is the total of the first season in Segunda División that has a City of cañete?
CREATE TABLE table_name_44 (first_season_of_current_spell_in_segunda_división INTEGER, city VARCHAR)
Qual é o total da primeira temporada na Segunda Divisão que tem uma Cidade de caete?
75,501
SELECT team FROM table_name_69 WHERE top_division_titles > 0 AND founded > 1927 AND stadium = "miguel grau"
Which team has Top division titles larger than 0, a Founded larger than 1927, and a Stadium of miguel grau?
CREATE TABLE table_name_69 (team VARCHAR, stadium VARCHAR, top_division_titles VARCHAR, founded VARCHAR)
Qual time tem títulos de Top division maiores que 0, um Fundado maior que 1927 e um Estádio de miguel grau?
75,502
SELECT city FROM table_name_69 WHERE first_season_of_current_spell_in_segunda_división < 2013
Which city has a First season of current spell in Segunda División smaller than 2013?
CREATE TABLE table_name_69 (city VARCHAR, first_season_of_current_spell_in_segunda_división INTEGER)
Qual cidade tem uma Primeira temporada de magia atual em Segunda División menor que 2013?
75,503
SELECT MIN(capacity) FROM table_name_11 WHERE first_season_in_segunda_división = 2013 AND top_division_titles > 0
What is the smallest capacity for a First season in Segunda División of 2013, and Top division titles larger than 0?
CREATE TABLE table_name_11 (capacity INTEGER, first_season_in_segunda_división VARCHAR, top_division_titles VARCHAR)
Qual é a menor capacidade para uma primeira temporada na Segunda Divisão de 2013, e títulos da Top Division maiores que 0?
75,504
SELECT COUNT(enrollment) FROM table_name_99 WHERE institution = "mcgill university" AND capacity < 25 OFFSET 012
What's the total enrollment ofr Mcgill University that has a capacity less than 25,012?
CREATE TABLE table_name_99 (enrollment VARCHAR, institution VARCHAR, capacity VARCHAR)
Qual é o total de matrículas da Mcgill University que tem capacidade inferior a 25.012?
75,505
SELECT MIN(first_season) FROM table_name_8 WHERE city = "montreal" AND capacity > 5 OFFSET 100
What's the smallest season for Montreal that's greater than 5,100 for capacity?
CREATE TABLE table_name_8 (first_season INTEGER, city VARCHAR, capacity VARCHAR)
Qual é a menor temporada para Montreal que é maior que 5.100 para capacidade?
75,506
SELECT city FROM table_name_32 WHERE first_season = 1996
What's the name of the city whose first season was in 1996?
CREATE TABLE table_name_32 (city VARCHAR, first_season VARCHAR)
Qual é o nome da cidade cuja primeira temporada foi em 1996?
75,507
SELECT football_stadium FROM table_name_55 WHERE team = "carabins"
What's the name of the carabins stadium?
CREATE TABLE table_name_55 (football_stadium VARCHAR, team VARCHAR)
Qual é o nome do estádio das carabinas?
75,508
SELECT best FROM table_name_9 WHERE qual_2 = "1:44.050"
what team has the qual 2 of 1:44.050?
CREATE TABLE table_name_9 (best VARCHAR, qual_2 VARCHAR)
Qual equipe tem o qual 2 de 1:44.050?
75,509
SELECT name FROM table_name_87 WHERE team = "forsythe racing" AND qual_2 = "1:47.132"
what name goes along with the team of forsythe racing, and a Qual 2 of 1:47.132?
CREATE TABLE table_name_87 (name VARCHAR, team VARCHAR, qual_2 VARCHAR)
Qual o nome que acompanha a equipe de Forsythe Racing, e um Qual 2 de 1:47.132?
75,510
SELECT team FROM table_name_82 WHERE qual_2 = "1:44.027"
what team had the 1:44.027 qual 2?
CREATE TABLE table_name_82 (team VARCHAR, qual_2 VARCHAR)
Qual equipe teve o 1:44.027 qual 2?
75,511
SELECT qual_1 FROM table_name_25 WHERE name = "alex tagliani"
what is the qual 1 for alex tagliani?
CREATE TABLE table_name_25 (qual_1 VARCHAR, name VARCHAR)
O que é o Qual 1 para Alex Tagliani?
75,512
SELECT team FROM table_name_75 WHERE best = "1:43.134"
what is the team with the best of 1:43.134?
CREATE TABLE table_name_75 (team VARCHAR, best VARCHAR)
Qual é a equipe com o melhor de 1:43.134?
75,513
SELECT visiting_team FROM table_name_99 WHERE stadium = "rca dome"
Who was the visiting team at the matchup at the RCA Dome?
CREATE TABLE table_name_99 (visiting_team VARCHAR, stadium VARCHAR)
Quem foi a equipe visitante no confronto no RCA Dome?
75,514
SELECT final_score FROM table_name_11 WHERE host_team = "detroit lions"
What was the final score in the game in which the Detroit Lions were the home team?
CREATE TABLE table_name_11 (final_score VARCHAR, host_team VARCHAR)
Qual foi a pontuação final no jogo em que o Detroit Lions foi o time da casa?
75,515
SELECT stadium FROM table_name_11 WHERE date = "november 20"
Which stadium hosted the November 20 game?
CREATE TABLE table_name_11 (stadium VARCHAR, date VARCHAR)
Qual estádio sediou o jogo de 20 de novembro?
75,516
SELECT visiting_team FROM table_name_13 WHERE host_team = "minnesota vikings"
Who was the visiting team against the Minnesota Vikings?
CREATE TABLE table_name_13 (visiting_team VARCHAR, host_team VARCHAR)
Quem foi a equipe visitante contra o Minnesota Vikings?
75,517
SELECT host_team FROM table_name_22 WHERE stadium = "candlestick park"
Who was the host team at Candlestick Park?
CREATE TABLE table_name_22 (host_team VARCHAR, stadium VARCHAR)
Quem foi o anfitrião do Candlestick Park?
75,518
SELECT date FROM table_name_58 WHERE final_score = "20-27"
Which date had a final score of 20-27?
CREATE TABLE table_name_58 (date VARCHAR, final_score VARCHAR)
Que data teve uma pontuação final de 20-27?
75,519
SELECT COUNT(year) FROM table_name_66 WHERE position = "2nd"
How many years have had the position of 2nd?
CREATE TABLE table_name_66 (year VARCHAR, position VARCHAR)
Quantos anos tem a segunda posição?
75,520
SELECT position FROM table_name_29 WHERE notes = "20km" AND year < 2002
What position had notes of 20km and a year earlier than 2002?
CREATE TABLE table_name_29 (position VARCHAR, notes VARCHAR, year VARCHAR)
Que posição tinha notas de 20 km e um ano antes de 2002?
75,521
SELECT venue FROM table_name_26 WHERE year < 2006 AND position = "10th"
What was the venue before 2006, with the position of 10th?
CREATE TABLE table_name_26 (venue VARCHAR, year VARCHAR, position VARCHAR)
Qual era o local antes de 2006, com a posição de 10?
75,522
SELECT notes FROM table_name_62 WHERE venue = "turin, italy"
What were the notes when the Venue was Turin, Italy?
CREATE TABLE table_name_62 (notes VARCHAR, venue VARCHAR)
Quais foram as notas quando o local era Turim, Itália?
75,523
SELECT secondary_military_speciality FROM table_name_21 WHERE real_name = "gareth morgan"
What is Gareth Morgan's Secondary Military Specialty?
CREATE TABLE table_name_21 (secondary_military_speciality VARCHAR, real_name VARCHAR)
Qual é a especialidade militar secundária de Gareth Morgan?
75,524
SELECT code_name FROM table_name_81 WHERE birthplace = "hawaii"
What is the Code Name of the figure born in Hawaii?
CREATE TABLE table_name_81 (code_name VARCHAR, birthplace VARCHAR)
Qual é o nome de código da figura nascida no Havaí?
75,525
SELECT last_title FROM table_name_9 WHERE area_province = "greater buenos aires" AND first_season = "1920"
Name the last title for greater buenos aires and first season of 1920
CREATE TABLE table_name_9 (last_title VARCHAR, area_province VARCHAR, first_season VARCHAR)
Nomeie o último título para maiores buenos aires e primeira temporada de 1920
75,526
SELECT area_province FROM table_name_64 WHERE district = "córdoba"
Name the area for District of córdoba
CREATE TABLE table_name_64 (area_province VARCHAR, district VARCHAR)
Nomear a área para Distrito de Córdoba
75,527
SELECT last_title FROM table_name_36 WHERE club = "quilmes"
Name the last title for club of quilmes
CREATE TABLE table_name_36 (last_title VARCHAR, club VARCHAR)
Nomear o último título do clube de quilmes
75,528
SELECT last_title FROM table_name_11 WHERE club = "newell's old boys"
Name the last time for club of newell's old boys
CREATE TABLE table_name_11 (last_title VARCHAR, club VARCHAR)
Nomear a última vez para o clube dos velhos rapazes de Newell
75,529
SELECT AVG(scored) FROM table_name_64 WHERE competition = "2011 long teng cup" AND date = "2 october 2011"
Name the averag scored for 2011 long teng cup and 2 october 2011
CREATE TABLE table_name_64 (scored INTEGER, competition VARCHAR, date VARCHAR)
Nomear o averag marcado para 2011 longo teng copo e 2 outubro 2011
75,530
SELECT barrel_twist FROM table_name_63 WHERE barrel_length = "11.5 in."
Can you tell me the Barrel twist that has the Barrel lenght of 11.5 in.?
CREATE TABLE table_name_63 (barrel_twist VARCHAR, barrel_length VARCHAR)
Você pode me dizer a torção Barrel que tem o lenght Barrel de 11,5 polegadas?
75,531
SELECT AVG(year) FROM table_name_27 WHERE inglewood < 2 OFFSET 575
What is the average year that had a value less than 2,575 in Inglewood?
CREATE TABLE table_name_27 (year INTEGER, inglewood INTEGER)
Qual é o ano médio que teve um valor inferior a 2.575 em Inglewood?
75,532
SELECT nature_of_incident FROM table_name_62 WHERE location = "kabul" AND date = "2004-01-28"
What is the nature of the incident in Kabul on 2004-01-28?
CREATE TABLE table_name_62 (nature_of_incident VARCHAR, location VARCHAR, date VARCHAR)
Qual é a natureza do incidente em Cabul em 2004-01-28?
75,533
SELECT nature_of_incident FROM table_name_69 WHERE circumstances = "bomb attack"
What is the nature of the incident that's a bomb attack?
CREATE TABLE table_name_69 (nature_of_incident VARCHAR, circumstances VARCHAR)
Qual é a natureza do incidente que é um ataque a bomba?
75,534
SELECT nature_of_incident FROM table_name_93 WHERE casualties = "3 wia" AND circumstances = "ied"
What is the nature of the incident with Casualties of 3 wia, and Circumstances of ied?
CREATE TABLE table_name_93 (nature_of_incident VARCHAR, casualties VARCHAR, circumstances VARCHAR)
Qual é a natureza do incidente com baixas de 3 wia, e Circunstâncias de ied?
75,535
SELECT casualties FROM table_name_24 WHERE location = "kunduz" AND circumstances = "suicide"
Which Casualties have a Location of kunduz, and Circumstances of suicide?
CREATE TABLE table_name_24 (casualties VARCHAR, location VARCHAR, circumstances VARCHAR)
Quais vítimas têm uma localização de Kunduz e circunstâncias de suicídio?
75,536
SELECT casualties FROM table_name_67 WHERE nature_of_incident = "hostile" AND circumstances = "mortar attack"
Which Casualties have a hostile Nature of incident and Circumstances of mortar attack?
CREATE TABLE table_name_67 (casualties VARCHAR, nature_of_incident VARCHAR, circumstances VARCHAR)
Que vítimas têm uma natureza hostil de incidente e circunstâncias de ataque de morteiro?
75,537
SELECT born_in FROM table_name_36 WHERE former_experience = "commissioner of health"
When was the delegate who has previous experience as a commissioner of health born?
CREATE TABLE table_name_36 (born_in VARCHAR, former_experience VARCHAR)
Quando nasceu o delegado que tem experiência anterior como comissário de saúde?
75,538
SELECT airport FROM table_name_85 WHERE city = "kota kinabalu"
What is the name of the airport in the city of Kota Kinabalu?
CREATE TABLE table_name_85 (airport VARCHAR, city VARCHAR)
Qual é o nome do aeroporto na cidade de Kota Kinabalu?
75,539
SELECT iata FROM table_name_23 WHERE city = "amsterdam"
What is the IATA for the city of Amsterdam?
CREATE TABLE table_name_23 (iata VARCHAR, city VARCHAR)
O que é a IATA para a cidade de Amsterdã?
75,540
SELECT country FROM table_name_3 WHERE iata = "jfk"
Which country has an IATA of JFK?
CREATE TABLE table_name_3 (country VARCHAR, iata VARCHAR)
Que país tem uma IATA de JFK?
75,541
SELECT city FROM table_name_42 WHERE iata = "auh"
Which city has an IATA of AUH?
CREATE TABLE table_name_42 (city VARCHAR, iata VARCHAR)
Qual cidade tem uma IATA de AUH?
75,542
SELECT airport FROM table_name_39 WHERE iata = "ams"
Which airport has an IATA of AMS?
CREATE TABLE table_name_39 (airport VARCHAR, iata VARCHAR)
Qual aeroporto tem uma IATA de AMS?
75,543
SELECT city FROM table_name_59 WHERE icao = "kiah"
Which city has an ICAO of Kiah?
CREATE TABLE table_name_59 (city VARCHAR, icao VARCHAR)
Que cidade tem uma ICAO de Kiah?
75,544
SELECT genre FROM table_name_88 WHERE directed_by = "sándor simó"
What Genre did Sándor Simó direct?
CREATE TABLE table_name_88 (genre VARCHAR, directed_by VARCHAR)
Qual foi a direção de Sándor Simó?
75,545
SELECT genre FROM table_name_12 WHERE original_title = "malina (ger.-aus.-fr.)"
What is the Genre for Malina (ger.-aus.-fr.), an Original Title?
CREATE TABLE table_name_12 (genre VARCHAR, original_title VARCHAR)
O que é o gênero para Malina (ger.-aus.-fr.), um título original?
75,546
SELECT original_title FROM table_name_91 WHERE title_in_english = "the last metro"
The Last Metro refers to which Original Title?
CREATE TABLE table_name_91 (original_title VARCHAR, title_in_english VARCHAR)
O ltimo Metro refere-se a qual título original?
75,547
SELECT genre FROM table_name_48 WHERE role = "episode actor" AND original_title = "franciska vasárnapjai (hungarian)"
What original title, Franciska Vasárnapjai (hungarian), had an Episode Actor role which was Directed by Géza Bereményi?
CREATE TABLE table_name_48 (genre VARCHAR, role VARCHAR, original_title VARCHAR)
Que título original, Franciska Vasárnapjai (Hungria), teve um papel de ator episode que foi dirigido por Géza Bereményi?
75,548
SELECT original_title FROM table_name_59 WHERE role = "episode actor" AND directed_by = "géza bereményi"
What is the Original title for an Episode Actor role which was Directed by Géza Bereményi?
CREATE TABLE table_name_59 (original_title VARCHAR, role VARCHAR, directed_by VARCHAR)
Qual é o título original para um papel de ator de episódio que foi dirigido por Géza Bereményi?
75,549
SELECT AVG(round) FROM table_name_13 WHERE name = "bob randall"
What is the round for bob randall?
CREATE TABLE table_name_13 (round INTEGER, name VARCHAR)
Qual é a rodada para Bob Randall?
75,550
SELECT position FROM table_name_96 WHERE signed = "yes" AND round < 24 AND name = "charlie hough"
what is the position when signed is yes, round is less than 24 and name is charlie hough?
CREATE TABLE table_name_96 (position VARCHAR, name VARCHAR, signed VARCHAR, round VARCHAR)
Qual é a posição quando assinado é sim, rodada é inferior a 24 e nome é charlie hough?
75,551
SELECT school FROM table_name_26 WHERE signed = "no" AND round = 50
what is the school when signed is no and round is 50?
CREATE TABLE table_name_26 (school VARCHAR, signed VARCHAR, round VARCHAR)
O que é a escola quando assinado é não e rodada é 50?
75,552
SELECT school FROM table_name_68 WHERE round = 8
what is the school for round 8?
CREATE TABLE table_name_68 (school VARCHAR, round VARCHAR)
Qual é a escola para a oitava rodada?
75,553
SELECT position FROM table_name_25 WHERE name = "robert johnson"
what is the position for robert johnson?
CREATE TABLE table_name_25 (position VARCHAR, name VARCHAR)
Qual é a posição de Robert Johnson?
75,554
SELECT signed FROM table_name_48 WHERE position = "ss" AND school = "carson city high school"
Was position ss from carson city high school signed?
CREATE TABLE table_name_48 (signed VARCHAR, position VARCHAR, school VARCHAR)
A vaga foi assinada na escola secundária da cidade de Carson?
75,555
SELECT AVG(yards) FROM table_name_46 WHERE starts > 12
What was the average number of yards Michael Henig had in a year when he had more than 12 starts/
CREATE TABLE table_name_46 (yards INTEGER, starts INTEGER)
Qual foi o número médio de jardas que Michael Henig teve em um ano quando ele teve mais de 12 partidas?
75,556
SELECT AVG(starts) FROM table_name_54 WHERE yards > 1201
What was the average number of starts Michael Henig had in a year when he had more than 1201 yards?
CREATE TABLE table_name_54 (starts INTEGER, yards INTEGER)
Qual foi o número médio de partidas que Michael Henig teve em um ano, quando ele tinha mais de 1201 jardas?
75,557
SELECT airport FROM table_name_64 WHERE iata = "cxb"
Name the airport with IATA of cxb
CREATE TABLE table_name_64 (airport VARCHAR, iata VARCHAR)
Nomear o aeroporto com IATA de cxb
75,558
SELECT airport FROM table_name_74 WHERE iata = "dmk"
Name the airport with IATA of dmk
CREATE TABLE table_name_74 (airport VARCHAR, iata VARCHAR)
Nomear o aeroporto com IATA de dmk
75,559
SELECT city FROM table_name_15 WHERE airport = "singapore changi airport"
Name the city that has singapore changi airport
CREATE TABLE table_name_15 (city VARCHAR, airport VARCHAR)
Nomear a cidade que tem o aeroporto de Singapura Changi
75,560
SELECT icao FROM table_name_22 WHERE iata = "zyl"
Name the ICAO for when IATA is zyl
CREATE TABLE table_name_22 (icao VARCHAR, iata VARCHAR)
Nomeie a ICAO para quando a IATA for zyl
75,561
SELECT icao FROM table_name_69 WHERE iata = "rgn"
Name the ICAO for IATA of rgn
CREATE TABLE table_name_69 (icao VARCHAR, iata VARCHAR)
Nomear a ICAO para IATA da rgn
75,562
SELECT icao FROM table_name_62 WHERE iata = "ccu"
Name the ICAO for IATA of ccu
CREATE TABLE table_name_62 (icao VARCHAR, iata VARCHAR)
Nomear a ICAO para IATA da ccu
75,563
SELECT MAX(gold) FROM table_name_90 WHERE total > 16
What is the largest gold with a Total larger than 16?
CREATE TABLE table_name_90 (gold INTEGER, total INTEGER)
Qual é o maior ouro com um total maior que 16?
75,564
SELECT MAX(silver) FROM table_name_79 WHERE total < 2 AND bronze < 1 AND nation = "yugoslavia"
What is the largest silver with a Total smaller than 2, a Bronze smaller than 1, and a Nation of yugoslavia?
CREATE TABLE table_name_79 (silver INTEGER, nation VARCHAR, total VARCHAR, bronze VARCHAR)
Qual é a maior prata com um total menor que 2, um bronze menor que 1 e uma nação de iugoslávia?
75,565
SELECT MIN(bronze) FROM table_name_58 WHERE nation = "west germany" AND gold > 0
What is the smallest bronze with a Nation of west germany, and a Gold larger than 0?
CREATE TABLE table_name_58 (bronze INTEGER, nation VARCHAR, gold VARCHAR)
Qual é o menor bronze com uma nação da Alemanha Ocidental, e um ouro maior que 0?
75,566
SELECT record FROM table_name_34 WHERE date = "july 2"
What was the record on July 2?
CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR)
Qual foi o recorde em 2 de julho?
75,567
SELECT MAX(silver) FROM table_name_63 WHERE gold < 0
What is the largest silver with less than 0 gold?
CREATE TABLE table_name_63 (silver INTEGER, gold INTEGER)
Qual é a maior prata com menos de 0 ouro?
75,568
SELECT AVG(total_viewers) FROM table_name_96 WHERE share = "17.6%"
What's the average total viewers that has 17.6% Share?
CREATE TABLE table_name_96 (total_viewers INTEGER, share VARCHAR)
Qual é o total médio de espectadores que tem 17,6% de compartilhamento?
75,569
SELECT share FROM table_name_84 WHERE episode_no = 1
What's the share of Episode 1?
CREATE TABLE table_name_84 (share VARCHAR, episode_no VARCHAR)
Qual é a parte do episódio 1?
75,570
SELECT quantity_made FROM table_name_97 WHERE withdrawn = "1913"
How many locomotives were made that were withdrawn in 1913?
CREATE TABLE table_name_97 (quantity_made VARCHAR, withdrawn VARCHAR)
Quantas locomotivas foram feitas que foram retiradas em 1913?
75,571
SELECT date_made FROM table_name_9 WHERE type = "0-4-2"
What is the date of creation for the locomotive having a type of 0-4-2
CREATE TABLE table_name_9 (date_made VARCHAR, type VARCHAR)
Qual é a data de criação para a locomotiva com um tipo de 0-4-2
75,572
SELECT date_made FROM table_name_31 WHERE type = "0-6-0" AND gsr_class = "441"
What is the date of creation of the locomotive of type 0-6-0 and GSR class of 441?
CREATE TABLE table_name_31 (date_made VARCHAR, type VARCHAR, gsr_class VARCHAR)
Qual é a data de criação da locomotiva do tipo 0-6-0 e da classe GSR de 441?
75,573
SELECT venue FROM table_name_20 WHERE round = "19" AND player = "tony lockett"
In Round 19, where did Tony Lockett play?
CREATE TABLE table_name_20 (venue VARCHAR, round VARCHAR, player VARCHAR)
Na rodada 19, onde Tony Lockett jogou?
75,574
SELECT opponent FROM table_name_17 WHERE year = "1992"
Who is the opponent in 1992?
CREATE TABLE table_name_17 (opponent VARCHAR, year VARCHAR)
Quem é o adversário em 1992?
75,575
SELECT club FROM table_name_87 WHERE score = "18.1"
What club had a score of 18.1?
CREATE TABLE table_name_87 (club VARCHAR, score VARCHAR)
Qual clube teve uma pontuação de 18,1?
75,576
SELECT COUNT(built) FROM table_name_51 WHERE withdrawn = 1967 AND br_sr_no = "w27" AND to_iow < 1926
What is the number for year built of W27 that was withdrawn in 1967 with a To LoW year earlier than 1926?
CREATE TABLE table_name_51 (built VARCHAR, to_iow VARCHAR, withdrawn VARCHAR, br_sr_no VARCHAR)
Qual é o número para o ano construído de W27 que foi retirado em 1967 com um ano To LoW antes de 1926?
75,577
SELECT COUNT(withdrawn) FROM table_name_19 WHERE lswr_no > 210 AND to_iow = 1923
What is the number of the year withdrawn for a LSWR number greater than 210 and a To LoW year of 1923?
CREATE TABLE table_name_19 (withdrawn VARCHAR, lswr_no VARCHAR, to_iow VARCHAR)
Qual é o número do ano retirado para um número LSWR maior que 210 e um ano To LoW de 1923?
75,578
SELECT br_sr_no FROM table_name_25 WHERE withdrawn = 1967 AND built < 1892 AND to_iow > 1927 AND sr_name = "freshwater"
What is the BR/SR number of Freshwater which was withdrawn in 1967 and built before 1892 with a To LoW year after 1927?
CREATE TABLE table_name_25 (br_sr_no VARCHAR, sr_name VARCHAR, to_iow VARCHAR, withdrawn VARCHAR, built VARCHAR)
Qual é o número BR / SR de água doce que foi retirado em 1967 e construído antes de 1892 com um ano To LoW depois de 1927?
75,579
SELECT engine FROM table_name_76 WHERE year < 1977
Name the engine for year less than 1977
CREATE TABLE table_name_76 (engine VARCHAR, year INTEGER)
Nomeie o motor para o ano menos de 1977
75,580
SELECT start FROM table_name_70 WHERE year < 1977
Name the start for year less than 1977
CREATE TABLE table_name_70 (start VARCHAR, year INTEGER)
Nomear o início do ano menos de 1977
75,581
SELECT MIN(year) FROM table_name_13 WHERE start = "17th"
Name the least year for start of 17th
CREATE TABLE table_name_13 (year INTEGER, start VARCHAR)
Nomeie o ano mínimo para o início do 17o
75,582
SELECT start FROM table_name_39 WHERE finish = "21st"
Name the start for finish being 21st
CREATE TABLE table_name_39 (start VARCHAR, finish VARCHAR)
Nomeie o início para terminar sendo o 21o
75,583
SELECT call_sign FROM table_name_52 WHERE network = "omni television" AND digital_psip = 14.1
What is the Call sign of the Omni television network with a Digitial PSIP of 14.1?
CREATE TABLE table_name_52 (call_sign VARCHAR, network VARCHAR, digital_psip VARCHAR)
Qual é o sinal de chamada da rede de televisão Omni com um PSIP digital de 14.1?
75,584
SELECT COUNT(rogers_cable__ottawa_) FROM table_name_58 WHERE digital_psip > 9.1 AND vidéotron__gatineau_ = 14
What's the total number of Rogers Cable (Ottawa) channels that have a Digital PSIP greater than 9.1, and a Vidéotron (Gatineau) of channel 14?
CREATE TABLE table_name_58 (rogers_cable__ottawa_ VARCHAR, digital_psip VARCHAR, vidéotron__gatineau_ VARCHAR)
Qual é o número total de canais Rogers Cable (Ottawa) que têm um PSIP Digital maior que 9.1, e um Vidéotron (Gatineau) do canal 14?
75,585
SELECT network FROM table_name_26 WHERE vidéotron__gatineau_ < 8 AND rogers_cable__ottawa_ < 8 AND call_sign = "cjoh-dt"
Which Network is on a Vidéotron (Gatineau) channel lower than 8 and a Rogers Cable (Ottawa) channel lower than 8 and has a Call Sign of cjoh-dt?
CREATE TABLE table_name_26 (network VARCHAR, call_sign VARCHAR, vidéotron__gatineau_ VARCHAR, rogers_cable__ottawa_ VARCHAR)
Qual rede está em um canal Vidéotron (Gatineau) inferior a 8 e um canal Rogers Cable (Ottawa) inferior a 8 e tem um Call Sign de cjoh-dt?
75,586
SELECT record FROM table_name_35 WHERE time = "8:17"
What was the record after the fight that lasted 8:17?
CREATE TABLE table_name_35 (record VARCHAR, time VARCHAR)
Qual foi o recorde após a luta que durou 8:17?
75,587
SELECT res FROM table_name_27 WHERE opponent = "tony halme"
What was the result of the fight with Tony Halme?
CREATE TABLE table_name_27 (res VARCHAR, opponent VARCHAR)
Qual foi o resultado da luta com Tony Halme?
75,588
SELECT opponent FROM table_name_44 WHERE date = "august 26"
Who did they play on August 26?
CREATE TABLE table_name_44 (opponent VARCHAR, date VARCHAR)
Quem jogou no dia 26 de agosto?
75,589
SELECT SUM(attendance) FROM table_name_74 WHERE date = "august 16"
What was the attendance for the game on August 16?
CREATE TABLE table_name_74 (attendance INTEGER, date VARCHAR)
Qual foi o comparecimento para o jogo em 16 de agosto?
75,590
SELECT opponent FROM table_name_60 WHERE loss = "johnson (11-7)"
What team did Johnson (11-7) play for?
CREATE TABLE table_name_60 (opponent VARCHAR, loss VARCHAR)
Em que equipe Johnson (11-7) jogou?
75,591
SELECT MAX(pts) FROM table_name_51 WHERE engine = "cosworth straight-4"
What is the highest number of points the cosworth straight-4 engine scored?
CREATE TABLE table_name_51 (pts INTEGER, engine VARCHAR)
Qual é o maior número de pontos que o motor cosworth straight-4 marcou?
75,592
SELECT MAX(year) FROM table_name_13 WHERE entrant = "shadow racing team" AND pts > 0
What is the latest year that shadow racing team scored more than 0 points?
CREATE TABLE table_name_13 (year INTEGER, entrant VARCHAR, pts VARCHAR)
Qual foi o último ano em que a equipe de corridas de sombra marcou mais de 0 pontos?
75,593
SELECT round FROM table_name_43 WHERE location = "palavas-les-flots , herault , france"
What round was held in palavas-les-flots , herault , france?
CREATE TABLE table_name_43 (round VARCHAR, location VARCHAR)
Que rodada foi realizada em palavas-les-flots, herault, france?
75,594
SELECT 2 AS nd_leg FROM table_name_33 WHERE team_2 = "valencia"
What is the second leg that Valencia was on?
CREATE TABLE table_name_33 (team_2 VARCHAR)
Qual foi a segunda etapa em que o Valencia esteve?
75,595
SELECT loss FROM table_name_68 WHERE record = "14-19"
Name the loss with record of 14-19
CREATE TABLE table_name_68 (loss VARCHAR, record VARCHAR)
Nomeie a perda com o registro de 14-19
75,596
SELECT score FROM table_name_6 WHERE record = "17-27"
Name the score with record of 17-27
CREATE TABLE table_name_6 (score VARCHAR, record VARCHAR)
Nomeie a pontuação com o recorde de 17-27
75,597
SELECT opponent FROM table_name_20 WHERE record = "12-18"
Name the opponent with record of 12-18
CREATE TABLE table_name_20 (opponent VARCHAR, record VARCHAR)
Nomeie o adversário com um recorde de 12-18
75,598
SELECT general_classification FROM table_name_90 WHERE winner = "pascal richard"
Who was the General classification when Pascal Richard was the winner?
CREATE TABLE table_name_90 (general_classification VARCHAR, winner VARCHAR)
Quem foi a classificação geral quando Pascal Richard foi o vencedor?
75,599
SELECT points_classification FROM table_name_20 WHERE stage = "13"
Who had the Points classification for Stage 13?
CREATE TABLE table_name_20 (points_classification VARCHAR, stage VARCHAR)
Quem teve a classificação de Pontos para o Estágio 13?