answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT english_meaning FROM table_name_40 WHERE case_suffix__case_ = "-sa (dative)"
What is English Meaning, when Case Suffix (Case) is "-sa (dative)"?
CREATE TABLE table_name_40 (english_meaning VARCHAR, case_suffix__case_ VARCHAR)
SELECT name FROM table_name_34 WHERE born_died = "1873–1933"
What is the Name of the Prime Minister with a Born-Died of 1873–1933?
CREATE TABLE table_name_34 (name VARCHAR, born_died VARCHAR)
SELECT years_in_orlando FROM table_name_6 WHERE player = "carlos arroyo"
What is the Years in Orlando for carlos arroyo?
CREATE TABLE table_name_6 (years_in_orlando VARCHAR, player VARCHAR)
SELECT T1.Name FROM member AS T1 JOIN round AS T2 ON T1.Member_ID = T2.Member_ID WHERE T2.Rank_in_Round > 3
Show the names of members that have a rank in round higher than 3.
CREATE TABLE round (Member_ID VARCHAR, Rank_in_Round INTEGER); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR)
SELECT record FROM table_name_24 WHERE location = "boston garden" AND date = "fri. nov. 9"
What is Record, when Location is "Boston Garden", and when Date is "Fri. Nov. 9"?
CREATE TABLE table_name_24 (record VARCHAR, location VARCHAR, date VARCHAR)
SELECT AVG(total) FROM table_name_43 WHERE name = "kenwyne jones" AND premier_league > 10
What is the average total of kenwyne jones, who has more than 10 premier leagues?
CREATE TABLE table_name_43 (total INTEGER, name VARCHAR, premier_league VARCHAR)
SELECT nationality FROM table_name_97 WHERE elevator = "nicholas iii"
What's the nationality for Nicholas III?
CREATE TABLE table_name_97 (nationality VARCHAR, elevator VARCHAR)
SELECT COUNT(year) FROM table_name_45 WHERE surface = "clay" AND score = "4 : 0"
How many years have a Surface of clay, and a Score of 4 : 0?
CREATE TABLE table_name_45 (year VARCHAR, surface VARCHAR, score VARCHAR)
SELECT drivers FROM table_name_21 WHERE engine = "chevrolet" AND chassis = "eagle"
Who drove the Chevrolet with the Eagle chassis?
CREATE TABLE table_name_21 (drivers VARCHAR, engine VARCHAR, chassis VARCHAR)
SELECT city___state FROM table_name_80 WHERE circuit = "calder park raceway"
Which city or state contains Calder Park Raceway?
CREATE TABLE table_name_80 (city___state VARCHAR, circuit VARCHAR)
SELECT COUNT(gold) FROM table_name_27 WHERE bronze > 1 AND nation = "total" AND silver < 18
How many golds have a bronze greater than 1, total as the nation, and a silver less than 18?
CREATE TABLE table_name_27 (gold VARCHAR, silver VARCHAR, bronze VARCHAR, nation VARCHAR)
SELECT AVG(no_opinion) FROM table_name_94 WHERE date = "1954 november" AND favorable > 35
What is the average no opinion score during 1954 November that is more favorable than 35?
CREATE TABLE table_name_94 (no_opinion INTEGER, date VARCHAR, favorable VARCHAR)
SELECT SUM(silver) FROM table_name_52 WHERE bronze < 4 AND rank = "3" AND gold > 2
What is the sum of silver values that have bronze values under 4, golds over 2, and a rank of 3?
CREATE TABLE table_name_52 (silver INTEGER, gold VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT COUNT(population_estimate_2005) FROM table_name_26 WHERE area__km_2__ > 8 OFFSET 023.74
how many times was the population estimate 2005 have an area (km2) more than 8,023.74?
CREATE TABLE table_name_26 (population_estimate_2005 VARCHAR, area__km_2__ INTEGER)
SELECT county FROM table_name_36 WHERE ihsaa_football_class = "a" AND mascot = "royals"
What county has an IHSAA Football Class of A, and a Mascot of royals?
CREATE TABLE table_name_36 (county VARCHAR, ihsaa_football_class VARCHAR, mascot VARCHAR)
SELECT AVG(number_of_episodes) FROM table_name_34 WHERE genre = "modern drama" AND highest_average_point_ratings = 28
What are the number of episodes when the genre is modern drama and the highest average ratings points are 28?
CREATE TABLE table_name_34 (number_of_episodes INTEGER, genre VARCHAR, highest_average_point_ratings VARCHAR)
SELECT place FROM table_name_89 WHERE player = "greg norman"
What is Greg Norman's place?
CREATE TABLE table_name_89 (place VARCHAR, player VARCHAR)
SELECT seats_in_hamburgische_bürgerschaft FROM table_name_83 WHERE ideology = "green politics"
WHAT IS THE SEATS IN Hamburgische Bürgerschaft THAT HAS GREEN POLITICS?
CREATE TABLE table_name_83 (seats_in_hamburgische_bürgerschaft VARCHAR, ideology VARCHAR)
SELECT T1.Attraction_Type_Description, T2.Attraction_Type_Code FROM Ref_Attraction_Types AS T1 JOIN Tourist_Attractions AS T2 ON T1.Attraction_Type_Code = T2.Attraction_Type_Code GROUP BY T2.Attraction_Type_Code ORDER BY COUNT(*) DESC LIMIT 1
Show the description and code of the attraction type most tourist attractions belong to.
CREATE TABLE Ref_Attraction_Types (Attraction_Type_Description VARCHAR, Attraction_Type_Code VARCHAR); CREATE TABLE Tourist_Attractions (Attraction_Type_Code VARCHAR)
SELECT result FROM table_15778392_1 WHERE original_artist = "Betty Everett"
WHAT IS THE RESULT FOR THE SONG WHERE THE ORIGINAL ARTIST IS BETTY EVERETT?
CREATE TABLE table_15778392_1 (result VARCHAR, original_artist VARCHAR)
SELECT COUNT(top_10) FROM table_2216245_2 WHERE winnings = "$80,490"
How many top 10s did he have the year he won $80,490?
CREATE TABLE table_2216245_2 (top_10 VARCHAR, winnings VARCHAR)
SELECT p1_diameter__mm_ FROM table_26967904_2 WHERE chambering = ".300 Lapua Magnum"
What is the p1 diameter (mm) when .300 lapua magnum is the chambering?
CREATE TABLE table_26967904_2 (p1_diameter__mm_ VARCHAR, chambering VARCHAR)
SELECT MAX(no_in_series) FROM table_26736040_1 WHERE directed_by = "Phil Abraham"
What is the highest number in series with director as Phil Abraham?
CREATE TABLE table_26736040_1 (no_in_series INTEGER, directed_by VARCHAR)
SELECT AVG(total) FROM table_name_39 WHERE finish = "t11"
What is the average of the total when t11 is the finish?
CREATE TABLE table_name_39 (total INTEGER, finish VARCHAR)
SELECT SUM(goals) FROM table_name_48 WHERE season = "2004/05"
What is the sum of goals for the 2004/05 Season?
CREATE TABLE table_name_48 (goals INTEGER, season VARCHAR)
SELECT COUNT(votes_khuzestan) FROM table_1827900_1 WHERE _percentage_of_votes_khuzestan = "34.50"
How many figures for votes Khuzestan were there when the percentage was 34.50?
CREATE TABLE table_1827900_1 (votes_khuzestan VARCHAR, _percentage_of_votes_khuzestan VARCHAR)
SELECT MAX(pick__number) FROM table_name_95 WHERE cfl_team = "toronto argonauts"
What is the highest Pick # when the CFL Team is the Toronto Argonauts?
CREATE TABLE table_name_95 (pick__number INTEGER, cfl_team VARCHAR)
SELECT opponent FROM table_name_61 WHERE record = "82-68"
What opponnent has a record of 82-68?
CREATE TABLE table_name_61 (opponent VARCHAR, record VARCHAR)
SELECT 2006 FROM table_name_95 WHERE 2010 = "grand slam tournaments"
What 2006 has grand slam tournaments of 2010?
CREATE TABLE table_name_95 (Id VARCHAR)
SELECT MIN(tourist_arrivals__2011___millions_) FROM table_name_95 WHERE tourism_receipts__2011___us$_per_arrival_ = 507 AND tourism_receipts__2011___millions_of_us$_ < 11 OFFSET 869
What is the lowest tourism arrivals in 2011 in millions with 507 US $ per arrival in 2011 tourism receipts and less than 11,869 million of US $ in 2011 tourism receipts?
CREATE TABLE table_name_95 (tourist_arrivals__2011___millions_ INTEGER, tourism_receipts__2011___us$_per_arrival_ VARCHAR, tourism_receipts__2011___millions_of_us$_ VARCHAR)
SELECT f_id FROM files WHERE formats = "mp3"
What are the id of songs whose format is mp3.
CREATE TABLE files (f_id VARCHAR, formats VARCHAR)
SELECT COUNT(goals) FROM table_name_98 WHERE nationality = "england" AND position = "df" AND crewe_alexandra_career = "1958–1962" AND appearances < 170
What is the total number of Goals with a nationality of England, and position of DF, and a Crewe Alexandra career is 1958–1962, and less than 170 appearances?
CREATE TABLE table_name_98 (goals VARCHAR, appearances VARCHAR, crewe_alexandra_career VARCHAR, nationality VARCHAR, position VARCHAR)
SELECT MAX(points) FROM table_name_1 WHERE goals_for > 48 AND wins < 19 AND goals_against < 44 AND draws > 5
WHAT ARE THE HIGHEST POINTS WITH GOALS LARGER THAN 48, WINS LESS THAN 19, GOALS AGAINST SMALLER THAN 44, DRAWS LARGER THAN 5?
CREATE TABLE table_name_1 (points INTEGER, draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR, wins VARCHAR)
SELECT augmented_fifth FROM table_name_48 WHERE major_third = "d"
The Major third of D has what for the Augmented fifth?
CREATE TABLE table_name_48 (augmented_fifth VARCHAR, major_third VARCHAR)
SELECT college FROM table_12165999_1 WHERE afl_team = "Cincinnati Bengals"
What college did the Cincinnati Bengals' player come from?
CREATE TABLE table_12165999_1 (college VARCHAR, afl_team VARCHAR)
SELECT republican FROM table_17503169_1 WHERE incumbent = "Thelma Drake"
Who was the republican candidate in the race with incumbent thelma drake?
CREATE TABLE table_17503169_1 (republican VARCHAR, incumbent VARCHAR)
SELECT incumbent FROM table_name_75 WHERE district = "california 8"
Which Incumbent has a District of California 8?
CREATE TABLE table_name_75 (incumbent VARCHAR, district VARCHAR)
SELECT driver_s FROM table_name_81 WHERE class = "sports car" AND race_title = "xxiv gran premio di pescara"
Who won the XXIV Gran Premio di Pescara in the sports car class?
CREATE TABLE table_name_81 (driver_s VARCHAR, class VARCHAR, race_title VARCHAR)
SELECT gold FROM table_name_42 WHERE total > 4
How many gold medals correspond with a total over 4?
CREATE TABLE table_name_42 (gold VARCHAR, total INTEGER)
SELECT party FROM table_2668378_18 WHERE incumbent = "Matthew Clay"
What party represents the district with incumbent matthew clay?
CREATE TABLE table_2668378_18 (party VARCHAR, incumbent VARCHAR)
SELECT surface FROM table_name_49 WHERE championship = "australian open"
What is Surface, when Championship is Australian Open?
CREATE TABLE table_name_49 (surface VARCHAR, championship VARCHAR)
SELECT COUNT(pick) FROM table_name_30 WHERE name = "steve hamilton" AND round > 2
WHAT PICK HAD STEVE HAMILTON IN ROUND LARGER THAN 2?
CREATE TABLE table_name_30 (pick VARCHAR, name VARCHAR, round VARCHAR)
SELECT district FROM table_2668347_22 WHERE candidates = "William A. Burwell (DR)"
Which district did William A. Burwell (Dr) belong to?
CREATE TABLE table_2668347_22 (district VARCHAR, candidates VARCHAR)
SELECT league FROM table_name_47 WHERE games = "10"
What is the league name that has a Games listing of 10?
CREATE TABLE table_name_47 (league VARCHAR, games VARCHAR)
SELECT COUNT(*) FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId WHERE T2.CountryName = 'france'
How many car makers are there in france?
CREATE TABLE COUNTRIES (CountryId VARCHAR, CountryName VARCHAR); CREATE TABLE CAR_MAKERS (Country VARCHAR)
SELECT nationality FROM table_name_39 WHERE apps > 40 AND goals = 17
Where was the player born when the appearances were greater than 40 and made 17 goals?
CREATE TABLE table_name_39 (nationality VARCHAR, apps VARCHAR, goals VARCHAR)
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)
SELECT MIN(seats) FROM table_name_12 WHERE _percentage_votes < 5.4 AND change > -1
What are the fewest seats with fewer than 5.4% seats and more than -1 change?
CREATE TABLE table_name_12 (seats INTEGER, _percentage_votes VARCHAR, change VARCHAR)
SELECT tries_against FROM table_12792876_4 WHERE points = "87"
Name the tries against for 87 points
CREATE TABLE table_12792876_4 (tries_against VARCHAR, points VARCHAR)
SELECT MIN(total_atms) FROM table_name_42 WHERE bank_type = "new private sector banks" AND on_site_atms > 1883
What is the minimum total ATMs with new private sector banks as the bank type, and the on-site ATMs are greater than 1883?
CREATE TABLE table_name_42 (total_atms INTEGER, bank_type VARCHAR, on_site_atms VARCHAR)
SELECT opponent FROM table_name_1 WHERE surface = "grass"
Which opponent used a grass surface?
CREATE TABLE table_name_1 (opponent VARCHAR, surface VARCHAR)
SELECT AVG(points) FROM table_name_68 WHERE year < 1955
What is the average Points for a year before 1955?
CREATE TABLE table_name_68 (points INTEGER, year INTEGER)
SELECT date FROM table_name_32 WHERE surface = "clay" AND score_in_the_final = "6–2, 7–5"
On what Date is the match played on Clay Surface with a Score in the final of 6–2, 7–5?
CREATE TABLE table_name_32 (date VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)
SELECT SUM(drawn) FROM table_name_54 WHERE team = "aa são bento" AND points > 1
How many Drawns have a Team of aa são bento and Points larger than 1?
CREATE TABLE table_name_54 (drawn INTEGER, team VARCHAR, points VARCHAR)
SELECT opponent FROM table_name_54 WHERE record = "6-0"
What Opponent has a 6-0 Record?
CREATE TABLE table_name_54 (opponent VARCHAR, record VARCHAR)
SELECT candidates FROM table_1431467_4 WHERE incumbent = "D. Wyatt Aiken"
Who were all candidate when incumbent was D. Wyatt Aiken?
CREATE TABLE table_1431467_4 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(to_par) FROM table_28498999_5 WHERE player = "Phil Mickelson"
How many times is a to par listed when the player is phil mickelson?
CREATE TABLE table_28498999_5 (to_par VARCHAR, player VARCHAR)
SELECT MIN(laps) FROM table_name_94 WHERE grid = 5
what is the least laps when the grid is 5?
CREATE TABLE table_name_94 (laps INTEGER, grid VARCHAR)
SELECT AVG(laps) FROM table_name_6 WHERE grid < 21 AND driver = "renzo zorzi"
What is the average laps for the grid smaller than 21 for Renzo Zorzi?
CREATE TABLE table_name_6 (laps INTEGER, grid VARCHAR, driver VARCHAR)
SELECT catalogno FROM table_name_31 WHERE year = 1971 AND remark = "#27 us"
What catalogno was in 1971 and had a remark of #27 us?
CREATE TABLE table_name_31 (catalogno VARCHAR, year VARCHAR, remark VARCHAR)
SELECT obama_number FROM table_20453681_1 WHERE county = "Geauga"
How many votes did Obama get in Geauga?
CREATE TABLE table_20453681_1 (obama_number VARCHAR, county VARCHAR)
SELECT position FROM table_name_1 WHERE round < 3
Tell me the position for round less than 3
CREATE TABLE table_name_1 (position VARCHAR, round INTEGER)
SELECT SUM(copa_del_rey) FROM table_name_63 WHERE name = "guti" AND fifa_club_world_championship < 0
Which Copa del Rey has a Name of guti, and a FIFA Club World Championship smaller than 0?
CREATE TABLE table_name_63 (copa_del_rey INTEGER, name VARCHAR, fifa_club_world_championship VARCHAR)
SELECT _percentage_fpv FROM table_name_3 WHERE party = "workers' party"
What is the %FPv for the Workers' Party?
CREATE TABLE table_name_3 (_percentage_fpv VARCHAR, party VARCHAR)
SELECT nationality FROM table_name_16 WHERE heat < 2 AND rank = 15
Which Nationality has a Heat smaller than 2, and a Rank of 15?
CREATE TABLE table_name_16 (nationality VARCHAR, heat VARCHAR, rank VARCHAR)
SELECT COUNT(step_6) FROM table_2319437_1 WHERE gs_grade = 11
Name the total number of step 6 for 11 gs grade
CREATE TABLE table_2319437_1 (step_6 VARCHAR, gs_grade VARCHAR)
SELECT ryuji_hijikata FROM table_name_39 WHERE taka_michinoku = "hayashi (28:05)"
Tell me the Ryuji Hijikata for TAKA Michinoku of Hayashi (28:05)
CREATE TABLE table_name_39 (ryuji_hijikata VARCHAR, taka_michinoku VARCHAR)
SELECT drawn FROM table_15352382_1 WHERE team = "Corinthians"
How many drawn does the team Corinthians have?
CREATE TABLE table_15352382_1 (drawn VARCHAR, team VARCHAR)
SELECT SUM(january) FROM table_name_70 WHERE record = "17-20-2" AND game < 39
What is the January sum with the record of 17-20-2 with a game smaller than 39?
CREATE TABLE table_name_70 (january INTEGER, record VARCHAR, game VARCHAR)
SELECT area__km_2__ FROM table_1480455_1 WHERE population_density___km_2__ = "84.3"
What is the area (km 2) where the population density (/mk2) is 84.3?
CREATE TABLE table_1480455_1 (area__km_2__ VARCHAR, population_density___km_2__ VARCHAR)
SELECT position FROM table_name_13 WHERE number = "23"
Which position does number 23 play?
CREATE TABLE table_name_13 (position VARCHAR, number VARCHAR)
SELECT high_points FROM table_27700530_5 WHERE date = "October 20"
Who had the high point total on october 20?
CREATE TABLE table_27700530_5 (high_points VARCHAR, date VARCHAR)
SELECT candidates FROM table_1341897_23 WHERE first_elected = 1942
Name the candidate first elected in 1942
CREATE TABLE table_1341897_23 (candidates VARCHAR, first_elected VARCHAR)
SELECT COUNT(episode) AS Summary FROM table_2140071_10 WHERE coach = "Jesse Csincsak"
Name the number of episode summary for jesse csincsak
CREATE TABLE table_2140071_10 (episode VARCHAR, coach VARCHAR)
SELECT number_of_electorates__2009_ FROM table_name_21 WHERE reserved_for___sc___st__none_ = "total:"
Which Number of electorates (2009) has a Reserved for (SC / ST /None) of total:?
CREATE TABLE table_name_21 (number_of_electorates__2009_ VARCHAR, reserved_for___sc___st__none_ VARCHAR)
SELECT try_bonus FROM table_name_80 WHERE tries_against = "55"
tries against is 55, what is the try bonus?
CREATE TABLE table_name_80 (try_bonus VARCHAR, tries_against VARCHAR)
SELECT SUM(losses) FROM table_name_52 WHERE year > 2001
How many losses have a year later than 2001?
CREATE TABLE table_name_52 (losses INTEGER, year INTEGER)
SELECT rider FROM table_name_24 WHERE laps = 18 AND time = "+25.165"
Which rider went 18 laps ending +25.165 behind the leader?
CREATE TABLE table_name_24 (rider VARCHAR, laps VARCHAR, time VARCHAR)
SELECT T2.name, T3.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id
show the train name and station name for each train.
CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train (name VARCHAR, train_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR, train_id VARCHAR)
SELECT MIN(gore__number) FROM table_23014476_1 WHERE others__number = "6.6%"
Name the gore number for others # 6.6%
CREATE TABLE table_23014476_1 (gore__number INTEGER, others__number VARCHAR)
SELECT record FROM table_name_20 WHERE opponent = "bob ostovich"
What is Bob Ostovich's opponents record?
CREATE TABLE table_name_20 (record VARCHAR, opponent VARCHAR)
SELECT AVG(total) FROM table_name_59 WHERE rank = "17" AND gold > 0
Which Total has a Rank of 17, and a Gold larger than 0?
CREATE TABLE table_name_59 (total INTEGER, rank VARCHAR, gold VARCHAR)
SELECT high_rebounds FROM table_27723526_17 WHERE date = "June 9"
What is the high rebound for June 9?
CREATE TABLE table_27723526_17 (high_rebounds VARCHAR, date VARCHAR)
SELECT home FROM table_name_67 WHERE date = "january 22"
What is the home team of the game on January 22?
CREATE TABLE table_name_67 (home VARCHAR, date VARCHAR)
SELECT SUM(total) FROM invoices WHERE billing_city = "Chicago" AND billing_state = "IL"
List total amount of invoice from Chicago, IL.
CREATE TABLE invoices (total INTEGER, billing_city VARCHAR, billing_state VARCHAR)
SELECT COUNT(next_in_line) FROM table_28241890_2 WHERE heir = "Archduke Karl"
How many next in lines had heirs of Archduke Karl?
CREATE TABLE table_28241890_2 (next_in_line VARCHAR, heir VARCHAR)
SELECT SUM(innings) FROM table_name_35 WHERE average < 6.33 AND sr < 71.43 AND balls_faced > 36 AND runs_scored < 19
How many total innings have an average under 6.33, strike rate under 71.43, balls faced over 36, and smaller than 19 runs scored?
CREATE TABLE table_name_35 (innings INTEGER, runs_scored VARCHAR, balls_faced VARCHAR, average VARCHAR, sr VARCHAR)
SELECT AVG(area__km_2__) FROM table_name_80 WHERE code = 98030 AND population > 312
What is the average area for code 98030 with population over 312?
CREATE TABLE table_name_80 (area__km_2__ INTEGER, code VARCHAR, population VARCHAR)
SELECT mountain_range FROM table_name_82 WHERE region = "haiti" AND location = "18.3601°n 71.9764°w"
Which Mountain Range has a Region of haiti, and a Location of 18.3601°n 71.9764°w?
CREATE TABLE table_name_82 (mountain_range VARCHAR, region VARCHAR, location VARCHAR)
SELECT COUNT(lost) FROM table_name_65 WHERE points < 4 AND against > 340
How many games lost for team(s) with less than 4 paints and against total of over 340?
CREATE TABLE table_name_65 (lost VARCHAR, points VARCHAR, against VARCHAR)
SELECT MAX(divisional_titles) FROM table_20190834_1 WHERE enrollment = 30049
What is the most divisional titles won by a school with an enrollment of 30049?
CREATE TABLE table_20190834_1 (divisional_titles INTEGER, enrollment VARCHAR)
SELECT date FROM table_name_66 WHERE winner = "murilo figueiredo"
What is Date, when Winner is "Murilo Figueiredo"?
CREATE TABLE table_name_66 (date VARCHAR, winner VARCHAR)
SELECT barony FROM table_30120555_1 WHERE area__acres__ = 24
Which barony contains a townland with an area 24 acres?
CREATE TABLE table_30120555_1 (barony VARCHAR, area__acres__ VARCHAR)
SELECT total FROM table_name_62 WHERE set_4 = "na" AND score = "3-0" AND set_2 = "26-24"
What is the total of NA for set 4, a score of 3-0 and a 26-24 for set 2?
CREATE TABLE table_name_62 (total VARCHAR, set_2 VARCHAR, set_4 VARCHAR, score VARCHAR)
SELECT mountain_range FROM table_name_35 WHERE rank = 19
Which mountain range has a rank of 19?
CREATE TABLE table_name_35 (mountain_range VARCHAR, rank VARCHAR)
SELECT COUNT(receptions) FROM table_name_6 WHERE receiving_yards < 161 AND rushing_tds < 14
How many receptions were smaller than 161 receiving yards but also had less than 14 rushing TDs?
CREATE TABLE table_name_6 (receptions VARCHAR, receiving_yards VARCHAR, rushing_tds VARCHAR)
SELECT 2 AS nd_leg FROM table_name_49 WHERE team_2 = "barcelona"
What is the 2nd leg for Barcelona Team 2?
CREATE TABLE table_name_49 (team_2 VARCHAR)
SELECT country FROM table_name_22 WHERE player = "henry picard"
What country was Henry Picard from?
CREATE TABLE table_name_22 (country VARCHAR, player VARCHAR)
SELECT john_oxendine FROM table_name_75 WHERE karen_handel = "38%"
What is John Oxendine at in the poll where Karen Handel is at 38%?
CREATE TABLE table_name_75 (john_oxendine VARCHAR, karen_handel VARCHAR)
SELECT playoffs_2 FROM table_name_18 WHERE season = "2010-11"
What is the playoffs 2 result of season 2010-11?
CREATE TABLE table_name_18 (playoffs_2 VARCHAR, season VARCHAR)