pergunta
stringlengths
8
31.4k
contexto
stringlengths
27
489
resposta
stringlengths
18
557
Qual é o tempo de hemorragia com tempo de tromboplastina parcial não afetado e a condição é insuficiência hepática, precoce
CREATE TABLE table_14006_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, condition VARCHAR)
SELECT bleeding_time FROM table_14006_1 WHERE partial_thromboplastin_time = "Unaffected" AND condition = "Liver failure , early"
Quantos dos funcionários eleitos estão na Comissão de Assuntos Económicos?
CREATE TABLE table_14009909_1 (first_elected VARCHAR, committee VARCHAR)
SELECT COUNT(first_elected) FROM table_14009909_1 WHERE committee = "Economic Matters"
Nomeia o delegado eleito pela primeira vez em 2003?
CREATE TABLE table_14009909_1 (delegate VARCHAR, first_elected VARCHAR)
SELECT delegate FROM table_14009909_1 WHERE first_elected = 2003
Quais são os condados representados no Distrito 12.1 12a?
CREATE TABLE table_14009909_1 (counties_represented VARCHAR, district VARCHAR)
SELECT counties_represented FROM table_14009909_1 WHERE district = "12.1 12A"
Que país tem um delegado que foi eleito pela primeira vez em 2006?
CREATE TABLE table_14009909_1 (counties_represented VARCHAR, first_elected VARCHAR)
SELECT counties_represented FROM table_14009909_1 WHERE first_elected = 2006
Quem são os jogadores estrangeiros que representam Ekaterinburg?
CREATE TABLE table_14015965_1 (foreign_players__max_2_ VARCHAR, town VARCHAR)
SELECT foreign_players__max_2_ FROM table_14015965_1 WHERE town = "Ekaterinburg"
Em que cidade está localizado o Complexo Esportivo de Voleibol (3 500)?
CREATE TABLE table_14015965_1 (town VARCHAR, arena__capacity_ VARCHAR)
SELECT town FROM table_14015965_1 WHERE arena__capacity_ = "Volleyball Sportiv Complex (3 500)"
Em que arena foi a sexta temporada?
CREATE TABLE table_14015965_1 (arena__capacity_ VARCHAR, previous_season VARCHAR)
SELECT arena__capacity_ FROM table_14015965_1 WHERE previous_season = "6"
Quem era o treinador da segunda temporada?
CREATE TABLE table_14015965_1 (head_coach VARCHAR, previous_season VARCHAR)
SELECT head_coach FROM table_14015965_1 WHERE previous_season = "2"
Em que circuito foi realizada a corrida City of Ipswich 400?
CREATE TABLE table_14016079_1 (circuit VARCHAR, race_title VARCHAR)
SELECT circuit FROM table_14016079_1 WHERE race_title = "City of Ipswich 400"
Quem foi o vencedor no Symmons Plains Raceway?
CREATE TABLE table_14016079_1 (winner VARCHAR, circuit VARCHAR)
SELECT winner FROM table_14016079_1 WHERE circuit = "Symmons Plains Raceway"
Quais eram as datas da oitava rodada?
CREATE TABLE table_14016079_1 (date VARCHAR, rd VARCHAR)
SELECT date FROM table_14016079_1 WHERE rd = 8
Qual era o número de rodadas no Hidden Valley Raceway?
CREATE TABLE table_14016079_1 (rd VARCHAR, circuit VARCHAR)
SELECT COUNT(rd) FROM table_14016079_1 WHERE circuit = "Hidden Valley Raceway"
Que ronda foi realizada no Queensland Raceway?
CREATE TABLE table_14016079_1 (rd VARCHAR, circuit VARCHAR)
SELECT rd FROM table_14016079_1 WHERE circuit = "Queensland Raceway"
Qual o número mais alto para o oposto de ofensiva para o Green Bay Packers
CREATE TABLE table_1402270_1 (team_defense_rank INTEGER, nfl_team VARCHAR)
SELECT MAX(team_defense_rank) FROM table_1402270_1 WHERE nfl_team = "Green Bay Packers"
Quantos condados têm uma área de 1.205,4 km2?
CREATE TABLE table_1404414_2 (code VARCHAR, area__km_2__ VARCHAR)
SELECT COUNT(code) FROM table_1404414_2 WHERE area__km_2__ = "1,205.4"
Que capital tem uma população de 596268?
CREATE TABLE table_1404414_2 (capital VARCHAR, population_census_2009 VARCHAR)
SELECT capital FROM table_1404414_2 WHERE population_census_2009 = 596268
Qual é a capital com área (km 2) sendo 12,245.9
CREATE TABLE table_1404456_1 (capital VARCHAR, area__km_2__ VARCHAR)
SELECT capital FROM table_1404456_1 WHERE area__km_2__ = "12,245.9"
Qual é a antiga província com área (km 2) sendo 12.245,9
CREATE TABLE table_1404456_1 (former_province VARCHAR, area__km_2__ VARCHAR)
SELECT former_province FROM table_1404456_1 WHERE area__km_2__ = "12,245.9"
Quantas capitais com o censo de população de 2009 sendo 284657
CREATE TABLE table_1404456_1 (capital VARCHAR, population_census_2009 VARCHAR)
SELECT COUNT(capital) FROM table_1404456_1 WHERE population_census_2009 = 284657
Qual é a área (km 2) com o censo de população de 2009 sendo 939370
CREATE TABLE table_1404456_1 (area__km_2__ VARCHAR, population_census_2009 VARCHAR)
SELECT area__km_2__ FROM table_1404456_1 WHERE population_census_2009 = 939370
Qual é o código mínimo com área (km 2) sendo 12,245.9
CREATE TABLE table_1404456_1 (code INTEGER, area__km_2__ VARCHAR)
SELECT MIN(code) FROM table_1404456_1 WHERE area__km_2__ = "12,245.9"
Qual é o condado com o código sendo 2
CREATE TABLE table_1404456_1 (county VARCHAR, code VARCHAR)
SELECT county FROM table_1404456_1 WHERE code = 2
Em que ano ganhou Tom Sneva uma corrida?
CREATE TABLE table_1405704_1 (season VARCHAR, winning_driver VARCHAR)
SELECT season FROM table_1405704_1 WHERE winning_driver = "Tom Sneva"
Que tipo de chassis tinha um carro vencedor com um motor Foyt em 1979?
CREATE TABLE table_1405704_1 (chassis VARCHAR, season VARCHAR, engine VARCHAR)
SELECT chassis FROM table_1405704_1 WHERE season = 1979 AND engine = "Foyt"
Para que equipa é que o Al Unser dirige?
CREATE TABLE table_1405704_1 (team VARCHAR, winning_driver VARCHAR)
SELECT team FROM table_1405704_1 WHERE winning_driver = "Al Unser"
Que equipa tem um veículo com motor Offenhauser e chassi McLaren?
CREATE TABLE table_1405704_1 (team VARCHAR, chassis VARCHAR, engine VARCHAR)
SELECT team FROM table_1405704_1 WHERE chassis = "McLaren" AND engine = "Offenhauser"
Que equipa correu com um motor Foyt no Grande Prémio do Texas?
CREATE TABLE table_1405704_1 (team VARCHAR, race_name VARCHAR, engine VARCHAR)
SELECT team FROM table_1405704_1 WHERE race_name = "Texas Grand Prix" AND engine = "Foyt"
A que rede está ligado o canal virtual 9.1?
CREATE TABLE table_1404984_1 (network VARCHAR, virtual_channel VARCHAR)
SELECT network FROM table_1404984_1 WHERE virtual_channel = "9.1"
Quem é o dono da estação no canal 33.3?
CREATE TABLE table_1404984_1 (station_ownership VARCHAR, virtual_channel VARCHAR)
SELECT station_ownership FROM table_1404984_1 WHERE virtual_channel = "33.3"
O que é o canal digital da JCTV?
CREATE TABLE table_1404984_1 (digital_channel VARCHAR, network VARCHAR)
SELECT digital_channel FROM table_1404984_1 WHERE network = "JCTV"
Qual é o sinal oficial do canal 33.7?
CREATE TABLE table_1404984_1 (call_sign VARCHAR, virtual_channel VARCHAR)
SELECT call_sign FROM table_1404984_1 WHERE virtual_channel = "33.7"
Qual é o canal virtual oficial da HSN em Minneapolis-St. Paul?
CREATE TABLE table_1404984_1 (virtual_channel VARCHAR, network VARCHAR)
SELECT virtual_channel FROM table_1404984_1 WHERE network = "HSN"
Quantas estações têm a Bounce TV?
CREATE TABLE table_1404984_1 (station_ownership VARCHAR, network VARCHAR)
SELECT COUNT(station_ownership) FROM table_1404984_1 WHERE network = "Bounce TV"
Quantos pontos foram feitos quando as tentativas foram de 83?
CREATE TABLE table_14058433_3 (points VARCHAR, tries_for VARCHAR)
SELECT points FROM table_14058433_3 WHERE tries_for = "83"
Quantos pontos há quando o perdido é 7?
CREATE TABLE table_14058433_3 (points_for VARCHAR, lost VARCHAR)
SELECT points_for FROM table_14058433_3 WHERE lost = "7"
Qual é o bónus de perder quando os pontos são 24?
CREATE TABLE table_14058433_3 (losing_bonus VARCHAR, points VARCHAR)
SELECT losing_bonus FROM table_14058433_3 WHERE points = "24"
Quantos pontos perdendo tem o Llandudno RFC?
CREATE TABLE table_14058433_3 (losing_bonus VARCHAR, club VARCHAR)
SELECT losing_bonus FROM table_14058433_3 WHERE club = "Llandudno RFC"
Qual é o bônus de tentativa para o Ruthin RFC?
CREATE TABLE table_14058433_3 (try_bonus VARCHAR, club VARCHAR)
SELECT try_bonus FROM table_14058433_3 WHERE club = "Ruthin RFC"
Quantos tentativas contra com perdido sendo 11
CREATE TABLE table_14058433_4 (tries_against VARCHAR, lost VARCHAR)
SELECT COUNT(tries_against) FROM table_14058433_4 WHERE lost = "11"
Qual é o ganho com o bônus de tentativa sendo 12
CREATE TABLE table_14058433_4 (won VARCHAR, try_bonus VARCHAR)
SELECT won FROM table_14058433_4 WHERE try_bonus = "12"
Qual é o sorteio com a perda sendo 4?
CREATE TABLE table_14058433_4 (drawn VARCHAR, lost VARCHAR)
SELECT drawn FROM table_14058433_4 WHERE lost = "4"
O que é que os pontos contra com perdido sendo 13
CREATE TABLE table_14058433_4 (points_against VARCHAR, lost VARCHAR)
SELECT points_against FROM table_14058433_4 WHERE lost = "13"
O que é o ponto contra com ganhou sendo 11
CREATE TABLE table_14058433_4 (points_against VARCHAR, won VARCHAR)
SELECT points_against FROM table_14058433_4 WHERE won = "11"
O que é o sorteio com pontos para ser 350
CREATE TABLE table_14058433_4 (drawn VARCHAR, points_for VARCHAR)
SELECT drawn FROM table_14058433_4 WHERE points_for = "350"
Quantos pontos para com pontos contra ser 177
CREATE TABLE table_14058433_5 (points_for VARCHAR, points_against VARCHAR)
SELECT COUNT(points_for) FROM table_14058433_5 WHERE points_against = "177"
O que se perdeu com o Clube sendo o Colwyn Bay RFC?
CREATE TABLE table_14058433_5 (lost VARCHAR, club VARCHAR)
SELECT lost FROM table_14058433_5 WHERE club = "Colwyn Bay RFC"
O que ganhou com tentativas por ter 84 anos?
CREATE TABLE table_14058433_5 (won VARCHAR, tries_for VARCHAR)
SELECT won FROM table_14058433_5 WHERE tries_for = "84"
Qual é o ganho com pontos por ser 596
CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR)
SELECT won FROM table_14058433_5 WHERE points_for = "596"
O que é o ponto para estar perdido?
CREATE TABLE table_14058433_5 (points_for VARCHAR, lost VARCHAR)
SELECT points_for FROM table_14058433_5 WHERE lost = "4"
Qual é o ganho com pontos por ser 643
CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR)
SELECT won FROM table_14058433_5 WHERE points_for = "643"
Qual é a palavra em mongol para "honghorцог"?
CREATE TABLE table_1408397_3 (telugu_తెలుగు VARCHAR, mongolian VARCHAR)
SELECT telugu_తెలుగు FROM table_1408397_3 WHERE mongolian = "Хонгорцог"
Qual é a palavra malaiala para punarvasu ಪುನರ್ವಸು em kannada?
CREATE TABLE table_1408397_3 (malayalam_മലയാളം VARCHAR, kannada_ಕನ್ನಡ VARCHAR)
SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE kannada_ಕನ್ನಡ = "Punarvasu ಪುನರ್ವಸು"
Qual é a palavra malaiala que está na lista como #10 na tabela?
CREATE TABLE table_1408397_3 (malayalam_മലയാളം VARCHAR, _number VARCHAR)
SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE _number = 10
Diz a pontuação quando os tempos foram 75
CREATE TABLE table_14070062_4 (points_against VARCHAR, tries_against VARCHAR)
SELECT points_against FROM table_14070062_4 WHERE tries_against = "75"
O resultado quando as tentativas foram 743
CREATE TABLE table_14070062_4 (points_against VARCHAR, points_for VARCHAR)
SELECT points_against FROM table_14070062_4 WHERE points_for = "743"
Diz-me quantas vitórias houve quando a pontuação era de 490
CREATE TABLE table_14070062_4 (won VARCHAR, points_for VARCHAR)
SELECT COUNT(won) FROM table_14070062_4 WHERE points_for = "490"
Quantos pontos extras houve quando a pontuação era de 48
CREATE TABLE table_14070062_4 (try_bonus VARCHAR, points VARCHAR)
SELECT try_bonus FROM table_14070062_4 WHERE points = "48"
Qual foi a pontuação extra quando a pontuação total foi 52
CREATE TABLE table_14070062_4 (losing_bonus VARCHAR, tries_for VARCHAR)
SELECT losing_bonus FROM table_14070062_4 WHERE tries_for = "52"
Qual era o resultado quando os figurantes eram 6 ?
CREATE TABLE table_14070062_4 (points VARCHAR, try_bonus VARCHAR)
SELECT points FROM table_14070062_4 WHERE try_bonus = "6"
A capital de qual país é Buenos Aires?
CREATE TABLE table_14098_1 (country_or_territory_with_flag VARCHAR, capital VARCHAR)
SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = "Buenos Aires"
Que unidade de medida para o Uruguai?
CREATE TABLE table_14098_1 (area__km²___per_sqmi_ VARCHAR, country_or_territory_with_flag VARCHAR)
SELECT area__km²___per_sqmi_ FROM table_14098_1 WHERE country_or_territory_with_flag = "Uruguay"
Que capital de país é Santiago?
CREATE TABLE table_14098_1 (country_or_territory_with_flag VARCHAR, capital VARCHAR)
SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = "Santiago"
Quem é o dublador (Englebeingh 1998 / Pioneer) com o dublador (Englebeingh 1997 / saban) sendo Alec Willows e o dublador (Englebeingh 2006 / Funimation) sendo Andy McAvin
CREATE TABLE table_1410384_1 (voice_actor__english_1998___pioneer_ VARCHAR, voice_actor__english_1997___saban_ VARCHAR, voice_actor__english_2006___funimation_ VARCHAR)
SELECT voice_actor__english_1998___pioneer_ FROM table_1410384_1 WHERE voice_actor__english_1997___saban_ = "Alec Willows" AND voice_actor__english_2006___funimation_ = "Andy McAvin"
Qual é o nome do personagem com o ator de voz (Englbeingh 1997 / Saban) sendo Ian James Corlett
CREATE TABLE table_1410384_1 (character_name VARCHAR, voice_actor__english_1997___saban_ VARCHAR)
SELECT character_name FROM table_1410384_1 WHERE voice_actor__english_1997___saban_ = "Ian James Corlett"
Qual é o nome do personagem com o ator de voz sendo Paul Dobson?
CREATE TABLE table_1410384_1 (character_name VARCHAR, voice_actor__english_1998___pioneer_ VARCHAR)
SELECT character_name FROM table_1410384_1 WHERE voice_actor__english_1998___pioneer_ = "Paul Dobson"
Quantos atores de voz (Englbeingh 1998 / Pioneer) com atores de voz (japonês) sendo Shinobu Satouchi
CREATE TABLE table_1410384_1 (voice_actor__english_1998___pioneer_ VARCHAR, voice_actor__japanese_ VARCHAR)
SELECT COUNT(voice_actor__english_1998___pioneer_) FROM table_1410384_1 WHERE voice_actor__japanese_ = "Shinobu Satouchi"
Quem é o ator de voz (japonês) com o nome de personagem sendo Goku
CREATE TABLE table_1410384_1 (voice_actor__japanese_ VARCHAR, character_name VARCHAR)
SELECT voice_actor__japanese_ FROM table_1410384_1 WHERE character_name = "Goku"
Quantas grandes vitórias tem a Universidade do Peru ?
CREATE TABLE table_14115168_4 (national_titles VARCHAR, school VARCHAR)
SELECT COUNT(national_titles) FROM table_14115168_4 WHERE school = "Peru State College"
Qual escola tem 14 grandes campeonatos
CREATE TABLE table_14115168_4 (school VARCHAR, national_titles VARCHAR)
SELECT school FROM table_14115168_4 WHERE national_titles = 14
Quantos campeonatos gerais tem a Universidade Concordia ?
CREATE TABLE table_14115168_4 (national_titles INTEGER, school VARCHAR)
SELECT MIN(national_titles) FROM table_14115168_4 WHERE school = "Concordia University"
Qual é a duração da missão com a STS-87?
CREATE TABLE table_14118521_1 (duration VARCHAR, mission VARCHAR)
SELECT duration FROM table_14118521_1 WHERE mission = "STS-87"
Qual é o voo do Edo com duração de 17 dias, 15 horas, 53 minutos, 18 segundos
CREATE TABLE table_14118521_1 (edo_flight VARCHAR, duration VARCHAR)
SELECT edo_flight FROM table_14118521_1 WHERE duration = "17 days, 15 hours, 53 minutes, 18 seconds"
Qual é a carga útil principal com data de lançamento sendo 8 de julho de 1994
CREATE TABLE table_14118521_1 (primary_payload_s_ VARCHAR, launch_date VARCHAR)
SELECT primary_payload_s_ FROM table_14118521_1 WHERE launch_date = "July 8, 1994"
Qual é a missão com a carga primária sendo o laboratório espacial de ciências da vida-2
CREATE TABLE table_14118521_1 (mission VARCHAR, primary_payload_s_ VARCHAR)
SELECT mission FROM table_14118521_1 WHERE primary_payload_s_ = "Spacelab Life Sciences-2"
Qual é o ônibus espacial com a carga principal sendo o laboratório de microgravidade dos Estados Unidos-1?
CREATE TABLE table_14118521_1 (shuttle VARCHAR, primary_payload_s_ VARCHAR)
SELECT shuttle FROM table_14118521_1 WHERE primary_payload_s_ = "United States Microgravity Laboratory-1"
Quantas cargas primárias com o ônibus sendo Columbia e duração sendo 13 dias, 19 horas, 30 minutos, 4 segundos
CREATE TABLE table_14118521_1 (primary_payload_s_ VARCHAR, shuttle VARCHAR, duration VARCHAR)
SELECT COUNT(primary_payload_s_) FROM table_14118521_1 WHERE shuttle = "Columbia" AND duration = "13 days, 19 hours, 30 minutes, 4 seconds"
O que é que tem a equipa de Copron, a equipa de Scott?
CREATE TABLE table_14139408_1 (pts VARCHAR, team VARCHAR)
SELECT pts FROM table_14139408_1 WHERE team = "Kopron team Scot"
Qual é o pts com posição sendo nc
CREATE TABLE table_14139408_1 (pts VARCHAR, position VARCHAR)
SELECT pts FROM table_14139408_1 WHERE position = "NC"
Qual é o PTS com os postes sendo menores que 1.0 e a moto sendo Abril e a classe sendo 250cc
CREATE TABLE table_14139408_1 (pts VARCHAR, class VARCHAR, poles VARCHAR, motorcycle VARCHAR)
SELECT pts FROM table_14139408_1 WHERE poles < 1.0 AND motorcycle = "Aprilia" AND class = "250cc"
O que é os pts com os pólos sendo 81
CREATE TABLE table_14139408_1 (poles VARCHAR, pts VARCHAR)
SELECT poles FROM table_14139408_1 WHERE pts = "81"
Quantas classes com polos sendo maiores que 1.0
CREATE TABLE table_14139408_1 (class VARCHAR, poles INTEGER)
SELECT COUNT(class) FROM table_14139408_1 WHERE poles > 1.0
Qual é a posição com a equipe sendo uma equipe de corridas hábil
CREATE TABLE table_14139408_1 (position VARCHAR, team VARCHAR)
SELECT position FROM table_14139408_1 WHERE team = "Skilled Racing team"
Quem foi o vencedor do prémio defensivo em fevereiro, quando o prémio de novato foi dado a Rhys Duch?
CREATE TABLE table_14132239_3 (defensive VARCHAR, month VARCHAR, rookie VARCHAR)
SELECT defensive FROM table_14132239_3 WHERE month = "February" AND rookie = "Rhys Duch"
Quem foi o vencedor da semana em que o Bob Watson recebeu o prémio geral?
CREATE TABLE table_14132239_3 (offensive VARCHAR, overall VARCHAR)
SELECT offensive FROM table_14132239_3 WHERE overall = "Bob Watson"
Quem foi o vencedor do prémio defensivo quando o prémio de novato foi dado a Daryl Veltman e o prémio ofensivo foi dado a Mark Steenhuis?
CREATE TABLE table_14132239_3 (defensive VARCHAR, rookie VARCHAR, offensive VARCHAR)
SELECT defensive FROM table_14132239_3 WHERE rookie = "Daryl Veltman" AND offensive = "Mark Steenhuis"
Quem ganhou o prêmio de novato na semana em que o prêmio de transição foi dado a Brodie Merrill e o prêmio ofensivo foi dado a Pat Maddalena?
CREATE TABLE table_14132239_3 (rookie VARCHAR, transition VARCHAR, offensive VARCHAR)
SELECT rookie FROM table_14132239_3 WHERE transition = "Brodie Merrill" AND offensive = "Pat Maddalena"
Qual é o valor de matrícula mais baixo dos valores de matrícula que eu dei as escolas com um esclarecimento 3A WIAA?
CREATE TABLE table_1414702_3 (enrollment INTEGER, wiaa_classification VARCHAR)
SELECT MIN(enrollment) FROM table_1414702_3 WHERE wiaa_classification = "3A"
Qual é a classificação da WIAA da Oakland Alternative High School?
CREATE TABLE table_1414702_3 (wiaa_classification VARCHAR, high_school VARCHAR)
SELECT wiaa_classification FROM table_1414702_3 WHERE high_school = "Oakland Alternative"
Quando foi estabelecido o Monte Tahoma?
CREATE TABLE table_1414702_3 (established INTEGER, high_school VARCHAR)
SELECT MAX(established) FROM table_1414702_3 WHERE high_school = "Mount Tahoma"
Qual é a nota sobre a escola estabelecida no ano de 1973?
CREATE TABLE table_1414702_3 (notes VARCHAR, established VARCHAR)
SELECT notes FROM table_1414702_3 WHERE established = 1973
Quem estava no 4o distrito em 1924?
CREATE TABLE table_14123513_5 (year VARCHAR)
SELECT 4 AS th_district FROM table_14123513_5 WHERE year = 1924
Lista todos os professores do ensino médio em Sunnyvale.
CREATE TABLE table_1414743_1 (fte_teachers VARCHAR, school_level VARCHAR, city VARCHAR)
SELECT fte_teachers FROM table_1414743_1 WHERE school_level = "Middle" AND city = "Sunnyvale"
Qual é o maior número de alunos com uma proporção de professor: aluno de 20,8?
CREATE TABLE table_1414743_1 (students INTEGER, pupil_teacher_ratio VARCHAR)
SELECT MAX(students) FROM table_1414743_1 WHERE pupil_teacher_ratio = "20.8"
Quantos professores de FTE existem quando a proporção estudante:professor é de 19?
CREATE TABLE table_1414743_1 (fte_teachers VARCHAR, pupil_teacher_ratio VARCHAR)
SELECT fte_teachers FROM table_1414743_1 WHERE pupil_teacher_ratio = "19"
Que edição do Congresso para o membro eleito Richard P. Giles?
CREATE TABLE table_14158567_1 (congress VARCHAR, member_elect VARCHAR)
SELECT congress FROM table_14158567_1 WHERE member_elect = "Richard P. Giles"
Quantos elevações médias com o ponto mais baixo sendo o Golfo do México e o estado sendo o Texas
CREATE TABLE table_1416612_1 (mean_elevation VARCHAR, lowest_point VARCHAR, state VARCHAR)
SELECT COUNT(mean_elevation) FROM table_1416612_1 WHERE lowest_point = "Gulf of Mexico" AND state = "Texas"
Qual é o ponto mais alto com o ponto mais baixo sendo o rio Belle Fourche na fronteira do Dakota do Sul
CREATE TABLE table_1416612_1 (highest_point VARCHAR, lowest_point VARCHAR)
SELECT highest_point FROM table_1416612_1 WHERE lowest_point = "Belle Fourche River at South Dakota border"
Qual é a menor elevação com o ponto mais alto sendo o monte Charles?
CREATE TABLE table_1416612_1 (lowest_elevation VARCHAR, highest_point VARCHAR)
SELECT lowest_elevation FROM table_1416612_1 WHERE highest_point = "Charles Mound"
Qual é o ponto mais baixo com o ponto mais alto sendo o Monte Greylock
CREATE TABLE table_1416612_1 (lowest_point VARCHAR, highest_point VARCHAR)
SELECT lowest_point FROM table_1416612_1 WHERE highest_point = "Mount Greylock"