combined_text stringlengths 106 1.05k |
|---|
###question:How many schools are listed for the player who played the years for Jazz in 2010-11?###answer:SELECT COUNT(school_club_team) FROM table_11545282_5 WHERE years_for_jazz = "2010-11"###context:CREATE TABLE table_11545282_5 (school_club_team VARCHAR, years_for_jazz VARCHAR) |
###question:How many players were names Howard Eisley?###answer:SELECT COUNT(no) FROM table_11545282_5 WHERE player = "Howard Eisley"###context:CREATE TABLE table_11545282_5 (no VARCHAR, player VARCHAR) |
###question:What is the position for player Blue Edwards?###answer:SELECT position FROM table_11545282_5 WHERE player = "Blue Edwards"###context:CREATE TABLE table_11545282_5 (position VARCHAR, player VARCHAR) |
###question:Which player played the years for Jazz in 1995-2000, 2004-05###answer:SELECT player FROM table_11545282_5 WHERE years_for_jazz = "1995-2000, 2004-05"###context:CREATE TABLE table_11545282_5 (player VARCHAR, years_for_jazz VARCHAR) |
###question:Which player is no. 53?###answer:SELECT player FROM table_11545282_5 WHERE no = "53"###context:CREATE TABLE table_11545282_5 (player VARCHAR, no VARCHAR) |
###question:During which years did Jim Farmer play for Jazz?###answer:SELECT years_for_jazz FROM table_11545282_6 WHERE player = "Jim Farmer"###context:CREATE TABLE table_11545282_6 (years_for_jazz VARCHAR, player VARCHAR) |
###question:How many players have played for Jazz during 2006-2007?###answer:SELECT COUNT(player) FROM table_11545282_6 WHERE years_for_jazz = "2006-2007"###context:CREATE TABLE table_11545282_6 (player VARCHAR, years_for_jazz VARCHAR) |
###question:What's Jim Farmer's nationality?###answer:SELECT nationality FROM table_11545282_6 WHERE player = "Jim Farmer"###context:CREATE TABLE table_11545282_6 (nationality VARCHAR, player VARCHAR) |
###question:For how many players from UTEP can one calculate how many years they've played for Jazz?###answer:SELECT COUNT(years_for_jazz) FROM table_11545282_6 WHERE school_club_team = "UTEP"###context:CREATE TABLE table_11545282_6 (years_for_jazz VARCHAR, school_club_team VARCHAR) |
###question:How many position does Jim Farmer play in?###answer:SELECT COUNT(position) FROM table_11545282_6 WHERE player = "Jim Farmer"###context:CREATE TABLE table_11545282_6 (position VARCHAR, player VARCHAR) |
###question:What school or club did number 35 play for?###answer:SELECT school_club_team FROM table_11545282_7 WHERE no = 35###context:CREATE TABLE table_11545282_7 (school_club_team VARCHAR, no VARCHAR) |
###question:How many years did number 25 play for the Jazz?###answer:SELECT years_for_jazz FROM table_11545282_7 WHERE no = 25###context:CREATE TABLE table_11545282_7 (years_for_jazz VARCHAR, no VARCHAR) |
###question:How many years did Paul Griffin play for the Jazz?###answer:SELECT COUNT(years_for_jazz) FROM table_11545282_7 WHERE player = "Paul Griffin"###context:CREATE TABLE table_11545282_7 (years_for_jazz VARCHAR, player VARCHAR) |
###question:What position did Lamar Green play?###answer:SELECT position FROM table_11545282_7 WHERE player = "Lamar Green"###context:CREATE TABLE table_11545282_7 (position VARCHAR, player VARCHAR) |
###question:How many players only played for the Jazz in only 2010?###answer:SELECT COUNT(no) FROM table_11545282_7 WHERE years_for_jazz = "2010"###context:CREATE TABLE table_11545282_7 (no VARCHAR, years_for_jazz VARCHAR) |
###question:What was the delivery date when s2 (lst) type, s2 (frigate) type, c1-m type was delivered?###answer:SELECT 1 AS st_ship_delivery_date FROM table_11552751_2 WHERE ship_types_delivered = "S2 (LST) type, S2 (frigate) type, C1-M type"###context:CREATE TABLE table_11552751_2 (ship_types_delivered VARCHAR) |
###question:When was the delevery date when there were 12 ways of delivery?###answer:SELECT 1 AS st_ship_delivery_date FROM table_11552751_2 WHERE total_number_of_ways = "12 ways"###context:CREATE TABLE table_11552751_2 (total_number_of_ways VARCHAR) |
###question:What are the episode numbers where the episode features Jack & Locke?###answer:SELECT no_in_series FROM table_11562149_1 WHERE featured_character_s_ = "Jack & Locke"###context:CREATE TABLE table_11562149_1 (no_in_series VARCHAR, featured_character_s_ VARCHAR) |
###question:What are the episode numbers of episodes featuring Hurley?###answer:SELECT no_in_series FROM table_11562149_1 WHERE featured_character_s_ = "Hurley"###context:CREATE TABLE table_11562149_1 (no_in_series VARCHAR, featured_character_s_ VARCHAR) |
###question:List the episode whose number in the series is 111.###answer:SELECT no_in_season FROM table_11562149_1 WHERE no_in_series = "111"###context:CREATE TABLE table_11562149_1 (no_in_season VARCHAR, no_in_series VARCHAR) |
###question:What date got 9.82 million viewers?###answer:SELECT original_air_date FROM table_11562143_1 WHERE us_viewers__million_ = "9.82"###context:CREATE TABLE table_11562143_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR) |
###question:What school took 3rd place in 2007?###answer:SELECT 3 AS rd_place FROM table_11577996_1 WHERE year = 2007###context:CREATE TABLE table_11577996_1 (year VARCHAR) |
###question:What school took 4th place in 2002?###answer:SELECT 4 AS th_place FROM table_11577996_1 WHERE year = 2002###context:CREATE TABLE table_11577996_1 (year VARCHAR) |
###question:What school took 4th place in 2001?###answer:SELECT 4 AS th_place FROM table_11577996_1 WHERE year = 2001###context:CREATE TABLE table_11577996_1 (year VARCHAR) |
###question:Who were the runner(s)-up when Tiger won by 11 strokes?###answer:SELECT runner_s__up FROM table_11570261_2 WHERE margin_of_victory = "11 strokes"###context:CREATE TABLE table_11570261_2 (runner_s__up VARCHAR, margin_of_victory VARCHAR) |
###question:What was the margin of victory over Justin Leonard, phillip price?###answer:SELECT COUNT(margin_of_victory) FROM table_11570261_2 WHERE runner_s__up = "Justin Leonard, Phillip Price"###context:CREATE TABLE table_11570261_2 (margin_of_victory VARCHAR, runner_s__up VARCHAR) |
###question:There were 68 worcs f-c matches played on Chester Road North Ground.###answer:SELECT worcs_f_c_matches FROM table_1156428_2 WHERE name_of_ground = "Chester Road North Ground"###context:CREATE TABLE table_1156428_2 (worcs_f_c_matches VARCHAR, name_of_ground VARCHAR) |
###question:How many times did Tiger get second in the year where there were 11 cuts?###answer:SELECT MAX(2 AS nd) FROM table_11570261_6 WHERE cuts_made = "11"###context:CREATE TABLE table_11570261_6 (cuts_made VARCHAR) |
###question:Which locomotives 12" x 17" are both ex-industrial and built by Manning Wardle?###answer:SELECT name FROM table_1157867_2 WHERE notes = "Ex-industrial" AND builder = "Manning Wardle"###context:CREATE TABLE table_1157867_2 (name VARCHAR, notes VARCHAR, builder VARCHAR) |
###question:What's the size of the cylinders built by Longbottom, Barnsley?###answer:SELECT cylinders FROM table_1157867_2 WHERE builder = "Longbottom, Barnsley"###context:CREATE TABLE table_1157867_2 (cylinders VARCHAR, builder VARCHAR) |
###question:Who is the builder of the locomotives with wheel arrangement of 2-4-2 T?###answer:SELECT builder FROM table_1157867_2 WHERE wheel_arrangement = "2-4-2 T"###context:CREATE TABLE table_1157867_2 (builder VARCHAR, wheel_arrangement VARCHAR) |
###question:On what date did Hudswell Clarke build the locomotive with 0-6-0 ST wheel arrangements?###answer:SELECT date_built FROM table_1157867_2 WHERE wheel_arrangement = "0-6-0 ST" AND builder = "Hudswell Clarke"###context:CREATE TABLE table_1157867_2 (date_built VARCHAR, wheel_arrangement VARCHAR, builder VARCHAR) |
###question:What amount of times is the name, Bok De Korver listed?###answer:SELECT MAX(number) FROM table_11585313_1 WHERE name = "Bok de Korver"###context:CREATE TABLE table_11585313_1 (number INTEGER, name VARCHAR) |
###question:What is the total number of goals on the debut date of 14-04-1907?###answer:SELECT COUNT(number_of_goals) FROM table_11585313_1 WHERE date_of_debut = "14-04-1907"###context:CREATE TABLE table_11585313_1 (number_of_goals VARCHAR, date_of_debut VARCHAR) |
###question:What is the date of debut that has a date of birth listed at 24-10-1887?###answer:SELECT date_of_debut FROM table_11585313_1 WHERE date_of_birth = "24-10-1887"###context:CREATE TABLE table_11585313_1 (date_of_debut VARCHAR, date_of_birth VARCHAR) |
###question:What is the name of person that scored 10 goals?###answer:SELECT name FROM table_11585313_1 WHERE number_of_goals = 10###context:CREATE TABLE table_11585313_1 (name VARCHAR, number_of_goals VARCHAR) |
###question:What is the name of the person whose date of death is 01-04-1954?###answer:SELECT name FROM table_11585313_1 WHERE date_of_death† = "01-04-1954"###context:CREATE TABLE table_11585313_1 (name VARCHAR, date_of_death† VARCHAR) |
###question:What is the toatl number of caps where the name is Hans Blume?###answer:SELECT COUNT(number_of_caps) FROM table_11585313_1 WHERE name = "Hans Blume"###context:CREATE TABLE table_11585313_1 (number_of_caps VARCHAR, name VARCHAR) |
###question:What was the date of Henk Hordijk's death?###answer:SELECT date_of_death† FROM table_11585313_2 WHERE name = "Henk Hordijk"###context:CREATE TABLE table_11585313_2 (date_of_death† VARCHAR, name VARCHAR) |
###question:What frequency is the pentium dual-core t3200?###answer:SELECT frequency FROM table_11602313_4 WHERE model_number = "Pentium Dual-Core T3200"###context:CREATE TABLE table_11602313_4 (frequency VARCHAR, model_number VARCHAR) |
###question:What is the frequency of the model with part number lf80537gf0411m?###answer:SELECT frequency FROM table_11602313_4 WHERE part_number_s_ = "LF80537GF0411M"###context:CREATE TABLE table_11602313_4 (frequency VARCHAR, part_number_s_ VARCHAR) |
###question:What is the FSB of the model with part number lf80537gf0411m?###answer:SELECT fsb FROM table_11602313_4 WHERE part_number_s_ = "LF80537GF0411M"###context:CREATE TABLE table_11602313_4 (fsb VARCHAR, part_number_s_ VARCHAR) |
###question:What is the FSB of the model with part number lf80537ge0251mn?###answer:SELECT fsb FROM table_11602313_4 WHERE part_number_s_ = "LF80537GE0251MN"###context:CREATE TABLE table_11602313_4 (fsb VARCHAR, part_number_s_ VARCHAR) |
###question:What is the socket for the pentium dual-core t2410?###answer:SELECT socket FROM table_11602313_4 WHERE model_number = "Pentium Dual-Core T2410"###context:CREATE TABLE table_11602313_4 (socket VARCHAR, model_number VARCHAR) |
###question:What is the release date for the model with sspec number sla4h(m0)?###answer:SELECT release_date FROM table_11602313_4 WHERE sspec_number = "SLA4H(M0)"###context:CREATE TABLE table_11602313_4 (release_date VARCHAR, sspec_number VARCHAR) |
###question:How many different scores are there for the Verizon Classic?###answer:SELECT COUNT(score) FROM table_11603006_1 WHERE tournament = "Verizon Classic"###context:CREATE TABLE table_11603006_1 (score VARCHAR, tournament VARCHAR) |
###question:What was the score for the tournament in Michigan where the purse was smaller than 1813335.221493934?###answer:SELECT score FROM table_11603006_1 WHERE location = "Michigan" AND purse__$__ < 1813335.221493934###context:CREATE TABLE table_11603006_1 (score VARCHAR, location VARCHAR, purse__$__ VARCHAR) |
###question:How many tournaments were held in Maryland?###answer:SELECT COUNT(tournament) FROM table_11603006_1 WHERE location = "Maryland"###context:CREATE TABLE table_11603006_1 (tournament VARCHAR, location VARCHAR) |
###question:How many different locations have the score 207 (-10)?###answer:SELECT COUNT(location) FROM table_11603006_1 WHERE score = "207 (-10)"###context:CREATE TABLE table_11603006_1 (location VARCHAR, score VARCHAR) |
###question:What is the founding of parsu cimmarons?###answer:SELECT MIN(founded) FROM table_11604804_5 WHERE nickname = "ParSU Cimmarons"###context:CREATE TABLE table_11604804_5 (founded INTEGER, nickname VARCHAR) |
###question:What was the founding of navy blue?###answer:SELECT founded FROM table_11604804_5 WHERE color = "Navy Blue"###context:CREATE TABLE table_11604804_5 (founded VARCHAR, color VARCHAR) |
###question:What was the number of nickname founded 1918?###answer:SELECT COUNT(nickname) FROM table_11604804_5 WHERE founded = 1918###context:CREATE TABLE table_11604804_5 (nickname VARCHAR, founded VARCHAR) |
###question:What was the number of location of nickname cbsua formerly known cssac?###answer:SELECT COUNT(location) FROM table_11604804_5 WHERE nickname = "CBSUA formerly known CSSAC"###context:CREATE TABLE table_11604804_5 (location VARCHAR, nickname VARCHAR) |
###question:Name the tournament for arizona###answer:SELECT tournament FROM table_11603267_1 WHERE location = "Arizona"###context:CREATE TABLE table_11603267_1 (tournament VARCHAR, location VARCHAR) |
###question:Name the state and federal when property taxes is 17,199,210###answer:SELECT state_ & _federal FROM table_11608735_3 WHERE property_taxes = "17,199,210"###context:CREATE TABLE table_11608735_3 (state_ VARCHAR, _federal VARCHAR, property_taxes VARCHAR) |
###question:What is the local sources for property taxes of 11,631,227?###answer:SELECT other_local_sources FROM table_11608735_3 WHERE property_taxes = "11,631,227"###context:CREATE TABLE table_11608735_3 (other_local_sources VARCHAR, property_taxes VARCHAR) |
###question:What is the number of local sources for state and federal 12,929,489###answer:SELECT other_local_sources FROM table_11608735_3 WHERE state_ & _federal = "12,929,489"###context:CREATE TABLE table_11608735_3 (other_local_sources VARCHAR, state_ VARCHAR, _federal VARCHAR) |
###question:What seat does плоцкая губерния hold?###answer:SELECT seat FROM table_11614581_3 WHERE name_in_russian = "Плоцкая губерния"###context:CREATE TABLE table_11614581_3 (seat VARCHAR, name_in_russian VARCHAR) |
###question:Whose name in Polish holds the Lublin seat?###answer:SELECT name_in_polish FROM table_11614581_3 WHERE seat = "Lublin"###context:CREATE TABLE table_11614581_3 (name_in_polish VARCHAR, seat VARCHAR) |
###question:What seat does Gubernia Warszawska hold?###answer:SELECT seat FROM table_11614581_3 WHERE name_in_polish = "Gubernia warszawska"###context:CREATE TABLE table_11614581_3 (seat VARCHAR, name_in_polish VARCHAR) |
###question:What population (in thousands) is Lublin's seat?###answer:SELECT population, _in_thousands, __1905__ FROM table_11614581_3 WHERE seat = "Lublin"###context:CREATE TABLE table_11614581_3 (population VARCHAR, _in_thousands VARCHAR, __1905__ VARCHAR, seat VARCHAR) |
###question:плоцкая губерния governs an area with what area (in thousand km 2)?###answer:SELECT area, _in_thousands_of_km_2 FROM table_11614581_3 WHERE name_in_russian = "Плоцкая губерния"###context:CREATE TABLE table_11614581_3 (area VARCHAR, _in_thousands_of_km_2 VARCHAR, name_in_russian VARCHAR) |
###question:What is the up/down at the venue that hosted 7 games?###answer:SELECT up_down FROM table_1161065_28 WHERE hosted = 7###context:CREATE TABLE table_1161065_28 (up_down VARCHAR, hosted VARCHAR) |
###question:What was the attendance last year at Manuka Oval?###answer:SELECT last_year FROM table_1161065_28 WHERE venue = "Manuka Oval"###context:CREATE TABLE table_1161065_28 (last_year VARCHAR, venue VARCHAR) |
###question:What was the lowest attendance figure at Football Park?###answer:SELECT lowest FROM table_1161065_28 WHERE venue = "Football Park"###context:CREATE TABLE table_1161065_28 (lowest VARCHAR, venue VARCHAR) |
###question:What is the total of port adelaide###answer:SELECT MAX(total) FROM table_1161065_27 WHERE team = "Port Adelaide"###context:CREATE TABLE table_1161065_27 (total INTEGER, team VARCHAR) |
###question:what's the maximum purse( $ ) with score value of 204 (-9)###answer:SELECT MAX(purse__) AS $__ FROM table_11621915_1 WHERE score = "204 (-9)"###context:CREATE TABLE table_11621915_1 (purse__ INTEGER, score VARCHAR) |
###question:what's the winner with purse( $ ) value of bigger than 964017.2297960471 and date value of may 28###answer:SELECT winner FROM table_11621915_1 WHERE purse__$__ > 964017.2297960471 AND date = "May 28"###context:CREATE TABLE table_11621915_1 (winner VARCHAR, purse__$__ VARCHAR, date VARCHAR) |
###question:what's the winner with tournament value of kroger senior classic###answer:SELECT winner FROM table_11621915_1 WHERE tournament = "Kroger Senior Classic"###context:CREATE TABLE table_11621915_1 (winner VARCHAR, tournament VARCHAR) |
###question:what's the date with tournament value of ford senior players championship###answer:SELECT date FROM table_11621915_1 WHERE tournament = "Ford Senior Players Championship"###context:CREATE TABLE table_11621915_1 (date VARCHAR, tournament VARCHAR) |
###question:what's the location with tournament value of quicksilver classic###answer:SELECT location FROM table_11621915_1 WHERE tournament = "Quicksilver Classic"###context:CREATE TABLE table_11621915_1 (location VARCHAR, tournament VARCHAR) |
###question:what's the score with date oct 1###answer:SELECT score FROM table_11621915_1 WHERE date = "Oct 1"###context:CREATE TABLE table_11621915_1 (score VARCHAR, date VARCHAR) |
###question:What was the score for the Toshiba Senior Classic?###answer:SELECT score FROM table_11621799_1 WHERE tournament = "Toshiba Senior Classic"###context:CREATE TABLE table_11621799_1 (score VARCHAR, tournament VARCHAR) |
###question:Who was the winner when the score was 281 (-6)?###answer:SELECT winner FROM table_11621799_1 WHERE score = "281 (-6)"###context:CREATE TABLE table_11621799_1 (winner VARCHAR, score VARCHAR) |
###question:How many scores were at the Northville Long Island Classic?###answer:SELECT COUNT(score) FROM table_11621873_1 WHERE tournament = "Northville Long Island Classic"###context:CREATE TABLE table_11621873_1 (score VARCHAR, tournament VARCHAR) |
###question: what's the tournament where winner is raymond floyd (1)###answer:SELECT tournament FROM table_11622255_1 WHERE winner = "Raymond Floyd (1)"###context:CREATE TABLE table_11622255_1 (tournament VARCHAR, winner VARCHAR) |
###question:what is the total number of purse( $ ) where winner is jimmy powell (2)###answer:SELECT COUNT(purse__) AS $__ FROM table_11622255_1 WHERE winner = "Jimmy Powell (2)"###context:CREATE TABLE table_11622255_1 (purse__ VARCHAR, winner VARCHAR) |
###question: what's the date where location is illinois###answer:SELECT date FROM table_11622255_1 WHERE location = "Illinois"###context:CREATE TABLE table_11622255_1 (date VARCHAR, location VARCHAR) |
###question:what is the minimum purse( $ ) where tournament is ko olina senior invitational###answer:SELECT MIN(purse__) AS $__ FROM table_11622255_1 WHERE tournament = "Ko Olina Senior Invitational"###context:CREATE TABLE table_11622255_1 (purse__ INTEGER, tournament VARCHAR) |
###question: what's the location where tournament is raley's senior gold rush###answer:SELECT location FROM table_11622255_1 WHERE tournament = "Raley's Senior Gold Rush"###context:CREATE TABLE table_11622255_1 (location VARCHAR, tournament VARCHAR) |
###question:what is the maximum 1st prize( $ ) where score is 193 (-17)###answer:SELECT MAX(1 AS st_prize__) AS $__ FROM table_11622255_1 WHERE score = "193 (-17)"###context:CREATE TABLE table_11622255_1 (score VARCHAR) |
###question:How much was the prize money for the 275000 purse?###answer:SELECT 1 AS st_prize__$__ FROM table_11622496_1 WHERE purse__$__ = 275000###context:CREATE TABLE table_11622496_1 (purse__$__ VARCHAR) |
###question:What is the prize money for Virginia?###answer:SELECT 1 AS st_prize__$__ FROM table_11622496_1 WHERE location = "Virginia"###context:CREATE TABLE table_11622496_1 (location VARCHAR) |
###question:How many tournaments ended with a score of 204 (-12)?###answer:SELECT COUNT(tournament) FROM table_11622562_1 WHERE score = "204 (-12)"###context:CREATE TABLE table_11622562_1 (tournament VARCHAR, score VARCHAR) |
###question:What's the winner of the Painewebber Invitational tournament?###answer:SELECT winner FROM table_11622562_1 WHERE tournament = "PaineWebber Invitational"###context:CREATE TABLE table_11622562_1 (winner VARCHAR, tournament VARCHAR) |
###question:Where was the GTE Suncoast Classic tournament held?###answer:SELECT location FROM table_11622562_1 WHERE tournament = "GTE Suncoast Classic"###context:CREATE TABLE table_11622562_1 (location VARCHAR, tournament VARCHAR) |
###question:What was the minimal amount ($) of the 1st prize in the tournaments in New Mexico?###answer:SELECT MIN(1 AS st_prize__) AS $__ FROM table_11622562_1 WHERE location = "New Mexico"###context:CREATE TABLE table_11622562_1 (location VARCHAR) |
###question:What are all the dates with a score of 203 (-13)?###answer:SELECT date FROM table_11622829_1 WHERE score = "203 (-13)"###context:CREATE TABLE table_11622829_1 (date VARCHAR, score VARCHAR) |
###question:For which tournaments was the score 135 (-7)?###answer:SELECT tournament FROM table_11622829_1 WHERE score = "135 (-7)"###context:CREATE TABLE table_11622829_1 (tournament VARCHAR, score VARCHAR) |
###question:How many locations logged a score of 206 (-7)?###answer:SELECT COUNT(location) FROM table_11622840_1 WHERE score = "206 (-7)"###context:CREATE TABLE table_11622840_1 (location VARCHAR, score VARCHAR) |
###question:How many tournaments recorded a score of 206 (-7)?###answer:SELECT COUNT(tournament) FROM table_11622840_1 WHERE score = "206 (-7)"###context:CREATE TABLE table_11622840_1 (tournament VARCHAR, score VARCHAR) |
###question:Name all the tournaments that took place in Rhode Island.###answer:SELECT tournament FROM table_11622840_1 WHERE location = "Rhode Island"###context:CREATE TABLE table_11622840_1 (tournament VARCHAR, location VARCHAR) |
###question:What is the state that hosted a tournament with the score of 208 (-8)?###answer:SELECT location FROM table_11622840_1 WHERE score = "208 (-8)"###context:CREATE TABLE table_11622840_1 (location VARCHAR, score VARCHAR) |
###question:Where was the Fairfield Barnett classic tournament held?###answer:SELECT location FROM table_11622771_1 WHERE tournament = "Fairfield Barnett Classic"###context:CREATE TABLE table_11622771_1 (location VARCHAR, tournament VARCHAR) |
###question:How many purses were there for the mar 16?###answer:SELECT COUNT(purse__) AS $__ FROM table_11622771_1 WHERE date = "Mar 16"###context:CREATE TABLE table_11622771_1 (purse__ VARCHAR, date VARCHAR) |
###question:When did the series number 23 air?###answer:SELECT original_air_date FROM table_11630008_3 WHERE series_no = 23###context:CREATE TABLE table_11630008_3 (original_air_date VARCHAR, series_no VARCHAR) |
###question:What was the airdate of 21 series number?###answer:SELECT original_air_date FROM table_11630008_3 WHERE series_no = 21###context:CREATE TABLE table_11630008_3 (original_air_date VARCHAR, series_no VARCHAR) |
###question:Who won the Suntree Seniors Classic?###answer:SELECT winner FROM table_11622924_1 WHERE tournament = "Suntree Seniors Classic"###context:CREATE TABLE table_11622924_1 (winner VARCHAR, tournament VARCHAR) |
###question:How much was the prize in the tournament where the winning score was 289 (9)?###answer:SELECT purse__$__ FROM table_11622924_1 WHERE score = "289 (9)"###context:CREATE TABLE table_11622924_1 (purse__$__ VARCHAR, score VARCHAR) |
###question:When was the tournament that was won with a score of 204 (-6) played?###answer:SELECT date FROM table_11622924_1 WHERE score = "204 (-6)"###context:CREATE TABLE table_11622924_1 (date VARCHAR, score VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.