question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
what's the bleeding time with partial thromboplastin time being unaffected and condition being liver failure , early
CREATE TABLE table_14006_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, condition VARCHAR)
{ "SQL_Query": "SELECT bleeding_time FROM table_14006_1 WHERE partial_thromboplastin_time = \"Unaffected\" AND condition = \"Liver failure , early\"" }
How many of the elected officials are on the Economic Matters committee?
CREATE TABLE table_14009909_1 (first_elected VARCHAR, committee VARCHAR)
{ "SQL_Query": "SELECT COUNT(first_elected) FROM table_14009909_1 WHERE committee = \"Economic Matters\"" }
Name the delegate first elected in 2003?
CREATE TABLE table_14009909_1 (delegate VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT delegate FROM table_14009909_1 WHERE first_elected = 2003" }
What are the counties represented in District 12.1 12a?
CREATE TABLE table_14009909_1 (counties_represented VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT counties_represented FROM table_14009909_1 WHERE district = \"12.1 12A\"" }
Which country has a delegate who was first elected in 2006?
CREATE TABLE table_14009909_1 (counties_represented VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT counties_represented FROM table_14009909_1 WHERE first_elected = 2006" }
Who are the foreign players representing Ekaterinburg?
CREATE TABLE table_14015965_1 (foreign_players__max_2_ VARCHAR, town VARCHAR)
{ "SQL_Query": "SELECT foreign_players__max_2_ FROM table_14015965_1 WHERE town = \"Ekaterinburg\"" }
What town is Volleyball Sportiv Complex (3 500) located in?
CREATE TABLE table_14015965_1 (town VARCHAR, arena__capacity_ VARCHAR)
{ "SQL_Query": "SELECT town FROM table_14015965_1 WHERE arena__capacity_ = \"Volleyball Sportiv Complex (3 500)\"" }
What arena was season 6 played at?
CREATE TABLE table_14015965_1 (arena__capacity_ VARCHAR, previous_season VARCHAR)
{ "SQL_Query": "SELECT arena__capacity_ FROM table_14015965_1 WHERE previous_season = \"6\"" }
Who was the head coach in season 2?
CREATE TABLE table_14015965_1 (head_coach VARCHAR, previous_season VARCHAR)
{ "SQL_Query": "SELECT head_coach FROM table_14015965_1 WHERE previous_season = \"2\"" }
On what circuit was the City of Ipswich 400 race held?
CREATE TABLE table_14016079_1 (circuit VARCHAR, race_title VARCHAR)
{ "SQL_Query": "SELECT circuit FROM table_14016079_1 WHERE race_title = \"City of Ipswich 400\"" }
Who was the winner on the Symmons Plains Raceway?
CREATE TABLE table_14016079_1 (winner VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_14016079_1 WHERE circuit = \"Symmons Plains Raceway\"" }
What were the dates for Round 8?
CREATE TABLE table_14016079_1 (date VARCHAR, rd VARCHAR)
{ "SQL_Query": "SELECT date FROM table_14016079_1 WHERE rd = 8" }
What was the number of rounds on the Hidden Valley Raceway?
CREATE TABLE table_14016079_1 (rd VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT COUNT(rd) FROM table_14016079_1 WHERE circuit = \"Hidden Valley Raceway\"" }
What round was held at the Queensland Raceway?
CREATE TABLE table_14016079_1 (rd VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT rd FROM table_14016079_1 WHERE circuit = \"Queensland Raceway\"" }
what the highest number for the opposite of offense for the green bay packers
CREATE TABLE table_1402270_1 (team_defense_rank INTEGER, nfl_team VARCHAR)
{ "SQL_Query": "SELECT MAX(team_defense_rank) FROM table_1402270_1 WHERE nfl_team = \"Green Bay Packers\"" }
How many counties have an area of 1,205.4 km2?
CREATE TABLE table_1404414_2 (code VARCHAR, area__km_2__ VARCHAR)
{ "SQL_Query": "SELECT COUNT(code) FROM table_1404414_2 WHERE area__km_2__ = \"1,205.4\"" }
What capital has a population of 596268?
CREATE TABLE table_1404414_2 (capital VARCHAR, population_census_2009 VARCHAR)
{ "SQL_Query": "SELECT capital FROM table_1404414_2 WHERE population_census_2009 = 596268" }
what's the capital with area (km 2 ) being 12,245.9
CREATE TABLE table_1404456_1 (capital VARCHAR, area__km_2__ VARCHAR)
{ "SQL_Query": "SELECT capital FROM table_1404456_1 WHERE area__km_2__ = \"12,245.9\"" }
what's the former province with area (km 2 ) being 12,245.9
CREATE TABLE table_1404456_1 (former_province VARCHAR, area__km_2__ VARCHAR)
{ "SQL_Query": "SELECT former_province FROM table_1404456_1 WHERE area__km_2__ = \"12,245.9\"" }
how many capital with population census 2009 being 284657
CREATE TABLE table_1404456_1 (capital VARCHAR, population_census_2009 VARCHAR)
{ "SQL_Query": "SELECT COUNT(capital) FROM table_1404456_1 WHERE population_census_2009 = 284657" }
what's the area (km 2 ) with population census 2009 being 939370
CREATE TABLE table_1404456_1 (area__km_2__ VARCHAR, population_census_2009 VARCHAR)
{ "SQL_Query": "SELECT area__km_2__ FROM table_1404456_1 WHERE population_census_2009 = 939370" }
what is the minimum code with area (km 2 ) being 12,245.9
CREATE TABLE table_1404456_1 (code INTEGER, area__km_2__ VARCHAR)
{ "SQL_Query": "SELECT MIN(code) FROM table_1404456_1 WHERE area__km_2__ = \"12,245.9\"" }
what's the county with code being 2
CREATE TABLE table_1404456_1 (county VARCHAR, code VARCHAR)
{ "SQL_Query": "SELECT county FROM table_1404456_1 WHERE code = 2" }
In what year did Tom Sneva win a race?
CREATE TABLE table_1405704_1 (season VARCHAR, winning_driver VARCHAR)
{ "SQL_Query": "SELECT season FROM table_1405704_1 WHERE winning_driver = \"Tom Sneva\"" }
What kind of chassis did a winning car with a Foyt engine have in 1979?
CREATE TABLE table_1405704_1 (chassis VARCHAR, season VARCHAR, engine VARCHAR)
{ "SQL_Query": "SELECT chassis FROM table_1405704_1 WHERE season = 1979 AND engine = \"Foyt\"" }
What team does Al Unser drive for?
CREATE TABLE table_1405704_1 (team VARCHAR, winning_driver VARCHAR)
{ "SQL_Query": "SELECT team FROM table_1405704_1 WHERE winning_driver = \"Al Unser\"" }
What team has a vehicle with an Offenhauser engine and a McLaren chassis?
CREATE TABLE table_1405704_1 (team VARCHAR, chassis VARCHAR, engine VARCHAR)
{ "SQL_Query": "SELECT team FROM table_1405704_1 WHERE chassis = \"McLaren\" AND engine = \"Offenhauser\"" }
What team raced with a Foyt engine in the Texas Grand Prix?
CREATE TABLE table_1405704_1 (team VARCHAR, race_name VARCHAR, engine VARCHAR)
{ "SQL_Query": "SELECT team FROM table_1405704_1 WHERE race_name = \"Texas Grand Prix\" AND engine = \"Foyt\"" }
What network is virtual channel 9.1 linked to?
CREATE TABLE table_1404984_1 (network VARCHAR, virtual_channel VARCHAR)
{ "SQL_Query": "SELECT network FROM table_1404984_1 WHERE virtual_channel = \"9.1\"" }
Who owns the station on channel 33.3?
CREATE TABLE table_1404984_1 (station_ownership VARCHAR, virtual_channel VARCHAR)
{ "SQL_Query": "SELECT station_ownership FROM table_1404984_1 WHERE virtual_channel = \"33.3\"" }
What is JCTV's digital channel?
CREATE TABLE table_1404984_1 (digital_channel VARCHAR, network VARCHAR)
{ "SQL_Query": "SELECT digital_channel FROM table_1404984_1 WHERE network = \"JCTV\"" }
What is channel 33.7's official call sign?
CREATE TABLE table_1404984_1 (call_sign VARCHAR, virtual_channel VARCHAR)
{ "SQL_Query": "SELECT call_sign FROM table_1404984_1 WHERE virtual_channel = \"33.7\"" }
What is HSN's official virtual channel in Minneapolis-St. Paul?
CREATE TABLE table_1404984_1 (virtual_channel VARCHAR, network VARCHAR)
{ "SQL_Query": "SELECT virtual_channel FROM table_1404984_1 WHERE network = \"HSN\"" }
How many stations own Bounce TV?
CREATE TABLE table_1404984_1 (station_ownership VARCHAR, network VARCHAR)
{ "SQL_Query": "SELECT COUNT(station_ownership) FROM table_1404984_1 WHERE network = \"Bounce TV\"" }
How many points were made when the tries for was 83?
CREATE TABLE table_14058433_3 (points VARCHAR, tries_for VARCHAR)
{ "SQL_Query": "SELECT points FROM table_14058433_3 WHERE tries_for = \"83\"" }
How many points are there when the lost is 7?
CREATE TABLE table_14058433_3 (points_for VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT points_for FROM table_14058433_3 WHERE lost = \"7\"" }
What is the losing bonus when the points are 24?
CREATE TABLE table_14058433_3 (losing_bonus VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT losing_bonus FROM table_14058433_3 WHERE points = \"24\"" }
How many losing points does Llandudno RFC have?
CREATE TABLE table_14058433_3 (losing_bonus VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT losing_bonus FROM table_14058433_3 WHERE club = \"Llandudno RFC\"" }
What is the try bonus for Ruthin RFC?
CREATE TABLE table_14058433_3 (try_bonus VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT try_bonus FROM table_14058433_3 WHERE club = \"Ruthin RFC\"" }
how many tries against with lost being 11
CREATE TABLE table_14058433_4 (tries_against VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT COUNT(tries_against) FROM table_14058433_4 WHERE lost = \"11\"" }
what's the won with try bonus being 12
CREATE TABLE table_14058433_4 (won VARCHAR, try_bonus VARCHAR)
{ "SQL_Query": "SELECT won FROM table_14058433_4 WHERE try_bonus = \"12\"" }
what's the drawn with lost being 4
CREATE TABLE table_14058433_4 (drawn VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT drawn FROM table_14058433_4 WHERE lost = \"4\"" }
what's the points against with lost being 13
CREATE TABLE table_14058433_4 (points_against VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT points_against FROM table_14058433_4 WHERE lost = \"13\"" }
what's the points against with won being 11
CREATE TABLE table_14058433_4 (points_against VARCHAR, won VARCHAR)
{ "SQL_Query": "SELECT points_against FROM table_14058433_4 WHERE won = \"11\"" }
what's the drawn with points for being 350
CREATE TABLE table_14058433_4 (drawn VARCHAR, points_for VARCHAR)
{ "SQL_Query": "SELECT drawn FROM table_14058433_4 WHERE points_for = \"350\"" }
how many points for with points against being 177
CREATE TABLE table_14058433_5 (points_for VARCHAR, points_against VARCHAR)
{ "SQL_Query": "SELECT COUNT(points_for) FROM table_14058433_5 WHERE points_against = \"177\"" }
what's the lost with club being colwyn bay rfc
CREATE TABLE table_14058433_5 (lost VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT lost FROM table_14058433_5 WHERE club = \"Colwyn Bay RFC\"" }
what's the won with tries for being 84
CREATE TABLE table_14058433_5 (won VARCHAR, tries_for VARCHAR)
{ "SQL_Query": "SELECT won FROM table_14058433_5 WHERE tries_for = \"84\"" }
what's the won with points for being 596
CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR)
{ "SQL_Query": "SELECT won FROM table_14058433_5 WHERE points_for = \"596\"" }
what's the points for with lost being 4
CREATE TABLE table_14058433_5 (points_for VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT points_for FROM table_14058433_5 WHERE lost = \"4\"" }
what's the won with points for being 643
CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR)
{ "SQL_Query": "SELECT won FROM table_14058433_5 WHERE points_for = \"643\"" }
What is the Telugu word for хонгорцог in Mongolian?
CREATE TABLE table_1408397_3 (telugu_తెలుగు VARCHAR, mongolian VARCHAR)
{ "SQL_Query": "SELECT telugu_తెలుగు FROM table_1408397_3 WHERE mongolian = \"Хонгорцог\"" }
What is the Malayalam word for punarvasu ಪುನರ್ವಸು in Kannada?
CREATE TABLE table_1408397_3 (malayalam_മലയാളം VARCHAR, kannada_ಕನ್ನಡ VARCHAR)
{ "SQL_Query": "SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE kannada_ಕನ್ನಡ = \"Punarvasu ಪುನರ್ವಸು\"" }
What is the Malayalam word that is listed as #10 in the table?
CREATE TABLE table_1408397_3 (malayalam_മലയാളം VARCHAR, _number VARCHAR)
{ "SQL_Query": "SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE _number = 10" }
tell the score when the times gone was 75
CREATE TABLE table_14070062_4 (points_against VARCHAR, tries_against VARCHAR)
{ "SQL_Query": "SELECT points_against FROM table_14070062_4 WHERE tries_against = \"75\"" }
was the the score when the tries was 743
CREATE TABLE table_14070062_4 (points_against VARCHAR, points_for VARCHAR)
{ "SQL_Query": "SELECT points_against FROM table_14070062_4 WHERE points_for = \"743\"" }
tell how many wins there was when the score was 490
CREATE TABLE table_14070062_4 (won VARCHAR, points_for VARCHAR)
{ "SQL_Query": "SELECT COUNT(won) FROM table_14070062_4 WHERE points_for = \"490\"" }
how many extra points were there when the score was 48
CREATE TABLE table_14070062_4 (try_bonus VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT try_bonus FROM table_14070062_4 WHERE points = \"48\"" }
what was the extra score when the overall score was 52
CREATE TABLE table_14070062_4 (losing_bonus VARCHAR, tries_for VARCHAR)
{ "SQL_Query": "SELECT losing_bonus FROM table_14070062_4 WHERE tries_for = \"52\"" }
what was the score when the extras were 6
CREATE TABLE table_14070062_4 (points VARCHAR, try_bonus VARCHAR)
{ "SQL_Query": "SELECT points FROM table_14070062_4 WHERE try_bonus = \"6\"" }
What country's capital is buenos aires?
CREATE TABLE table_14098_1 (country_or_territory_with_flag VARCHAR, capital VARCHAR)
{ "SQL_Query": "SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = \"Buenos Aires\"" }
What unit of measurement for uruguay?
CREATE TABLE table_14098_1 (area__km²___per_sqmi_ VARCHAR, country_or_territory_with_flag VARCHAR)
{ "SQL_Query": "SELECT area__km²___per_sqmi_ FROM table_14098_1 WHERE country_or_territory_with_flag = \"Uruguay\"" }
What country'c capital is santiago?
CREATE TABLE table_14098_1 (country_or_territory_with_flag VARCHAR, capital VARCHAR)
{ "SQL_Query": "SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = \"Santiago\"" }
who is the the voice actor (englbeingh 1998 / pioneer) with voice actor (englbeingh 1997 / saban) being alec willows and voice actor (englbeingh 2006 / funimation) being 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)
{ "SQL_Query": "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\"" }
what's the character name with voice actor (englbeingh 1997 / saban) being ian james corlett
CREATE TABLE table_1410384_1 (character_name VARCHAR, voice_actor__english_1997___saban_ VARCHAR)
{ "SQL_Query": "SELECT character_name FROM table_1410384_1 WHERE voice_actor__english_1997___saban_ = \"Ian James Corlett\"" }
what's the character name with voice actor (englbeingh 1998 / pioneer) being paul dobson
CREATE TABLE table_1410384_1 (character_name VARCHAR, voice_actor__english_1998___pioneer_ VARCHAR)
{ "SQL_Query": "SELECT character_name FROM table_1410384_1 WHERE voice_actor__english_1998___pioneer_ = \"Paul Dobson\"" }
how many voice actor (englbeingh 1998 / pioneer) with voice actor (japanese) being shinobu satouchi
CREATE TABLE table_1410384_1 (voice_actor__english_1998___pioneer_ VARCHAR, voice_actor__japanese_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(voice_actor__english_1998___pioneer_) FROM table_1410384_1 WHERE voice_actor__japanese_ = \"Shinobu Satouchi\"" }
who is the the voice actor (japanese) with character name being goku
CREATE TABLE table_1410384_1 (voice_actor__japanese_ VARCHAR, character_name VARCHAR)
{ "SQL_Query": "SELECT voice_actor__japanese_ FROM table_1410384_1 WHERE character_name = \"Goku\"" }
how many big wins does peru state college have
CREATE TABLE table_14115168_4 (national_titles VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT COUNT(national_titles) FROM table_14115168_4 WHERE school = \"Peru State College\"" }
which school has 14 large championships
CREATE TABLE table_14115168_4 (school VARCHAR, national_titles VARCHAR)
{ "SQL_Query": "SELECT school FROM table_14115168_4 WHERE national_titles = 14" }
how many overall championships does concordia university have
CREATE TABLE table_14115168_4 (national_titles INTEGER, school VARCHAR)
{ "SQL_Query": "SELECT MIN(national_titles) FROM table_14115168_4 WHERE school = \"Concordia University\"" }
what's the duration with mission being sts-87
CREATE TABLE table_14118521_1 (duration VARCHAR, mission VARCHAR)
{ "SQL_Query": "SELECT duration FROM table_14118521_1 WHERE mission = \"STS-87\"" }
what's the edo flight with duration being 17 days, 15 hours, 53 minutes, 18 seconds
CREATE TABLE table_14118521_1 (edo_flight VARCHAR, duration VARCHAR)
{ "SQL_Query": "SELECT edo_flight FROM table_14118521_1 WHERE duration = \"17 days, 15 hours, 53 minutes, 18 seconds\"" }
what's the primary payload(s) with launch date being july 8, 1994
CREATE TABLE table_14118521_1 (primary_payload_s_ VARCHAR, launch_date VARCHAR)
{ "SQL_Query": "SELECT primary_payload_s_ FROM table_14118521_1 WHERE launch_date = \"July 8, 1994\"" }
what's the mission with primary payload(s) being spacelab life sciences-2
CREATE TABLE table_14118521_1 (mission VARCHAR, primary_payload_s_ VARCHAR)
{ "SQL_Query": "SELECT mission FROM table_14118521_1 WHERE primary_payload_s_ = \"Spacelab Life Sciences-2\"" }
what's the shuttle with primary payload(s) being united states microgravity laboratory-1
CREATE TABLE table_14118521_1 (shuttle VARCHAR, primary_payload_s_ VARCHAR)
{ "SQL_Query": "SELECT shuttle FROM table_14118521_1 WHERE primary_payload_s_ = \"United States Microgravity Laboratory-1\"" }
how many primary payload(s) with shuttle being columbia and duration being 13 days, 19 hours, 30 minutes, 4 seconds
CREATE TABLE table_14118521_1 (primary_payload_s_ VARCHAR, shuttle VARCHAR, duration VARCHAR)
{ "SQL_Query": "SELECT COUNT(primary_payload_s_) FROM table_14118521_1 WHERE shuttle = \"Columbia\" AND duration = \"13 days, 19 hours, 30 minutes, 4 seconds\"" }
what's the pts with team being kopron team scot
CREATE TABLE table_14139408_1 (pts VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT pts FROM table_14139408_1 WHERE team = \"Kopron team Scot\"" }
what's the pts with position being nc
CREATE TABLE table_14139408_1 (pts VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT pts FROM table_14139408_1 WHERE position = \"NC\"" }
what's the pts with poles being smaller than 1.0 and motorcycle being aprilia and class being 250cc
CREATE TABLE table_14139408_1 (pts VARCHAR, class VARCHAR, poles VARCHAR, motorcycle VARCHAR)
{ "SQL_Query": "SELECT pts FROM table_14139408_1 WHERE poles < 1.0 AND motorcycle = \"Aprilia\" AND class = \"250cc\"" }
what's the poles with pts being 81
CREATE TABLE table_14139408_1 (poles VARCHAR, pts VARCHAR)
{ "SQL_Query": "SELECT poles FROM table_14139408_1 WHERE pts = \"81\"" }
how many class with poles being bigger than 1.0
CREATE TABLE table_14139408_1 (class VARCHAR, poles INTEGER)
{ "SQL_Query": "SELECT COUNT(class) FROM table_14139408_1 WHERE poles > 1.0" }
what's the position with team being skilled racing team
CREATE TABLE table_14139408_1 (position VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT position FROM table_14139408_1 WHERE team = \"Skilled Racing team\"" }
Who was the defensive award winner in February when the rookie award was given to Rhys Duch?
CREATE TABLE table_14132239_3 (defensive VARCHAR, month VARCHAR, rookie VARCHAR)
{ "SQL_Query": "SELECT defensive FROM table_14132239_3 WHERE month = \"February\" AND rookie = \"Rhys Duch\"" }
Who was the offensive award winner the week when Bob Watson was given the overall award?
CREATE TABLE table_14132239_3 (offensive VARCHAR, overall VARCHAR)
{ "SQL_Query": "SELECT offensive FROM table_14132239_3 WHERE overall = \"Bob Watson\"" }
Who was the defensive award winner when the rookie award was given to Daryl Veltman and the offensive award was given to Mark Steenhuis?
CREATE TABLE table_14132239_3 (defensive VARCHAR, rookie VARCHAR, offensive VARCHAR)
{ "SQL_Query": "SELECT defensive FROM table_14132239_3 WHERE rookie = \"Daryl Veltman\" AND offensive = \"Mark Steenhuis\"" }
Who won the rookie award the week the transition award was given to Brodie Merrill and the offensive award was given to Pat Maddalena?
CREATE TABLE table_14132239_3 (rookie VARCHAR, transition VARCHAR, offensive VARCHAR)
{ "SQL_Query": "SELECT rookie FROM table_14132239_3 WHERE transition = \"Brodie Merrill\" AND offensive = \"Pat Maddalena\"" }
What is the lowest enrollment value out of the enrollment values I'd the schools with a 3A WIAA clarification?
CREATE TABLE table_1414702_3 (enrollment INTEGER, wiaa_classification VARCHAR)
{ "SQL_Query": "SELECT MIN(enrollment) FROM table_1414702_3 WHERE wiaa_classification = \"3A\"" }
What is the WIAA classification of Oakland Alternative High School?
CREATE TABLE table_1414702_3 (wiaa_classification VARCHAR, high_school VARCHAR)
{ "SQL_Query": "SELECT wiaa_classification FROM table_1414702_3 WHERE high_school = \"Oakland Alternative\"" }
When was Mount Tahoma established?
CREATE TABLE table_1414702_3 (established INTEGER, high_school VARCHAR)
{ "SQL_Query": "SELECT MAX(established) FROM table_1414702_3 WHERE high_school = \"Mount Tahoma\"" }
What's the note about the school established in the year of 1973?
CREATE TABLE table_1414702_3 (notes VARCHAR, established VARCHAR)
{ "SQL_Query": "SELECT notes FROM table_1414702_3 WHERE established = 1973" }
Who was in the 4th district in 1924?
CREATE TABLE table_14123513_5 (year VARCHAR)
{ "SQL_Query": "SELECT 4 AS th_district FROM table_14123513_5 WHERE year = 1924" }
List all FTE middle school teachers in Sunnyvale.
CREATE TABLE table_1414743_1 (fte_teachers VARCHAR, school_level VARCHAR, city VARCHAR)
{ "SQL_Query": "SELECT fte_teachers FROM table_1414743_1 WHERE school_level = \"Middle\" AND city = \"Sunnyvale\"" }
What is the highest number of students with a teacher:student ratio of 20.8?
CREATE TABLE table_1414743_1 (students INTEGER, pupil_teacher_ratio VARCHAR)
{ "SQL_Query": "SELECT MAX(students) FROM table_1414743_1 WHERE pupil_teacher_ratio = \"20.8\"" }
How many FTE teachers are there when the student:teacher ration is 19?
CREATE TABLE table_1414743_1 (fte_teachers VARCHAR, pupil_teacher_ratio VARCHAR)
{ "SQL_Query": "SELECT fte_teachers FROM table_1414743_1 WHERE pupil_teacher_ratio = \"19\"" }
What edition of congress for member-elect richard p. giles?
CREATE TABLE table_14158567_1 (congress VARCHAR, member_elect VARCHAR)
{ "SQL_Query": "SELECT congress FROM table_14158567_1 WHERE member_elect = \"Richard P. Giles\"" }
how many mean elevation with lowest point being gulf of mexico and state being texas
CREATE TABLE table_1416612_1 (mean_elevation VARCHAR, lowest_point VARCHAR, state VARCHAR)
{ "SQL_Query": "SELECT COUNT(mean_elevation) FROM table_1416612_1 WHERE lowest_point = \"Gulf of Mexico\" AND state = \"Texas\"" }
what's the highest point with lowest point being belle fourche river at south dakota border
CREATE TABLE table_1416612_1 (highest_point VARCHAR, lowest_point VARCHAR)
{ "SQL_Query": "SELECT highest_point FROM table_1416612_1 WHERE lowest_point = \"Belle Fourche River at South Dakota border\"" }
what's the lowest elevation with highest point being charles mound
CREATE TABLE table_1416612_1 (lowest_elevation VARCHAR, highest_point VARCHAR)
{ "SQL_Query": "SELECT lowest_elevation FROM table_1416612_1 WHERE highest_point = \"Charles Mound\"" }
what's the lowest point with highest point being mount greylock
CREATE TABLE table_1416612_1 (lowest_point VARCHAR, highest_point VARCHAR)
{ "SQL_Query": "SELECT lowest_point FROM table_1416612_1 WHERE highest_point = \"Mount Greylock\"" }