question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is the total number of Year, when Wins is less than 0?
CREATE TABLE table_name_70 (year VARCHAR, wins INTEGER)
SELECT COUNT(year) FROM table_name_70 WHERE wins < 0
What is the sum of Points, when Year is after 1959, and when Class is 250cc?
CREATE TABLE table_name_42 (points INTEGER, year VARCHAR, class VARCHAR)
SELECT SUM(points) FROM table_name_42 WHERE year > 1959 AND class = "250cc"
What is the total number of Wins, when Points is less than 1?
CREATE TABLE table_name_17 (wins VARCHAR, points INTEGER)
SELECT COUNT(wins) FROM table_name_17 WHERE points < 1
What is the sum of Wins, when Year is 1959?
CREATE TABLE table_name_2 (wins INTEGER, year VARCHAR)
SELECT SUM(wins) FROM table_name_2 WHERE year = 1959
What is the fewest games played for teams with 73 goals for and more than 69 goals against?
CREATE TABLE table_name_17 (played INTEGER, goals_for VARCHAR, goals_against VARCHAR)
SELECT MIN(played) FROM table_name_17 WHERE goals_for = 73 AND goals_against > 69
What is the highest number of goals for for teams with 25 losses?
CREATE TABLE table_name_26 (goals_for INTEGER, lost VARCHAR)
SELECT MAX(goals_for) FROM table_name_26 WHERE lost = 25
What is the most losses for positions under 15 and 66 goals against?
CREATE TABLE table_name_50 (lost INTEGER, goals_against VARCHAR, position VARCHAR)
SELECT MAX(lost) FROM table_name_50 WHERE goals_against = 66 AND position < 15
What is the average goals against for teams with more than 56 goals for and exactly 50 points?
CREATE TABLE table_name_20 (goals_against INTEGER, points_1 VARCHAR, goals_for VARCHAR)
SELECT AVG(goals_against) FROM table_name_20 WHERE points_1 = "50" AND goals_for > 56
Which Leader has Spoilt Votes as % of Seats?
CREATE TABLE table_name_26 (leader VARCHAR, _percentage_of_seats VARCHAR)
SELECT leader FROM table_name_26 WHERE _percentage_of_seats = "spoilt votes"
What is the %FPv for the Workers' Party?
CREATE TABLE table_name_3 (_percentage_fpv VARCHAR, party VARCHAR)
SELECT _percentage_fpv FROM table_name_3 WHERE party = "workers' party"
What is the First Pref Votes for the % FPv of 0.06?
CREATE TABLE table_name_23 (first_pref_votes VARCHAR, _percentage_fpv VARCHAR)
SELECT first_pref_votes FROM table_name_23 WHERE _percentage_fpv = "0.06"
What is the First Pref Votes where the Leader is n/a and the Party is Independent?
CREATE TABLE table_name_91 (first_pref_votes VARCHAR, leader VARCHAR, party VARCHAR)
SELECT first_pref_votes FROM table_name_91 WHERE leader = "n/a" AND party = "independent"
What is the number of Seats for Leader Enda kenny?
CREATE TABLE table_name_49 (seats VARCHAR, leader VARCHAR)
SELECT seats FROM table_name_49 WHERE leader = "enda kenny"
What is Date to [H], when Position [F] is "Defender", when Goals is less than 3, when Appearances is greater than 113, and when Date From [G] is "1997"?
CREATE TABLE table_name_38 (date_to_ VARCHAR, h_ VARCHAR, appearances VARCHAR, date_from_ VARCHAR, g_ VARCHAR, goals VARCHAR, position_ VARCHAR, f_ VARCHAR)
SELECT date_to_[h_] FROM table_name_38 WHERE position_[f_] = "defender" AND goals < 3 AND appearances > 113 AND date_from_[g_] = "1997"
What is Club Source [I ], when Name is "Andrew McCombie Category:Articles With hCards"?
CREATE TABLE table_name_14 (club_source_ VARCHAR, i_ VARCHAR, name VARCHAR)
SELECT club_source_[i_] FROM table_name_14 WHERE name = "andrew mccombie category:articles with hcards"
What is Name, when Goals is "80", and when Club Source [I ] is "71 [ dead link ]"?
CREATE TABLE table_name_60 (name VARCHAR, goals VARCHAR, club_source_ VARCHAR, i_ VARCHAR)
SELECT name FROM table_name_60 WHERE goals = 80 AND club_source_[i_] = "71 [ dead link ]"
What is Appearances, when Postion [F ] is "Defender", and when Date to [H ] is "1938"?
CREATE TABLE table_name_18 (appearances VARCHAR, position_ VARCHAR, f_ VARCHAR, date_to_ VARCHAR, h_ VARCHAR)
SELECT appearances FROM table_name_18 WHERE position_[f_] = "defender" AND date_to_[h_] = "1938"
WHAT IS AVERAGE SCORE WITH T3 PLACE, FOR DOUG SANDERS?
CREATE TABLE table_name_75 (score INTEGER, place VARCHAR, player VARCHAR)
SELECT AVG(score) FROM table_name_75 WHERE place = "t3" AND player = "doug sanders"
How much is the money ($) when the country is united states, to par is e and the score is 72-75-70-71=288?
CREATE TABLE table_name_59 (money___ INTEGER, country VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT SUM(money___) AS $__ FROM table_name_59 WHERE country = "united states" AND to_par = "e" AND score = 72 - 75 - 70 - 71 = 288
what is the to par when the player is roger maltbie?
CREATE TABLE table_name_75 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_75 WHERE player = "roger maltbie"
How much is the money ($) when the score is 67-71-72-72=282?
CREATE TABLE table_name_97 (money___ VARCHAR, score VARCHAR)
SELECT COUNT(money___) AS $__ FROM table_name_97 WHERE score = 67 - 71 - 72 - 72 = 282
what is the to par when the place is 8?
CREATE TABLE table_name_82 (to_par VARCHAR, place VARCHAR)
SELECT to_par FROM table_name_82 WHERE place = "8"
WHAT IS THE SCORE OF THE GAME LARGER THAN 47, AT THE ROSE GARDEN 20,250 IN ATTENDANCE?
CREATE TABLE table_name_17 (score VARCHAR, game VARCHAR, location_attendance VARCHAR)
SELECT score FROM table_name_17 WHERE game > 47 AND location_attendance = "rose garden 20,250"
What tournament was on May 31, 1987?
CREATE TABLE table_name_7 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_7 WHERE date = "may 31, 1987"
What tournament was on May 31, 1987?
CREATE TABLE table_name_93 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_93 WHERE date = "may 31, 1987"
What tournament had a winning score of –9 (69-71-67=207)?
CREATE TABLE table_name_72 (tournament VARCHAR, winning_score VARCHAR)
SELECT tournament FROM table_name_72 WHERE winning_score = –9(69 - 71 - 67 = 207)
Who was the runner(s)-up when the winning score was –13 (75-68-68=211)?
CREATE TABLE table_name_77 (runner_s__up VARCHAR, winning_score VARCHAR)
SELECT runner_s__up FROM table_name_77 WHERE winning_score = –13(75 - 68 - 68 = 211)
What tournament had a 1 point margin of victory?
CREATE TABLE table_name_12 (tournament VARCHAR, margin_of_victory VARCHAR)
SELECT tournament FROM table_name_12 WHERE margin_of_victory = "1 point"
What tournament was Laura Davies the runner-up?
CREATE TABLE table_name_50 (tournament VARCHAR, runner_s__up VARCHAR)
SELECT tournament FROM table_name_50 WHERE runner_s__up = "laura davies"
What is the Location of the match against Bob Stines?
CREATE TABLE table_name_36 (location VARCHAR, opponent VARCHAR)
SELECT location FROM table_name_36 WHERE opponent = "bob stines"
What is the venue of the game that was played on 23 October 1966?
CREATE TABLE table_name_41 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_41 WHERE date = "23 october 1966"
Where was the friendly competition on 17 December 1967 played at?
CREATE TABLE table_name_72 (venue VARCHAR, competition VARCHAR, date VARCHAR)
SELECT venue FROM table_name_72 WHERE competition = "friendly" AND date = "17 december 1967"
What 2009 has statistics by surface in 2012?
CREATE TABLE table_name_66 (Id VARCHAR)
SELECT 2009 FROM table_name_66 WHERE 2012 = "statistics by surface"
What 2001 has a ATP World Tour Masters 1000 2007?
CREATE TABLE table_name_12 (Id VARCHAR)
SELECT 2011 FROM table_name_12 WHERE 2007 = "atp world tour masters 1000"
What 2010 has an A 2006 & 2011?
CREATE TABLE table_name_30 (Id VARCHAR)
SELECT 2010 FROM table_name_30 WHERE 2006 = "a" AND 2011 = "a"
What 2009 has a 0 in 2008 & 2010?
CREATE TABLE table_name_3 (Id VARCHAR)
SELECT 2009 FROM table_name_3 WHERE 2010 = "0" AND 2008 = "0"
What was the finishing position of Hale Irwin, of the United states?
CREATE TABLE table_name_96 (finish VARCHAR, country VARCHAR, player VARCHAR)
SELECT finish FROM table_name_96 WHERE country = "united states" AND player = "hale irwin"
Where did the player who won in 1965 finish?
CREATE TABLE table_name_92 (finish VARCHAR, year_s__won VARCHAR)
SELECT finish FROM table_name_92 WHERE year_s__won = "1965"
Where did Jerry Pate finish?
CREATE TABLE table_name_29 (finish VARCHAR, player VARCHAR)
SELECT finish FROM table_name_29 WHERE player = "jerry pate"
What was the average total for the player from the United States, who won in 1978?
CREATE TABLE table_name_73 (total INTEGER, country VARCHAR, year_s__won VARCHAR)
SELECT AVG(total) FROM table_name_73 WHERE country = "united states" AND year_s__won = "1978"
What team was the opponent for the game played on September 19, 1999?
CREATE TABLE table_name_92 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_92 WHERE date = "september 19, 1999"
What week was the bye week?
CREATE TABLE table_name_46 (week INTEGER, opponent VARCHAR)
SELECT AVG(week) FROM table_name_46 WHERE opponent = "bye"
What team was the opponent for the game played on December 19, 1999?
CREATE TABLE table_name_87 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_87 WHERE date = "december 19, 1999"
What is the result from the game played on week 7?
CREATE TABLE table_name_45 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_45 WHERE week = 7
What is the lowest number of seats of the 1992 election?
CREATE TABLE table_name_86 (seats INTEGER, election VARCHAR)
SELECT MIN(seats) FROM table_name_86 WHERE election = 1992
How many seats had a 41.2% share of votes?
CREATE TABLE table_name_96 (seats VARCHAR, share_of_votes VARCHAR)
SELECT seats FROM table_name_96 WHERE share_of_votes = "41.2%"
What is the share of votes with 3,567,021 NDC votes?
CREATE TABLE table_name_40 (share_of_votes VARCHAR, number_of_ndc_votes VARCHAR)
SELECT share_of_votes FROM table_name_40 WHERE number_of_ndc_votes = "3,567,021"
What was the total when the set 3 score was 25–27?
CREATE TABLE table_name_12 (total VARCHAR, set_3 VARCHAR)
SELECT total FROM table_name_12 WHERE set_3 = "25–27"
On what date was the total 60–77?
CREATE TABLE table_name_88 (date VARCHAR, total VARCHAR)
SELECT date FROM table_name_88 WHERE total = "60–77"
What is the score for set 1 with a total of 117–109?
CREATE TABLE table_name_58 (set_1 VARCHAR, total VARCHAR)
SELECT set_1 FROM table_name_58 WHERE total = "117–109"
What team operates car 11?
CREATE TABLE table_name_28 (team VARCHAR, car_no VARCHAR)
SELECT team FROM table_name_28 WHERE car_no = "11"
What was the time/retired of Darren Manning?
CREATE TABLE table_name_7 (time_retired VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_name_7 WHERE driver = "darren manning"
How many points did car 20 score?
CREATE TABLE table_name_65 (points VARCHAR, car_no VARCHAR)
SELECT points FROM table_name_65 WHERE car_no = "20"
What is the car number for Jeff Simmons on the Rahal Letterman team?
CREATE TABLE table_name_46 (car_no VARCHAR, team VARCHAR, driver VARCHAR)
SELECT car_no FROM table_name_46 WHERE team = "rahal letterman" AND driver = "jeff simmons"
What is Name, when Length Meters is greater than 66.4, and when Km From Kingston is 138.8?
CREATE TABLE table_name_54 (name VARCHAR, length_meters VARCHAR, km_from_kingston VARCHAR)
SELECT name FROM table_name_54 WHERE length_meters > 66.4 AND km_from_kingston = 138.8
What is the total number of Length Feet, when Parish is Clarendon, when Km From Kingston is 71.2, and when Length Meters is less than 21.3?
CREATE TABLE table_name_97 (length_feet VARCHAR, length_meters VARCHAR, parish VARCHAR, km_from_kingston VARCHAR)
SELECT COUNT(length_feet) FROM table_name_97 WHERE parish = "clarendon" AND km_from_kingston = 71.2 AND length_meters < 21.3
What is the highest Km From Kingston, when Mi From Kingston is less than 108, and when Length Meters is 260.6?
CREATE TABLE table_name_61 (km_from_kingston INTEGER, mi_from_kingston VARCHAR, length_meters VARCHAR)
SELECT MAX(km_from_kingston) FROM table_name_61 WHERE mi_from_kingston < 108 AND length_meters = 260.6
What is Lenth Feet, when Mi From Kingston is greater than 84.5, when Length Meters is greater than 55.5, and when Name is Unnamed?
CREATE TABLE table_name_28 (length_feet VARCHAR, name VARCHAR, mi_from_kingston VARCHAR, length_meters VARCHAR)
SELECT length_feet FROM table_name_28 WHERE mi_from_kingston > 84.5 AND length_meters > 55.5 AND name = "unnamed"
Which Place has a Player of lee trevino?
CREATE TABLE table_name_95 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_95 WHERE player = "lee trevino"
Name Country which has a Place of t7, and a Score of 73-69-73=215?
CREATE TABLE table_name_5 (country VARCHAR, place VARCHAR, score VARCHAR)
SELECT country FROM table_name_5 WHERE place = "t7" AND score = 73 - 69 - 73 = 215
Which week held a tournament in Rome?
CREATE TABLE table_name_49 (week VARCHAR, tournament VARCHAR)
SELECT week FROM table_name_49 WHERE tournament = "rome"
What is the result of the fight when record is 12-2?
CREATE TABLE table_name_79 (res VARCHAR, record VARCHAR)
SELECT res FROM table_name_79 WHERE record = "12-2"
How many rounds was the fight at UFC 34?
CREATE TABLE table_name_7 (round INTEGER, event VARCHAR)
SELECT SUM(round) FROM table_name_7 WHERE event = "ufc 34"
What is the location of the fight against Zaza Tkeshelashvili?
CREATE TABLE table_name_26 (location VARCHAR, opponent VARCHAR)
SELECT location FROM table_name_26 WHERE opponent = "zaza tkeshelashvili"
what is the average year when the title is baka to test to shōkanjū?
CREATE TABLE table_name_89 (year INTEGER, title VARCHAR)
SELECT AVG(year) FROM table_name_89 WHERE title = "baka to test to shōkanjū"
what is the title when the imprint is dengeki bunko and the artist is kiyotaka haimura?
CREATE TABLE table_name_96 (title VARCHAR, imprint VARCHAR, artist VARCHAR)
SELECT title FROM table_name_96 WHERE imprint = "dengeki bunko" AND artist = "kiyotaka haimura"
what is the imprint when the title is owari no chronicle (ahead series)?
CREATE TABLE table_name_22 (imprint VARCHAR, title VARCHAR)
SELECT imprint FROM table_name_22 WHERE title = "owari no chronicle (ahead series)"
what is the earliest year when the author is reki kawahara?
CREATE TABLE table_name_42 (year INTEGER, author VARCHAR)
SELECT MIN(year) FROM table_name_42 WHERE author = "reki kawahara"
who is the character when the artist is take and the year is before 2006?
CREATE TABLE table_name_75 (character VARCHAR, artist VARCHAR, year VARCHAR)
SELECT character FROM table_name_75 WHERE artist = "take" AND year < 2006
Which language has 3 draws?
CREATE TABLE table_name_15 (language VARCHAR, draw VARCHAR)
SELECT language FROM table_name_15 WHERE draw = 3
What is the away team score for the match at 6:00 PM and an away team of Hawthorn?
CREATE TABLE table_name_56 (away_team VARCHAR, time VARCHAR)
SELECT away_team AS score FROM table_name_56 WHERE time = "6:00 pm" AND away_team = "hawthorn"
What is the Tenure of the Officer with a Date of death of 2001-08-31?
CREATE TABLE table_name_16 (tenure VARCHAR, date_of_death VARCHAR)
SELECT tenure FROM table_name_16 WHERE date_of_death = "2001-08-31"
What is Detective Donald William Schneider's Cause of death?
CREATE TABLE table_name_37 (cause_of_death VARCHAR, rank VARCHAR, name VARCHAR)
SELECT cause_of_death FROM table_name_37 WHERE rank = "detective" AND name = "donald william schneider"
What is Gary David Saunders' Tenure?
CREATE TABLE table_name_23 (tenure VARCHAR, name VARCHAR)
SELECT tenure FROM table_name_23 WHERE name = "gary david saunders"
What is gunfire victim Maria Cecilia Rosa with 6 years of Tenure Date of Death?
CREATE TABLE table_name_47 (date_of_death VARCHAR, name VARCHAR, cause_of_death VARCHAR, tenure VARCHAR)
SELECT date_of_death FROM table_name_47 WHERE cause_of_death = "gunfire" AND tenure = "6 years" AND name = "maria cecilia rosa"
What is Lijsttrekker, when Year is after 1990, and when Chair is "Ingrid Van Engelshoven"?
CREATE TABLE table_name_51 (lijsttrekker VARCHAR, year VARCHAR, chair VARCHAR)
SELECT lijsttrekker FROM table_name_51 WHERE year > 1990 AND chair = "ingrid van engelshoven"
What is Fractievoorzitter, when Lijsttrekker is "No Elections", and when Year is after 2005?
CREATE TABLE table_name_80 (fractievoorzitter VARCHAR, lijsttrekker VARCHAR, year VARCHAR)
SELECT fractievoorzitter FROM table_name_80 WHERE lijsttrekker = "no elections" AND year > 2005
What is Cabinet, when Year is after 1981, when Fractievoorzitter is "Hans Van Mierlo", and when Chair is "W.I.J.M. Vrijhoef"?
CREATE TABLE table_name_42 (cabinet VARCHAR, chair VARCHAR, year VARCHAR, fractievoorzitter VARCHAR)
SELECT cabinet FROM table_name_42 WHERE year > 1981 AND fractievoorzitter = "hans van mierlo" AND chair = "w.i.j.m. vrijhoef"
What is Lijsttrekker, when Cabinet is "Hans Van Mierlo", and when Fractievoorzitter is "Thom De Graaf"?
CREATE TABLE table_name_81 (lijsttrekker VARCHAR, cabinet VARCHAR, fractievoorzitter VARCHAR)
SELECT lijsttrekker FROM table_name_81 WHERE cabinet = "hans van mierlo" AND fractievoorzitter = "thom de graaf"
What is Cabinet, when Year is before 2001, when Lijsttrekker is "No Elections", when Fractievoorzitter is "Hans Van Mierlo", and when Chair is "S. Van Der Loo"?
CREATE TABLE table_name_79 (cabinet VARCHAR, chair VARCHAR, fractievoorzitter VARCHAR, year VARCHAR, lijsttrekker VARCHAR)
SELECT cabinet FROM table_name_79 WHERE year < 2001 AND lijsttrekker = "no elections" AND fractievoorzitter = "hans van mierlo" AND chair = "s. van der loo"
Which territory has a channel of 144 and a broadcaster of Astro?
CREATE TABLE table_name_23 (territory VARCHAR, channel VARCHAR, broadcaster VARCHAR)
SELECT territory FROM table_name_23 WHERE channel = 144 AND broadcaster = "astro"
What is the tennis status for youngstown state?
CREATE TABLE table_name_52 (tennis VARCHAR, school VARCHAR)
SELECT tennis FROM table_name_52 WHERE school = "youngstown state"
Which school has yes for soccer, tennis and indoor track.
CREATE TABLE table_name_73 (school VARCHAR, indoor_track VARCHAR, soccer VARCHAR, tennis VARCHAR)
SELECT school FROM table_name_73 WHERE soccer = "yes" AND tennis = "yes" AND indoor_track = "yes"
What is the basketball status for Valparaiso who has an indoor track status of yes?
CREATE TABLE table_name_69 (bask VARCHAR, indoor_track VARCHAR, school VARCHAR)
SELECT bask FROM table_name_69 WHERE indoor_track = "yes" AND school = "valparaiso"
What is the indoor track status for the school that has yes for tennis and no for golf?
CREATE TABLE table_name_91 (indoor_track VARCHAR, tennis VARCHAR, golf VARCHAR)
SELECT indoor_track FROM table_name_91 WHERE tennis = "yes" AND golf = "no"
What is th eswimming status for the school that has yes on indoor track, soccer and tennis?
CREATE TABLE table_name_80 (swimming VARCHAR, tennis VARCHAR, indoor_track VARCHAR, soccer VARCHAR)
SELECT swimming FROM table_name_80 WHERE indoor_track = "yes" AND soccer = "yes" AND tennis = "yes"
What is the status for tennis at cleveland state who has yes for swimming, golf and soccer?
CREATE TABLE table_name_78 (tennis VARCHAR, school VARCHAR, swimming VARCHAR, golf VARCHAR, soccer VARCHAR)
SELECT tennis FROM table_name_78 WHERE golf = "yes" AND soccer = "yes" AND swimming = "yes" AND school = "cleveland state"
What event did Soares fight against josh spearman?
CREATE TABLE table_name_69 (event VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_69 WHERE opponent = "josh spearman"
What round was the fight won or loss by a decision?
CREATE TABLE table_name_4 (round INTEGER, method VARCHAR)
SELECT MIN(round) FROM table_name_4 WHERE method = "decision"
Where was the fight that lasted 3 rounds and was won or loss by a decision?
CREATE TABLE table_name_65 (location VARCHAR, round VARCHAR, method VARCHAR)
SELECT location FROM table_name_65 WHERE round = 3 AND method = "decision"
what is the lowest top 5 when the year is after 1995, team(s) is #15 billy ballew motorsports, and starts is more than 4?
CREATE TABLE table_name_45 (top_5 INTEGER, starts VARCHAR, year VARCHAR, team_s_ VARCHAR)
SELECT MIN(top_5) FROM table_name_45 WHERE year > 1995 AND team_s_ = "#15 billy ballew motorsports" AND starts > 4
What was the method in the fight against Chris Myers?
CREATE TABLE table_name_15 (method VARCHAR, opponent VARCHAR)
SELECT method FROM table_name_15 WHERE opponent = "chris myers"
What is the record in TKO 20: Champion Vs Champion?
CREATE TABLE table_name_27 (record VARCHAR, event VARCHAR)
SELECT record FROM table_name_27 WHERE event = "tko 20: champion vs champion"
How many rounds in the fight in Quebec, Canada against David Loiseau?
CREATE TABLE table_name_2 (round VARCHAR, location VARCHAR, opponent VARCHAR)
SELECT COUNT(round) FROM table_name_2 WHERE location = "quebec, canada" AND opponent = "david loiseau"
Which event has a method of TKO (punches)?
CREATE TABLE table_name_52 (event VARCHAR, method VARCHAR)
SELECT event FROM table_name_52 WHERE method = "tko (punches)"
Who is the opponent when the method is technical submission (guillotine choke)?
CREATE TABLE table_name_22 (opponent VARCHAR, method VARCHAR)
SELECT opponent FROM table_name_22 WHERE method = "technical submission (guillotine choke)"
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 is the average pick for Florida State?
CREATE TABLE table_name_70 (pick INTEGER, school_club_team VARCHAR)
SELECT AVG(pick) FROM table_name_70 WHERE school_club_team = "florida state"
What is the total number for the pick of the player Wayne Fowler and a round after 7?
CREATE TABLE table_name_91 (pick VARCHAR, player VARCHAR, round VARCHAR)
SELECT COUNT(pick) FROM table_name_91 WHERE player = "wayne fowler" AND round > 7
Which college had an overall smaller than 315 in round 17?
CREATE TABLE table_name_41 (college VARCHAR, overall VARCHAR, round VARCHAR)
SELECT college FROM table_name_41 WHERE overall < 315 AND round = 17