question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Which gymnast had a balance beam larger than 8.687, had a total less than 38.049, had a floor exercise less than 9.462, and a vault less than 9.275?
CREATE TABLE table_name_91 (gymnast VARCHAR, vault VARCHAR, floor_exercise VARCHAR, balance_beam VARCHAR, total VARCHAR)
SELECT gymnast FROM table_name_91 WHERE balance_beam > 8.687 AND total < 38.049 AND floor_exercise < 9.462 AND vault < 9.275
What is the total for National University of Ireland with an industrial and commercial panel less than 1, and the cultural and educational panel bigger than 0?
CREATE TABLE table_name_17 (national_university_of_ireland VARCHAR, industrial_and_commercial_panel VARCHAR, cultural_and_educational_panel VARCHAR)
SELECT COUNT(national_university_of_ireland) FROM table_name_17 WHERE industrial_and_commercial_panel < 1 AND cultural_and_educational_panel > 0
Find the last names of students studying in room 111.
CREATE TABLE list (lastname VARCHAR, classroom VARCHAR)
SELECT lastname FROM list WHERE classroom = 111
what's the date with tournament value of ford senior players championship
CREATE TABLE table_11621915_1 (date VARCHAR, tournament VARCHAR)
SELECT date FROM table_11621915_1 WHERE tournament = "Ford Senior Players Championship"
Name the points for donald boor
CREATE TABLE table_25646820_2 (points VARCHAR, player VARCHAR)
SELECT points FROM table_25646820_2 WHERE player = "Donald Boor"
Which aperture were built or used between 1987-2001?
CREATE TABLE table_23851574_2 (aper_in VARCHAR, built_used VARCHAR)
SELECT aper_in FROM table_23851574_2 WHERE built_used = "1987-2001"
What is the result of the directorial debut of the year award?
CREATE TABLE table_name_77 (result VARCHAR, category VARCHAR)
SELECT result FROM table_name_77 WHERE category = "directorial debut of the year"
What Player comes from the Hometown of Wichita, KS?
CREATE TABLE table_name_75 (player VARCHAR, hometown VARCHAR)
SELECT player FROM table_name_75 WHERE hometown = "wichita, ks"
Which athlete has a 35 km event?
CREATE TABLE table_name_74 (athlete VARCHAR, event VARCHAR)
SELECT athlete FROM table_name_74 WHERE event = "35 km"
What is the Location of the Old Bedians Pitch?
CREATE TABLE table_name_97 (location VARCHAR, pitch VARCHAR)
SELECT location FROM table_name_97 WHERE pitch = "old bedians"
Who is the home captain at the Adelaide Oval?
CREATE TABLE table_name_14 (home_captain VARCHAR, venue VARCHAR)
SELECT home_captain FROM table_name_14 WHERE venue = "adelaide oval"
What is FCC info when ERP W is larger than 92 and call sign has k264ba?
CREATE TABLE table_name_51 (fcc_info VARCHAR, erp_w VARCHAR, call_sign VARCHAR)
SELECT fcc_info FROM table_name_51 WHERE erp_w > 92 AND call_sign = "k264ba"
In the Champions league, what is the Minimum
CREATE TABLE table_17505751_5 (Champions INTEGER)
SELECT MIN(Champions) AS league FROM table_17505751_5
how many places have 17 varsity teams?
CREATE TABLE table_2439728_1 (location VARCHAR, varsity_teams VARCHAR)
SELECT COUNT(location) FROM table_2439728_1 WHERE varsity_teams = 17
What is the Time of the Athlete with a Reaction time of 0.164?
CREATE TABLE table_name_48 (time INTEGER, reaction_time VARCHAR)
SELECT SUM(time) FROM table_name_48 WHERE reaction_time = 0.164
Who was the Opponent partnering with Jordan Kerr, on a hard surface that was the winner?
CREATE TABLE table_name_18 (opponent VARCHAR, partnering VARCHAR, surface VARCHAR, outcome VARCHAR)
SELECT opponent FROM table_name_18 WHERE surface = "hard" AND outcome = "winner" AND partnering = "jordan kerr"
Find the student ID and personal name of the student with at least two enrollments.
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (personal_name VARCHAR, student_id VARCHAR)
SELECT T1.student_id, T2.personal_name FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING COUNT(*) >= 2
What yeae has 6-08 (24) as a waterford score?
CREATE TABLE table_name_67 (year VARCHAR, waterford_score VARCHAR)
SELECT year FROM table_name_67 WHERE waterford_score = "6-08 (24)"
What year did the Nerang Suburb get founded?
CREATE TABLE table_name_96 (founded VARCHAR, suburb VARCHAR)
SELECT COUNT(founded) FROM table_name_96 WHERE suburb = "nerang"
What is the title of season 3 ep# 12?
CREATE TABLE table_12451376_3 (title VARCHAR, season_3_ep__number VARCHAR)
SELECT title FROM table_12451376_3 WHERE season_3_ep__number = 12
What type of engine does the model with model designation 97F00 have?
CREATE TABLE table_20866024_3 (engine VARCHAR, model_designation VARCHAR)
SELECT engine FROM table_20866024_3 WHERE model_designation = "97F00"
Name the date for new york islanders
CREATE TABLE table_23453931_5 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_23453931_5 WHERE opponent = "New York Islanders"
When lake oval is the venue, what's the score of the home team?
CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_4 WHERE venue = "lake oval"
What was the season where Evelyn Smith was on?
CREATE TABLE table_18974269_1 (original_season VARCHAR, player VARCHAR)
SELECT original_season FROM table_18974269_1 WHERE player = "Evelyn Smith"
Name the 2009 for wta premier mandatory tournaments
CREATE TABLE table_name_99 (tournament VARCHAR)
SELECT 2009 FROM table_name_99 WHERE tournament = "wta premier mandatory tournaments"
Name the total with one hand clean and jerk is 87.5 and snatch is 87.5
CREATE TABLE table_16779068_5 (total VARCHAR, snatch VARCHAR, one_hand_clean_ VARCHAR, _jerk VARCHAR)
SELECT total FROM table_16779068_5 WHERE one_hand_clean_ & _jerk = "87.5" AND snatch = "87.5"
Which Result has a Captain 1 of louis burger, and a Date of 30 october–2 november?
CREATE TABLE table_name_53 (result VARCHAR, captain_1 VARCHAR, date VARCHAR)
SELECT result FROM table_name_53 WHERE captain_1 = "louis burger" AND date = "30 october–2 november"
What is the highest round in the Wec 25 match in Las Vegas, Nevada, United States?
CREATE TABLE table_name_80 (round INTEGER, location VARCHAR, event VARCHAR)
SELECT MAX(round) FROM table_name_80 WHERE location = "las vegas, nevada, united states" AND event = "wec 25"
On which date was the venue of vfl park used?
CREATE TABLE table_name_37 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_37 WHERE venue = "vfl park"
Which of the Rounds has an Entrant of automobiles Talbot-Darracq, and Pierre Levegh as the driver?
CREATE TABLE table_name_72 (rounds VARCHAR, entrant VARCHAR, driver VARCHAR)
SELECT rounds FROM table_name_72 WHERE entrant = "automobiles talbot-darracq" AND driver = "pierre levegh"
With a total of 11, and 10 rank points, what are the score points?
CREATE TABLE table_name_25 (score_points VARCHAR, rank_points VARCHAR, total VARCHAR)
SELECT score_points FROM table_name_25 WHERE rank_points = "10" AND total = "11"
Which FIFA Club World Championship has a UEFA Champions League of 0, and a Total smaller than 3, and a Name of geremi?
CREATE TABLE table_name_56 (fifa_club_world_championship INTEGER, name VARCHAR, uefa_champions_league VARCHAR, total VARCHAR)
SELECT MIN(fifa_club_world_championship) FROM table_name_56 WHERE uefa_champions_league = 0 AND total < 3 AND name = "geremi"
What was the total number of aircrafts in 2011 for sydney airport that was ranked number 1?
CREATE TABLE table_name_48 (airport VARCHAR, rank VARCHAR)
SELECT COUNT(2011) FROM table_name_48 WHERE airport = "sydney airport" AND rank < 1
What is the national change where crude birth rate is less than 11.4, crude death rate is more than 12.1 and deaths are 4 376?
CREATE TABLE table_name_96 (natural_change VARCHAR, deaths VARCHAR, crude_birth_rate__per_1000_ VARCHAR, crude_death_rate__per_1000_ VARCHAR)
SELECT natural_change FROM table_name_96 WHERE crude_birth_rate__per_1000_ < 11.4 AND crude_death_rate__per_1000_ > 12.1 AND deaths = "4 376"
Which district has a retired republican hold and an incumbent of rufus p. spalding?
CREATE TABLE table_name_67 (district VARCHAR, result VARCHAR, incumbent VARCHAR)
SELECT district FROM table_name_67 WHERE result = "retired republican hold" AND incumbent = "rufus p. spalding"
What is the snatch when Marcin Dołęga ( POL ) was 430kg?
CREATE TABLE table_name_1 (snatch VARCHAR, marcin_dołęga___pol__ VARCHAR)
SELECT snatch FROM table_name_1 WHERE marcin_dołęga___pol__ = "430kg"
What is the home team for Windy Hill?
CREATE TABLE table_name_87 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_87 WHERE venue = "windy hill"
Which player has a pick of 175?
CREATE TABLE table_name_58 (player VARCHAR, pick VARCHAR)
SELECT player FROM table_name_58 WHERE pick = 175
WHAT IS THE 8TH THAT HAS A 7TH OF AUDIO BULLYS?
CREATE TABLE table_name_61 (eighth VARCHAR, seventh VARCHAR)
SELECT eighth FROM table_name_61 WHERE seventh = "audio bullys"
When the Away team of essendon was playing, what was the Home team's score?
CREATE TABLE table_name_62 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_62 WHERE away_team = "essendon"
What is the highest pennant number with ships in pori class?
CREATE TABLE table_name_61 (pennant_number INTEGER, ships_in_class VARCHAR)
SELECT MAX(pennant_number) FROM table_name_61 WHERE ships_in_class = "pori"
Which is the Authority that has a Roll of 70?
CREATE TABLE table_name_4 (authority VARCHAR, roll VARCHAR)
SELECT authority FROM table_name_4 WHERE roll = "70"
Where is john daly of united states from?
CREATE TABLE table_name_77 (place VARCHAR, country VARCHAR, player VARCHAR)
SELECT place FROM table_name_77 WHERE country = "united states" AND player = "john daly"
What is the title of the single with the peak position of 10 and from France?
CREATE TABLE table_name_21 (title VARCHAR, peak_position VARCHAR, country VARCHAR)
SELECT title FROM table_name_21 WHERE peak_position = 10 AND country = "france"
What was the UK broadcast date for the episode presented by Buck Henry?
CREATE TABLE table_15211468_3 (uk_broadcast_date VARCHAR, presenter VARCHAR)
SELECT uk_broadcast_date FROM table_15211468_3 WHERE presenter = "Buck Henry"
How many students does LORIA ONDERSMA teaches?
CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)
SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "LORIA" AND T2.lastname = "ONDERSMA"
What is the lowest Top-25 with Wins less than 0?
CREATE TABLE table_name_2 (top_25 INTEGER, wins INTEGER)
SELECT MIN(top_25) FROM table_name_2 WHERE wins < 0
What is the minimum number of seasons?
CREATE TABLE table_2140071_13 (season INTEGER)
SELECT MIN(season) FROM table_2140071_13
On which Date was there a record of 11-8?
CREATE TABLE table_name_37 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_37 WHERE record = "11-8"
what builder is now retired
CREATE TABLE table_name_20 (pennant_number VARCHAR, current_status VARCHAR)
SELECT pennant_number FROM table_name_20 WHERE current_status = "retired"
What are the teams of the players, sorted in ascending alphabetical order?
CREATE TABLE player (Team VARCHAR)
SELECT Team FROM player ORDER BY Team
Tell me the sum of gold for bronze less than 0
CREATE TABLE table_name_31 (gold INTEGER, bronze INTEGER)
SELECT SUM(gold) FROM table_name_31 WHERE bronze < 0
What's the total number of League Cup with a Play-off larger than 2, and a Name of Mitch Cook Category:Articles with hCards?
CREATE TABLE table_name_8 (league VARCHAR, play_offs VARCHAR, name VARCHAR)
SELECT COUNT(league) AS Cup FROM table_name_8 WHERE play_offs > 2 AND name = "mitch cook category:articles with hcards"
What is the Score of the 1996 Asian Cup Qualification on June 29, 1996?
CREATE TABLE table_name_24 (score VARCHAR, competition VARCHAR, date VARCHAR)
SELECT score FROM table_name_24 WHERE competition = "1996 asian cup qualification" AND date = "june 29, 1996"
Who were the scorers in the game against neuchâtel xamax played on 10 December 1985?
CREATE TABLE table_name_64 (scorers VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT scorers FROM table_name_64 WHERE opponent = "neuchâtel xamax" AND date = "10 december 1985"
What is the IATA OF Akureyri?
CREATE TABLE table_name_30 (iata VARCHAR, city VARCHAR)
SELECT iata FROM table_name_30 WHERE city = "akureyri"
What is Another She's Label?
CREATE TABLE table_name_41 (label VARCHAR, english_title VARCHAR)
SELECT label FROM table_name_41 WHERE english_title = "another she"
What character was portrayed by the same actor for 12 years on Neighbours?
CREATE TABLE table_name_64 (character VARCHAR, duration VARCHAR, soap_opera VARCHAR)
SELECT character FROM table_name_64 WHERE duration = "12 years" AND soap_opera = "neighbours"
What team was the opponent when the round was sf?
CREATE TABLE table_name_84 (opponent VARCHAR, round VARCHAR)
SELECT opponent FROM table_name_84 WHERE round = "sf"
What club has tries for in the category tries for?
CREATE TABLE table_name_64 (club VARCHAR, tries_for VARCHAR)
SELECT club FROM table_name_64 WHERE tries_for = "tries for"
What was the first Round with a Pick # greater than 1 and 140 Overall?
CREATE TABLE table_name_43 (round INTEGER, pick__number VARCHAR, overall VARCHAR)
SELECT MIN(round) FROM table_name_43 WHERE pick__number > 1 AND overall > 140
What is the full number of Total Seats with a constituency seat number bigger than 0 with the Liberal Democrat party, and the Regional seat number is smaller than 6?
CREATE TABLE table_name_26 (total_seats INTEGER, regional_seats VARCHAR, constituency_seats VARCHAR, party VARCHAR)
SELECT SUM(total_seats) FROM table_name_26 WHERE constituency_seats > 0 AND party = "liberal democrat" AND regional_seats < 6
What is their position when the b score is more than 8.975 for Ekaterina Kramarenko ( rus )?
CREATE TABLE table_name_57 (position VARCHAR, b_score VARCHAR, gymnast VARCHAR)
SELECT position FROM table_name_57 WHERE b_score > 8.975 AND gymnast = "ekaterina kramarenko ( rus )"
Name the score for yuliya ustyuzhanina
CREATE TABLE table_name_84 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_84 WHERE opponent = "yuliya ustyuzhanina"
Show names, results and bulgarian commanders of the battles with no ships lost in the 'English Channel'.
CREATE TABLE ship (lost_in_battle VARCHAR, location VARCHAR); CREATE TABLE battle (name VARCHAR, RESULT VARCHAR, bulgarian_commander VARCHAR); CREATE TABLE battle (name VARCHAR, result VARCHAR, bulgarian_commander VARCHAR, id VARCHAR)
SELECT name, RESULT, bulgarian_commander FROM battle EXCEPT SELECT T1.name, T1.result, T1.bulgarian_commander FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.location = 'English Channel'
What was the highest amount of runs for more than 5 matches?
CREATE TABLE table_name_45 (runs INTEGER, matches INTEGER)
SELECT MAX(runs) FROM table_name_45 WHERE matches > 5
Question does not make sense since there was no record of 88-74
CREATE TABLE table_name_77 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_77 WHERE record = "88-74"
What is the Term in office with an Order that is 9?
CREATE TABLE table_name_21 (term_in_office VARCHAR, order VARCHAR)
SELECT term_in_office FROM table_name_21 WHERE order = "9"
Who drove for Mathiasen Motorsports with dane cameron as pole position?
CREATE TABLE table_name_62 (winning_driver VARCHAR, winning_team VARCHAR, pole_position VARCHAR)
SELECT winning_driver FROM table_name_62 WHERE winning_team = "mathiasen motorsports" AND pole_position = "dane cameron"
What is the UK singles chart rank of the single released on 26 February 1990?
CREATE TABLE table_name_9 (uk_singles_chart VARCHAR, release_date VARCHAR)
SELECT uk_singles_chart FROM table_name_9 WHERE release_date = "26 february 1990"
What was the highest crowd in Victoria Park?
CREATE TABLE table_name_74 (crowd INTEGER, venue VARCHAR)
SELECT MAX(crowd) FROM table_name_74 WHERE venue = "victoria park"
Who was the Opponent in the match with a Score of 6–3, 6–4?
CREATE TABLE table_name_61 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_61 WHERE score = "6–3, 6–4"
What's the opening when white is Anand with fewer than 61 moves for a result of ½–½?
CREATE TABLE table_name_83 (opening VARCHAR, result VARCHAR, white VARCHAR, moves VARCHAR)
SELECT opening FROM table_name_83 WHERE white = "anand" AND moves < 61 AND result = "½–½"
What is the largest frequency owned by multicultural broadcasting with a Format of vietnamese?
CREATE TABLE table_name_40 (frequency INTEGER, status VARCHAR, format VARCHAR)
SELECT MAX(frequency) FROM table_name_40 WHERE status = "owned by multicultural broadcasting" AND format = "vietnamese"
What frequency does the Pentium processor use?
CREATE TABLE table_24018112_1 (frequency VARCHAR, brand_name VARCHAR)
SELECT frequency FROM table_24018112_1 WHERE brand_name = "Pentium"
What is the population in Westfield?
CREATE TABLE table_171236_2 (population VARCHAR, official_name VARCHAR)
SELECT COUNT(population) FROM table_171236_2 WHERE official_name = "Westfield"
Which Scores by each individual judge has a Date performed of august 7, and a Main contestant of karanvir bohra?
CREATE TABLE table_name_87 (scores_by_each_individual_judge VARCHAR, date_performed VARCHAR, main_contestant VARCHAR)
SELECT scores_by_each_individual_judge FROM table_name_87 WHERE date_performed = "august 7" AND main_contestant = "karanvir bohra"
If the varsity team is 6, what is the location?
CREATE TABLE table_22319599_1 (location VARCHAR, varsity_teams VARCHAR)
SELECT location FROM table_22319599_1 WHERE varsity_teams = 6
How many laps did Ricardo Zonta have?
CREATE TABLE table_name_69 (laps INTEGER, driver VARCHAR)
SELECT SUM(laps) FROM table_name_69 WHERE driver = "ricardo zonta"
What is hugh white's weight?
CREATE TABLE table_14342210_13 (weight INTEGER, player VARCHAR)
SELECT MAX(weight) FROM table_14342210_13 WHERE player = "Hugh White"
What is the 3rd Liga from 2010-11?
CREATE TABLE table_name_41 (date VARCHAR)
SELECT 3 AS rd_liga_3rd FROM table_name_41 WHERE date = "2010-11"
Which Stage has a Winner of jeremy hunt?
CREATE TABLE table_name_21 (stage VARCHAR, winner VARCHAR)
SELECT stage FROM table_name_21 WHERE winner = "jeremy hunt"
What was the school/club after round 12, and picked smaller than 342?
CREATE TABLE table_name_95 (school_club_team VARCHAR, round VARCHAR, pick VARCHAR)
SELECT school_club_team FROM table_name_95 WHERE round > 12 AND pick < 342
What was the sum of Revenue ($M), when the Debt as % of value was higher than 27, and the Operating income($m) was 77?
CREATE TABLE table_name_35 (revenue__ INTEGER, debt_as__percentageof_value VARCHAR, operating_income_$m_ VARCHAR)
SELECT SUM(revenue__) AS $m_ FROM table_name_35 WHERE debt_as__percentageof_value > 27 AND operating_income_$m_ = 77
Which conference did boise state university play at?
CREATE TABLE table_27816698_2 (current_conference VARCHAR, institution VARCHAR)
SELECT current_conference FROM table_27816698_2 WHERE institution = "Boise State University"
What is the percentage of total area in the ecozone that the area is 1782252 km2?
CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, area__km²_ VARCHAR)
SELECT percentage_of_total_area FROM table_15555661_2 WHERE area__km²_ = 1782252
who won tennis when ashland won softball and wooster won volleybal
CREATE TABLE table_16423070_4 (tennis VARCHAR, softball VARCHAR, volleyball VARCHAR)
SELECT tennis FROM table_16423070_4 WHERE softball = "Ashland" AND volleyball = "Wooster"
Which Name has a Round larger than 4, an Overall smaller than 338, a Pick smaller than 11, and a College of virginia tech?
CREATE TABLE table_name_39 (name VARCHAR, college VARCHAR, pick VARCHAR, round VARCHAR, overall VARCHAR)
SELECT name FROM table_name_39 WHERE round > 4 AND overall < 338 AND pick < 11 AND college = "virginia tech"
What was the status of the series that was run by tv channel Mediacorp tv12 Suria?
CREATE TABLE table_27469019_2 (status VARCHAR, television_channel VARCHAR)
SELECT status FROM table_27469019_2 WHERE television_channel = "MediaCorp TV12 Suria"
What Competition had a game on October 31, 1979?
CREATE TABLE table_name_53 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_53 WHERE date = "october 31, 1979"
What is the title of the episode/s written by Michael Gans & Richard Register?
CREATE TABLE table_23399481_4 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_23399481_4 WHERE written_by = "Michael Gans & Richard Register"
What is the venue of the match with the wightlink raiders as the opponent?
CREATE TABLE table_name_9 (venue VARCHAR, opponent VARCHAR)
SELECT venue FROM table_name_9 WHERE opponent = "wightlink raiders"
display the department id and the total salary for those departments which contains at least two employees.
CREATE TABLE employees (department_id VARCHAR, salary INTEGER)
SELECT department_id, SUM(salary) FROM employees GROUP BY department_id HAVING COUNT(*) >= 2
When +10 is the goal difference what is the goals for?
CREATE TABLE table_17718005_2 (goals_for VARCHAR, goal_difference VARCHAR)
SELECT goals_for FROM table_17718005_2 WHERE goal_difference = "+10"
When 7th place, what is the date?
CREATE TABLE table_name_45 (date VARCHAR, place VARCHAR)
SELECT date FROM table_name_45 WHERE place = "7th"
What's the mascot of Eastern Pekin having less than 627 enrolled and an AA for their IHSAA Class?
CREATE TABLE table_name_34 (mascot VARCHAR, school VARCHAR, enrollment VARCHAR, ihsaa_class VARCHAR)
SELECT mascot FROM table_name_34 WHERE enrollment < 627 AND ihsaa_class = "aa" AND school = "eastern pekin"
What is the Report of Winning Team Penske Racing, and what was Rick Mears' Pole position?
CREATE TABLE table_name_68 (report VARCHAR, winning_team VARCHAR, pole_position VARCHAR)
SELECT report FROM table_name_68 WHERE winning_team = "penske racing" AND pole_position = "rick mears"
What is the Position with a round 3 pick for r. jay soward?
CREATE TABLE table_name_20 (position VARCHAR, round VARCHAR, name VARCHAR)
SELECT position FROM table_name_20 WHERE round < 3 AND name = "r. jay soward"
What is jim dutcher's hometown?
CREATE TABLE table_22824312_1 (hometown VARCHAR, player VARCHAR)
SELECT hometown FROM table_22824312_1 WHERE player = "Jim Dutcher"
Name the type for hobart college
CREATE TABLE table_1974482_1 (type VARCHAR, institution VARCHAR)
SELECT type FROM table_1974482_1 WHERE institution = "Hobart College"