answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT Builder FROM railway GROUP BY Builder ORDER BY COUNT(*) DESC LIMIT 1
Show the most common builder of railways.
CREATE TABLE railway (Builder VARCHAR)
SELECT score_in_the_final FROM table_name_57 WHERE surface = "hard" AND date = "june 13, 2011"
What score in the final has hard as the surface, and june 13, 2011 as the date?
CREATE TABLE table_name_57 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)
SELECT score FROM table_name_17 WHERE record = "73-83"
Name the score which has record of 73-83
CREATE TABLE table_name_17 (score VARCHAR, record VARCHAR)
SELECT SUM(points) FROM table_name_67 WHERE lost > 5 AND played > 14
What is the sum of points with more than 5 losses and more than 14 played?
CREATE TABLE table_name_67 (points INTEGER, lost VARCHAR, played VARCHAR)
SELECT AVG(year) FROM table_name_12 WHERE movie = "thuppakki"
What was the average year that Thuppakki movies came out?
CREATE TABLE table_name_12 (year INTEGER, movie VARCHAR)
SELECT score FROM table_name_98 WHERE country = "england"
What is the player from England's score?
CREATE TABLE table_name_98 (score VARCHAR, country VARCHAR)
SELECT COUNT(candidates) FROM table_1341897_42 WHERE incumbent = "William Jennings Bryan Dorn"
How many candidates were there in the election for William Jennings Bryan Dorn's seat?
CREATE TABLE table_1341897_42 (candidates VARCHAR, incumbent VARCHAR)
SELECT SUM(total_foreign_born__1000_) FROM table_name_7 WHERE country = "sweden" AND born_in_other_eu_state__1000_ > 477
How many Foreign-born (1000) are from Sweden and born in some other EU state (1000) larger than 477?
CREATE TABLE table_name_7 (total_foreign_born__1000_ INTEGER, country VARCHAR, born_in_other_eu_state__1000_ VARCHAR)
SELECT candidates FROM table_2668347_14 WHERE district = "New York 10"
who are the candidates for district new york 10?
CREATE TABLE table_2668347_14 (candidates VARCHAR, district VARCHAR)
SELECT position FROM table_name_13 WHERE round > 3 AND nationality = "united states" AND player = "nick pryor"
what is the position when the round is higher than 3, the nationality is united states and the player is nick pryor?
CREATE TABLE table_name_13 (position VARCHAR, player VARCHAR, round VARCHAR, nationality VARCHAR)
SELECT score FROM table_name_8 WHERE visitor = "hartford whalers" AND date = "april 11"
What is the score of the visiting Hartford Whalers game from April 11?
CREATE TABLE table_name_8 (score VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT away_team FROM table_name_61 WHERE tie_no = "19"
What is the name of the away team for Tie #19?
CREATE TABLE table_name_61 (away_team VARCHAR, tie_no VARCHAR)
SELECT COUNT(no) FROM table_1615980_4 WHERE tournament = "Volvo Masters Andalucia"
How many tournament wins were at Volvo Masters Andalucia?
CREATE TABLE table_1615980_4 (no VARCHAR, tournament VARCHAR)
SELECT record FROM table_name_86 WHERE date = "january 18"
What was the record after the January 18 game?
CREATE TABLE table_name_86 (record VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_34 WHERE location = "boston garden" AND record = "58-23"
Location of boston garden, and a Record of 58-23 involved what opponent?
CREATE TABLE table_name_34 (opponent VARCHAR, location VARCHAR, record VARCHAR)
SELECT rally_base FROM table_23385853_1 WHERE round = 5
Name the rally base for 5 round
CREATE TABLE table_23385853_1 (rally_base VARCHAR, round VARCHAR)
SELECT team_captain FROM table_23214833_1 WHERE stadium = "Gradski Stadion"
Who's the captain of the team whose stadium is Gradski Stadion?
CREATE TABLE table_23214833_1 (team_captain VARCHAR, stadium VARCHAR)
SELECT position FROM table_name_96 WHERE time > 38.61 AND venue = "gothenburg"
What position has a time over 38.61 at the gothenburg venue?
CREATE TABLE table_name_96 (position VARCHAR, time VARCHAR, venue VARCHAR)
SELECT british_record FROM table_name_70 WHERE guernsey_record = "32-8-0"
What is the British record for the fish with a Guernsey record of 32-8-0?
CREATE TABLE table_name_70 (british_record VARCHAR, guernsey_record VARCHAR)
SELECT result FROM table_name_24 WHERE field = "bishop kearney field" AND date = "august 2"
What is the result of the game at Bishop Kearney Field on August 2?
CREATE TABLE table_name_24 (result VARCHAR, field VARCHAR, date VARCHAR)
SELECT away_team FROM table_name_34 WHERE home_team = "st kilda"
What was the away team when the home was st kilda?
CREATE TABLE table_name_34 (away_team VARCHAR, home_team VARCHAR)
SELECT COUNT(new_conference) FROM table_26476336_2 WHERE new_classification = "NCLL Deep South Conference"
How many new conferences are in the NCLL deep south conference?
CREATE TABLE table_26476336_2 (new_conference VARCHAR, new_classification VARCHAR)
SELECT player_name FROM table_10361625_1 WHERE position = "Linebacker" AND college = "Illinois"
What is the name of the linebacker at Illinois college?
CREATE TABLE table_10361625_1 (player_name VARCHAR, position VARCHAR, college VARCHAR)
SELECT COUNT(car_s_) FROM table_2182170_1 WHERE listed_owner_s_ = "Gregg Mixon"
How many cars does Gregg Mixon own?
CREATE TABLE table_2182170_1 (car_s_ VARCHAR, listed_owner_s_ VARCHAR)
SELECT MAX(laps) FROM table_name_41 WHERE points = "5"
What is the highest number of laps for the driver with 5 points?
CREATE TABLE table_name_41 (laps INTEGER, points VARCHAR)
SELECT paper_type FROM table_11900773_5 WHERE theme = "University of Saskatchewan"
What is the paper type of the University of Saskatchewan themed stamp?
CREATE TABLE table_11900773_5 (paper_type VARCHAR, theme VARCHAR)
SELECT MIN(year) FROM table_name_70 WHERE english_title = "the art of crying"
What is the Year of submission of the Film The Art of Crying?
CREATE TABLE table_name_70 (year INTEGER, english_title VARCHAR)
SELECT AVG(goal_difference) FROM table_name_8 WHERE club = "slavia sofia"
What is the average goal difference using slavia sofia club?
CREATE TABLE table_name_8 (goal_difference INTEGER, club VARCHAR)
SELECT written_by FROM table_29087004_3 WHERE directed_by = "Greg Sullivan" AND united_states_original_airdate = "July 21, 2012"
Who were the writers of the episodes directed by Greg Sullivan and which first aired on July 21, 2012?
CREATE TABLE table_29087004_3 (written_by VARCHAR, directed_by VARCHAR, united_states_original_airdate VARCHAR)
SELECT week FROM table_name_8 WHERE date = "september 27, 1953"
Which week's date was September 27, 1953?
CREATE TABLE table_name_8 (week VARCHAR, date VARCHAR)
SELECT nation FROM table_name_9 WHERE bronze = "1" AND silver = "3"
What nation has 1 bronze and 3 silvers?
CREATE TABLE table_name_9 (nation VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT SUM(avg_g) FROM table_name_79 WHERE name = "blaine gabbert" AND long > 30
What is the amount of Avg/G with a Name of blaine gabbert and a Long greater than 30?
CREATE TABLE table_name_79 (avg_g INTEGER, name VARCHAR, long VARCHAR)
SELECT season, home_team, away_team FROM game
List the season, home team, away team of all the games.
CREATE TABLE game (season VARCHAR, home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_66 WHERE away_team = "collingwood"
When collingwood was the away team, what was the home team?
CREATE TABLE table_name_66 (home_team VARCHAR, away_team VARCHAR)
SELECT mpg_uk_combined FROM table_name_89 WHERE mpg_uk_urban__cold_ > 26.6 AND transmission = "m5" AND fuel_type = "diesel" AND engine_capacity < 1560
What is the mpg-uk combined with an mpg-uk urban (cold) greater than 26.6, a m5 transmission, a diesel fuel type, and an engine capacity less than 1560?
CREATE TABLE table_name_89 (mpg_uk_combined VARCHAR, engine_capacity VARCHAR, fuel_type VARCHAR, mpg_uk_urban__cold_ VARCHAR, transmission VARCHAR)
SELECT T1.fname, T1.age FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid WHERE NOT T2.dormid IN (SELECT T3.dormid FROM has_amenity AS T3 JOIN dorm_amenity AS T4 ON T3.amenid = T4.amenid WHERE T4.amenity_name = 'TV Lounge')
Find the first name and age of students who are living in the dorms that do not have amenity TV Lounge.
CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE student (fname VARCHAR, age VARCHAR, stuid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE dorm_amenity (amenid VARCHAR, amenity_name VARCHAR)
SELECT 2 AS nd_leg FROM table_name_9 WHERE team_2 = "fc 105 libreville"
What is the 2nd leg where Team 2 is fc 105 libreville?
CREATE TABLE table_name_9 (team_2 VARCHAR)
SELECT plaid_cymru FROM table_name_9 WHERE date_s__conducted = "4 may 2011"
I want the plaid cymru for 4 may 2011
CREATE TABLE table_name_9 (plaid_cymru VARCHAR, date_s__conducted VARCHAR)
SELECT race FROM table_name_90 WHERE time = "1:24.35"
Which race had a time of 1:24.35?
CREATE TABLE table_name_90 (race VARCHAR, time VARCHAR)
SELECT won_promotion FROM table_2119448_3 WHERE lost_promotion_playoffs = "Kalmar FF"
Name the won promotion for kalmar ff
CREATE TABLE table_2119448_3 (won_promotion VARCHAR, lost_promotion_playoffs VARCHAR)
SELECT notes FROM table_name_78 WHERE displacement = "220cid (3,604cc)"
What is the notes when the displacement is 220cid (3,604cc)?
CREATE TABLE table_name_78 (notes VARCHAR, displacement VARCHAR)
SELECT MAX(dist__f_) FROM table_name_74 WHERE odds = "11/4" AND placing > 1
Name the highest Dist (f) with Odds of 11/4 and a Placing larger than 1?
CREATE TABLE table_name_74 (dist__f_ INTEGER, odds VARCHAR, placing VARCHAR)
SELECT away_team AS score FROM table_name_47 WHERE home_team = "collingwood"
What did the away team score when they were playing collingwood?
CREATE TABLE table_name_47 (away_team VARCHAR, home_team VARCHAR)
SELECT launch_date FROM table_name_30 WHERE odds_of_winning = "1 in 4.23" AND top_prize = "$15,000"
What is the launch date odds of winning 1 in 4.23 with a top prize of $15,000?
CREATE TABLE table_name_30 (launch_date VARCHAR, odds_of_winning VARCHAR, top_prize VARCHAR)
SELECT area FROM table_name_91 WHERE name = "central takaka school"
What area is Central Takaka School in?
CREATE TABLE table_name_91 (area VARCHAR, name VARCHAR)
SELECT AVG(silver) FROM table_name_57 WHERE bronze < 1 AND gold > 0
What is the average for silver when bronze is less than 1, and gold is more than 0?
CREATE TABLE table_name_57 (silver INTEGER, bronze VARCHAR, gold VARCHAR)
SELECT driver_s_ FROM table_1266602_2 WHERE team = "Circle Sport"
Who drove for team Circle Sport?
CREATE TABLE table_1266602_2 (driver_s_ VARCHAR, team VARCHAR)
SELECT district FROM table_1341586_39 WHERE first_elected = 1972
what's the district with first elected being 1972
CREATE TABLE table_1341586_39 (district VARCHAR, first_elected VARCHAR)
SELECT COUNT(segment_c) FROM table_15187735_13 WHERE segment_a = "Pressure Cookers"
Name the total number of segment c for pressure cookers
CREATE TABLE table_15187735_13 (segment_c VARCHAR, segment_a VARCHAR)
SELECT pick__number FROM table_name_20 WHERE player = "jason french"
Which pick number was there for Jason French?
CREATE TABLE table_name_20 (pick__number VARCHAR, player VARCHAR)
SELECT result FROM table_name_12 WHERE opponent = "at dallas cowboys"
what is the result when the opponent is at dallas cowboys?
CREATE TABLE table_name_12 (result VARCHAR, opponent VARCHAR)
SELECT gender FROM table_13555999_1 WHERE junior_high_school__12_15_yrs_ = "24mm"
What is the gender of the junior high school is 24mm?
CREATE TABLE table_13555999_1 (gender VARCHAR, junior_high_school__12_15_yrs_ VARCHAR)
SELECT COUNT(series_premiere) FROM table_2311410_1 WHERE season = "All-Stars"
How many series premieres did the season "All-stars" have?
CREATE TABLE table_2311410_1 (series_premiere VARCHAR, season VARCHAR)
SELECT opponent FROM table_name_18 WHERE score = "85-102"
Who played against the Celtics when the final game score was 85-102?
CREATE TABLE table_name_18 (opponent VARCHAR, score VARCHAR)
SELECT report FROM table_name_68 WHERE winning_team = "penske racing" AND pole_position = "rick mears"
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 t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = "Stephanie" AND t1.lname = "Weirich"
Which papers have "Stephanie Weirich" as an author?
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR)
SELECT losing_bp FROM table_name_14 WHERE drawn = "1" AND try_bp = "6"
Name the Losing BP with drawn of 1 and a Try BP of 6.
CREATE TABLE table_name_14 (losing_bp VARCHAR, drawn VARCHAR, try_bp VARCHAR)
SELECT until FROM table_name_76 WHERE name = "josé luis sánchez solá"
When did José Luis Sánchez Solá end his term of coaching?
CREATE TABLE table_name_76 (until VARCHAR, name VARCHAR)
SELECT margin_of_victory FROM table_1515346_2 WHERE honoree_s_ = "Tommy Armour"
What was the margin of victory in the year when the honoree was Tommy Armour?
CREATE TABLE table_1515346_2 (margin_of_victory VARCHAR, honoree_s_ VARCHAR)
SELECT away_team AS score FROM table_name_25 WHERE venue = "windy hill"
What was the away team score at Windy Hill?
CREATE TABLE table_name_25 (away_team VARCHAR, venue VARCHAR)
SELECT 1977 FROM table_name_65 WHERE 1980 = "chile"
what is 1977 when 1980 is chile?
CREATE TABLE table_name_65 (Id VARCHAR)
SELECT head_coach FROM table_22165661_3 WHERE championship_game_opponent = "Miami University"
Who is the head coach when Miami University is the championship game opponent?
CREATE TABLE table_22165661_3 (head_coach VARCHAR, championship_game_opponent VARCHAR)
SELECT date FROM table_name_84 WHERE surface = "clay" AND location = "santos, brazil"
Name the date for clay surface and location of santos, brazil
CREATE TABLE table_name_84 (date VARCHAR, surface VARCHAR, location VARCHAR)
SELECT viewers__in_millions_ FROM table_2108684_1 WHERE run_time = "25:22"
How many million viewers watched the episode with a run time of 25:22?
CREATE TABLE table_2108684_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)
SELECT stadium FROM table_name_6 WHERE visiting_team = "denver broncos"
What is the name of the stadium when the visiting team is the Denver Broncos?
CREATE TABLE table_name_6 (stadium VARCHAR, visiting_team VARCHAR)
SELECT MAX(laps) FROM table_name_73 WHERE rank = "14"
What is the highest laps of the year when the rank was 14?
CREATE TABLE table_name_73 (laps INTEGER, rank VARCHAR)
SELECT party FROM table_26129220_2 WHERE senator = "Mark Wagoner"
What is the party affiliation for senator mark Wagoner?
CREATE TABLE table_26129220_2 (party VARCHAR, senator VARCHAR)
SELECT land_area__km²_ FROM table_189598_7 WHERE population__2011_ = 1233
When 1233 is the population of 2011 what is the land area in kilometers squared?
CREATE TABLE table_189598_7 (land_area__km²_ VARCHAR, population__2011_ VARCHAR)
SELECT COUNT(first_elected) FROM table_1805191_2 WHERE incumbent = "Spencer Bachus"
During what year was Representative Spencer Bachus first elected?
CREATE TABLE table_1805191_2 (first_elected VARCHAR, incumbent VARCHAR)
SELECT no_6 FROM table_name_56 WHERE no_10 = "joshua" AND no_8 = "andrew"
What is the No. 6 of the person with a No. 10 of Joshua and a No. 8 of Andrew?
CREATE TABLE table_name_56 (no_6 VARCHAR, no_10 VARCHAR, no_8 VARCHAR)
SELECT MIN(founded) FROM table_28253870_1
Name the least founded
CREATE TABLE table_28253870_1 (founded INTEGER)
SELECT frequency FROM table_name_21 WHERE call_letters = "wmad"
What is the frequency of WMAD?
CREATE TABLE table_name_21 (frequency VARCHAR, call_letters VARCHAR)
SELECT meaning FROM table_29997112_3 WHERE transliteration = "dvojka"
What are the meanings of the flag whose name transliterates to dvojka?
CREATE TABLE table_29997112_3 (meaning VARCHAR, transliteration VARCHAR)
SELECT character FROM table_22460085_1 WHERE original_broadway_performer = "Moya Angela"
What character did Moya Angela portray?
CREATE TABLE table_22460085_1 (character VARCHAR, original_broadway_performer VARCHAR)
SELECT nominated_work FROM table_name_24 WHERE award = "seattle international film festival"
What nominated work has seattle international film festival as the award?
CREATE TABLE table_name_24 (nominated_work VARCHAR, award VARCHAR)
SELECT MIN(swimsuit) FROM table_name_47 WHERE evening_gown > 8.794 AND state = "illinois"
What is the lowest swimsuit that has an evening gown bigger than 8.794 for illinois?
CREATE TABLE table_name_47 (swimsuit INTEGER, evening_gown VARCHAR, state VARCHAR)
SELECT opponent FROM table_name_25 WHERE round < 3 AND time = "1:02"
Who did wilson reis fight against that lasted less than 3 rounds with a time of 1:02?
CREATE TABLE table_name_25 (opponent VARCHAR, round VARCHAR, time VARCHAR)
SELECT COUNT(season__number) FROM table_26866519_1 WHERE director = "Ricardo Mendez Matta"
How many episodes are directed by ricardo mendez matta?
CREATE TABLE table_26866519_1 (season__number VARCHAR, director VARCHAR)
SELECT money_requested__£_ FROM table_name_39 WHERE company_or_product_name = "neurotica"
How much money did the company Neurotica request?
CREATE TABLE table_name_39 (money_requested__£_ VARCHAR, company_or_product_name VARCHAR)
SELECT original_air_date FROM table_28081876_6 WHERE us_viewers__millions_ = "1.57"
When was originally aired the episode with an audience of 1.57 million us viewers?
CREATE TABLE table_28081876_6 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
SELECT bronze FROM table_name_67 WHERE silver = "iceland"
When Iceland gets the Silver, who gets the Bronze?
CREATE TABLE table_name_67 (bronze VARCHAR, silver VARCHAR)
SELECT MAX(rank) FROM table_name_34 WHERE area__sqmi_ = 2 OFFSET 080
What is the largest rank with 2,080 area?
CREATE TABLE table_name_34 (rank INTEGER, area__sqmi_ VARCHAR)
SELECT reference FROM table_10979230_5 WHERE romaji_title = "Heartbreak Sniper"
who is the reference when romaji title is heartbreak sniper?
CREATE TABLE table_10979230_5 (reference VARCHAR, romaji_title VARCHAR)
SELECT first_name, last_name FROM players WHERE hand = 'L' ORDER BY birth_date
List the first and last name of all players who are left / L hand in the order of birth date.
CREATE TABLE players (first_name VARCHAR, last_name VARCHAR, hand VARCHAR, birth_date VARCHAR)
SELECT hometown FROM table_name_83 WHERE college = "duke"
What is the hometown of the player who is headed to Duke?
CREATE TABLE table_name_83 (hometown VARCHAR, college VARCHAR)
SELECT branding FROM table_1979203_1 WHERE _virtual_ = "13.1"
what is the name of the branding where the virtual is 13.1
CREATE TABLE table_1979203_1 (branding VARCHAR, _virtual_ VARCHAR)
SELECT year FROM table_name_83 WHERE accolade = "scottish albums of the decade"
What year was the accolade for Scottish albums of the decade?
CREATE TABLE table_name_83 (year VARCHAR, accolade VARCHAR)
SELECT COUNT(DISTINCT T2.camera_lens_id) FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id WHERE T1.country = 'Ethiopia'
How many distinct kinds of camera lenses are used to take photos of mountains in the country 'Ethiopia'?
CREATE TABLE mountain (id VARCHAR, country VARCHAR); CREATE TABLE photos (camera_lens_id VARCHAR, mountain_id VARCHAR)
SELECT issue_date FROM table_name_89 WHERE download = "no available" AND artist = "eric prydz"
What's the Issue Date for an Eric Prydz song with a no available Download information?
CREATE TABLE table_name_89 (issue_date VARCHAR, download VARCHAR, artist VARCHAR)
SELECT time_retired FROM table_name_41 WHERE grid = "4"
What was the time/retired of the car that started in grid 4?
CREATE TABLE table_name_41 (time_retired VARCHAR, grid VARCHAR)
SELECT class FROM table_name_34 WHERE prom__m_ > 30 AND peak = "sail"
Which Class is Peak Sail when it has a Prom larger than 30?
CREATE TABLE table_name_34 (class VARCHAR, prom__m_ VARCHAR, peak VARCHAR)
SELECT 2011 FROM table_name_68 WHERE 2008 = "4r"
What 2011 has 4r as the 2008?
CREATE TABLE table_name_68 (Id VARCHAR)
SELECT margin_of_victory FROM table_name_70 WHERE tournament = "the players championship"
What was the margin of victory for the Players Championship tournament?
CREATE TABLE table_name_70 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT label FROM table_name_38 WHERE format = "cd" AND date = "june 25, 2002"
Which label had a CD format and a date of June 25, 2002?
CREATE TABLE table_name_38 (label VARCHAR, format VARCHAR, date VARCHAR)
SELECT mascot FROM table_name_11 WHERE county = "32 hendricks"
What is the mascot for the school in 32 Hendricks County?
CREATE TABLE table_name_11 (mascot VARCHAR, county VARCHAR)
SELECT tie_no FROM table_name_15 WHERE home_team = "huddersfield town"
What is the tie no of the game that home team huddersfield town played?
CREATE TABLE table_name_15 (tie_no VARCHAR, home_team VARCHAR)
SELECT COUNT(general_classification) FROM table_12261806_2 WHERE stage = "15"
Name the general classification of stage 15
CREATE TABLE table_12261806_2 (general_classification VARCHAR, stage VARCHAR)
SELECT district FROM table_1341598_10 WHERE incumbent = "Lawrence J. Smith"
In what district is the incumbent Lawrence J. Smith?
CREATE TABLE table_1341598_10 (district VARCHAR, incumbent VARCHAR)
SELECT opponent FROM table_name_49 WHERE week < 9 AND attendance = "61,626"
In the game on or before week 9, who was the opponent when the attendance was 61,626?
CREATE TABLE table_name_49 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT MIN(attempts) FROM table_19418696_3 WHERE name = "Bobby Layne"
How many attempts for Bobby Layne?
CREATE TABLE table_19418696_3 (attempts INTEGER, name VARCHAR)