combined_text stringlengths 106 1.05k |
|---|
###question:What was the Clean and Jerk weight for the year that had a Snatch result of 190kg?###answer:SELECT clean_and_jerk FROM table_name_13 WHERE snatch = "190kg"###context:CREATE TABLE table_name_13 (clean_and_jerk VARCHAR, snatch VARCHAR) |
###question:What was the highest place result in 2010 with a Clean and Jerk weight of 224kg?###answer:SELECT MAX(place) FROM table_name_92 WHERE year = 2010 AND clean_and_jerk = "224kg"###context:CREATE TABLE table_name_92 (place INTEGER, year VARCHAR, clean_and_jerk VARCHAR) |
###question:Which competition led to a total weight of 428kg?###answer:SELECT competition FROM table_name_77 WHERE total = "428kg"###context:CREATE TABLE table_name_77 (competition VARCHAR, total VARCHAR) |
###question:In what lane did the swimmer get a time of 1:59.42?###answer:SELECT SUM(lane) FROM table_name_97 WHERE time = "1:59.42"###context:CREATE TABLE table_name_97 (lane INTEGER, time VARCHAR) |
###question:Name the Gold which has a Nation of australia, and a Bronze smaller than 1?###answer:SELECT MIN(gold) FROM table_name_64 WHERE nation = "australia" AND bronze < 1###context:CREATE TABLE table_name_64 (gold INTEGER, nation VARCHAR, bronze VARCHAR) |
###question:Which the highest Bronze of czech republic with a Total smaller than 4?###answer:SELECT MAX(bronze) FROM table_name_63 WHERE nation = "czech republic" AND total < 4###context:CREATE TABLE table_name_63 (bronze INTEGER, nation VARCHAR, total VARCHAR) |
###question:Name the highest Bronze which has a Gold larger than 2 and a Rank of total?###answer:SELECT MAX(bronze) FROM table_name_70 WHERE gold > 2 AND rank = "total"###context:CREATE TABLE table_name_70 (bronze INTEGER, gold VARCHAR, rank VARCHAR) |
###question:Count the average Gold which has a Nation of sweden, and a Silver larger than 1?###answer:SELECT AVG(gold) FROM table_name_47 WHERE nation = "sweden" AND silver > 1###context:CREATE TABLE table_name_47 (gold INTEGER, nation VARCHAR, silver VARCHAR) |
###question:Who was the opponent on June 3?###answer:SELECT opponent FROM table_name_50 WHERE date = "june 3"###context:CREATE TABLE table_name_50 (opponent VARCHAR, date VARCHAR) |
###question:Which game had a 9-7 record?###answer:SELECT game FROM table_name_28 WHERE record = "9-7"###context:CREATE TABLE table_name_28 (game VARCHAR, record VARCHAR) |
###question:What is the highest game with a 3-2 record?###answer:SELECT MAX(game) FROM table_name_79 WHERE record = "3-2"###context:CREATE TABLE table_name_79 (game INTEGER, record VARCHAR) |
###question:Who is the opponent of the game with a game number larger than 5 on June 22?###answer:SELECT opponent FROM table_name_85 WHERE game > 5 AND date = "june 22"###context:CREATE TABLE table_name_85 (opponent VARCHAR, game VARCHAR, date VARCHAR) |
###question:What is the score of the game on June 25 at the mohegan sun arena?###answer:SELECT score FROM table_name_85 WHERE location = "mohegan sun arena" AND date = "june 25"###context:CREATE TABLE table_name_85 (score VARCHAR, location VARCHAR, date VARCHAR) |
###question:Who is the opponent at america west arena?###answer:SELECT opponent FROM table_name_24 WHERE location = "america west arena"###context:CREATE TABLE table_name_24 (opponent VARCHAR, location VARCHAR) |
###question:Who are the rowers ranked greater than 3 from Finland?###answer:SELECT rowers FROM table_name_42 WHERE rank > 3 AND country = "finland"###context:CREATE TABLE table_name_42 (rowers VARCHAR, rank VARCHAR, country VARCHAR) |
###question:What country had a 6:55.23 time?###answer:SELECT country FROM table_name_72 WHERE time = "6:55.23"###context:CREATE TABLE table_name_72 (country VARCHAR, time VARCHAR) |
###question:What is the average number of wins for teams with 14 losses and against over 2200?###answer:SELECT AVG(wins) FROM table_name_41 WHERE losses = 14 AND against > 2200###context:CREATE TABLE table_name_41 (wins INTEGER, losses VARCHAR, against VARCHAR) |
###question:What is the sum of wins for teams with against under 1067?###answer:SELECT SUM(wins) FROM table_name_16 WHERE against < 1067###context:CREATE TABLE table_name_16 (wins INTEGER, against INTEGER) |
###question:What is the sum of Against values for teams with 5 losses and 0 draws?###answer:SELECT SUM(against) FROM table_name_8 WHERE losses = 5 AND draws < 0###context:CREATE TABLE table_name_8 (against INTEGER, losses VARCHAR, draws VARCHAR) |
###question:What is the total number of byes for teams with against of 2139 and more than 0 draws?###answer:SELECT COUNT(byes) FROM table_name_70 WHERE against = 2139 AND draws > 0###context:CREATE TABLE table_name_70 (byes VARCHAR, against VARCHAR, draws VARCHAR) |
###question:what is the highest attendance when the week is smaller than 1?###answer:SELECT MAX(attendance) FROM table_name_30 WHERE week < 1###context:CREATE TABLE table_name_30 (attendance INTEGER, week INTEGER) |
###question:what is the week when the result is w 14-13 and the attendance is higher than 53,295?###answer:SELECT AVG(week) FROM table_name_51 WHERE result = "w 14-13" AND attendance > 53 OFFSET 295###context:CREATE TABLE table_name_51 (week INTEGER, result VARCHAR, attendance VARCHAR) |
###question:What college did Richard Ticzon attend?###answer:SELECT college FROM table_name_82 WHERE player = "richard ticzon"###context:CREATE TABLE table_name_82 (college VARCHAR, player VARCHAR) |
###question:Which player went to college at Up-Diliman and plays on PBA team of the Alaska Milkmen?###answer:SELECT player FROM table_name_97 WHERE pba_team = "alaska milkmen" AND college = "up-diliman"###context:CREATE TABLE table_name_97 (player VARCHAR, pba_team VARCHAR, college VARCHAR) |
###question:How many silver medals when the total was 2 and less than 1 bronze?###answer:SELECT SUM(silver) FROM table_name_37 WHERE bronze < 1 AND total = 2###context:CREATE TABLE table_name_37 (silver INTEGER, bronze VARCHAR, total VARCHAR) |
###question:What's the total when the bronze was more than 1, silver was 3, and gold was less than 5?###answer:SELECT SUM(total) FROM table_name_90 WHERE bronze > 1 AND silver = 3 AND gold < 5###context:CREATE TABLE table_name_90 (total INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR) |
###question:What's the gold medal count for Total Nation with a bronze count more than 0 and a total less than 54?###answer:SELECT MAX(gold) FROM table_name_13 WHERE bronze > 0 AND nation = "total" AND "total" < 54###context:CREATE TABLE table_name_13 (gold INTEGER, bronze VARCHAR, nation VARCHAR) |
###question:what is the borough or A[›] Census area when the Name A[›] is jerome lake dam?###answer:SELECT borough_or_a[›_] AS _census_area FROM table_name_81 WHERE name_a[›_] = "jerome lake dam"###context:CREATE TABLE table_name_81 (borough_or_a VARCHAR, ›_ VARCHAR, name_a VARCHAR) |
###question:What is the score for the player who won $3,600?###answer:SELECT score FROM table_name_40 WHERE money___$__ = "3,600"###context:CREATE TABLE table_name_40 (score VARCHAR, money___$__ VARCHAR) |
###question:Name the most total with average less than 36.5 and rank by average of 14###answer:SELECT MAX(total) FROM table_name_39 WHERE average < 36.5 AND rank_by_average = 14###context:CREATE TABLE table_name_39 (total INTEGER, average VARCHAR, rank_by_average VARCHAR) |
###question:Name the sum of rank by average with competition finish more than 8 and average larger than 30###answer:SELECT SUM(rank_by_average) FROM table_name_29 WHERE competition_finish > 8 AND average > 30###context:CREATE TABLE table_name_29 (rank_by_average INTEGER, competition_finish VARCHAR, average VARCHAR) |
###question:Name the total number of competition finish with total of 90 and rank by average more than 5###answer:SELECT COUNT(competition_finish) FROM table_name_43 WHERE total = 90 AND rank_by_average > 5###context:CREATE TABLE table_name_43 (competition_finish VARCHAR, total VARCHAR, rank_by_average VARCHAR) |
###question:Name the greatest competition finish with average more than 32.9 and number of dances more than 16###answer:SELECT MAX(competition_finish) FROM table_name_4 WHERE average > 32.9 AND number_of_dances > 16###context:CREATE TABLE table_name_4 (competition_finish INTEGER, average VARCHAR, number_of_dances VARCH... |
###question:Name the least rank by average for number of dances less than 9 and competition finish of 5###answer:SELECT MIN(rank_by_average) FROM table_name_62 WHERE competition_finish = 5 AND number_of_dances < 9###context:CREATE TABLE table_name_62 (rank_by_average INTEGER, competition_finish VARCHAR, number_of_dance... |
###question:What was the record on june 4?###answer:SELECT record FROM table_name_83 WHERE date = "june 4"###context:CREATE TABLE table_name_83 (record VARCHAR, date VARCHAR) |
###question:What was the score of the Iowa v. Minnesota game?###answer:SELECT score FROM table_name_59 WHERE opponent = "minnesota"###context:CREATE TABLE table_name_59 (score VARCHAR, opponent VARCHAR) |
###question:Who was Milwaukee's opponent?###answer:SELECT opponent FROM table_name_98 WHERE city = "milwaukee"###context:CREATE TABLE table_name_98 (opponent VARCHAR, city VARCHAR) |
###question:What was the result of the game versus Tulsa?###answer:SELECT result FROM table_name_80 WHERE opponent = "tulsa"###context:CREATE TABLE table_name_80 (result VARCHAR, opponent VARCHAR) |
###question:What is the most points for a vehicle with a lola thl1, chassis later than 1986?###answer:SELECT MAX(points) FROM table_name_54 WHERE chassis = "lola thl1" AND year > 1986###context:CREATE TABLE table_name_54 (points INTEGER, chassis VARCHAR, year VARCHAR) |
###question:What is the latest year with less than 2 points, a Mclaren m28 chassis and an Entrant of löwenbräu team mclaren?###answer:SELECT MAX(year) FROM table_name_84 WHERE points < 2 AND chassis = "mclaren m28" AND entrant = "löwenbräu team mclaren"###context:CREATE TABLE table_name_84 (year INTEGER, entrant VARCHA... |
###question:What is the latest year for Entrant of equipe talbot gitanes with less than 1 point?###answer:SELECT MAX(year) FROM table_name_68 WHERE entrant = "equipe talbot gitanes" AND points < 1###context:CREATE TABLE table_name_68 (year INTEGER, entrant VARCHAR, points VARCHAR) |
###question:When did the reactor that has a rated power of 945 MW and ended construction on May 10, 1978 close?###answer:SELECT close_of_reactor FROM table_name_13 WHERE rated_power = "945 mw" AND finish_construction = "may 10, 1978"###context:CREATE TABLE table_name_13 (close_of_reactor VARCHAR, rated_power VARCHAR, f... |
###question:What is the rated power for the reactor that ended construction on May 10, 1978?###answer:SELECT rated_power FROM table_name_52 WHERE finish_construction = "may 10, 1978"###context:CREATE TABLE table_name_52 (rated_power VARCHAR, finish_construction VARCHAR) |
###question:Who was the parter against Marin čilić lovro Zovko?###answer:SELECT partnering FROM table_name_41 WHERE opponents = "marin čilić lovro zovko"###context:CREATE TABLE table_name_41 (partnering VARCHAR, opponents VARCHAR) |
###question:What was the score on 24 February 2013?###answer:SELECT score FROM table_name_32 WHERE date = "24 february 2013"###context:CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR) |
###question:Who was the opponent on clay surface when partnered with Horacio Zeballos?###answer:SELECT opponents FROM table_name_23 WHERE surface = "clay" AND partnering = "horacio zeballos"###context:CREATE TABLE table_name_23 (opponents VARCHAR, surface VARCHAR, partnering VARCHAR) |
###question:Which course had a rest day for the Race Leader?###answer:SELECT course FROM table_name_1 WHERE race_leader = "rest day"###context:CREATE TABLE table_name_1 (course VARCHAR, race_leader VARCHAR) |
###question:Name the attendance with angels opponent for july 9###answer:SELECT attendance FROM table_name_32 WHERE opponent = "angels" AND date = "july 9"###context:CREATE TABLE table_name_32 (attendance VARCHAR, opponent VARCHAR, date VARCHAR) |
###question:Name the most attendance whent he record is 45-57###answer:SELECT MAX(attendance) FROM table_name_2 WHERE record = "45-57"###context:CREATE TABLE table_name_2 (attendance INTEGER, record VARCHAR) |
###question:Which is the opponent when the record was 43-56?###answer:SELECT opponent FROM table_name_12 WHERE record = "43-56"###context:CREATE TABLE table_name_12 (opponent VARCHAR, record VARCHAR) |
###question:What is the highest number of cuts made in a tournament with 0 wins and 0 top 5 placings?###answer:SELECT MAX(cuts_made) FROM table_name_20 WHERE top_5 = 0 AND wins < 0###context:CREATE TABLE table_name_20 (cuts_made INTEGER, top_5 VARCHAR, wins VARCHAR) |
###question:What is the number of Inaug., when the Type is Public, when the Name is Mei Lam Estate, and when the No Units is larger than 4,156?###answer:SELECT COUNT(inaug) FROM table_name_96 WHERE type = "public" AND name = "mei lam estate" AND no_units > 4 OFFSET 156###context:CREATE TABLE table_name_96 (inaug VARCHA... |
###question:What is the average No Units, when the Name is Fung Shing Court, and when the No Blocks is fewer than 3?###answer:SELECT AVG(no_units) FROM table_name_99 WHERE name = "fung shing court" AND no_blocks < 3###context:CREATE TABLE table_name_99 (no_units INTEGER, name VARCHAR, no_blocks VARCHAR) |
###question:What rank is the transfer for the milan move in 2000?###answer:SELECT AVG(rank) FROM table_name_4 WHERE moving_to = "milan" AND year = 2000###context:CREATE TABLE table_name_4 (rank INTEGER, moving_to VARCHAR, year VARCHAR) |
###question:When was the earliest year that kakha kaladze moved to milan with a rank above 9?###answer:SELECT MIN(year) FROM table_name_37 WHERE moving_to = "milan" AND name = "kakha kaladze" AND rank < 9###context:CREATE TABLE table_name_37 (year INTEGER, rank VARCHAR, moving_to VARCHAR, name VARCHAR) |
###question:Where did the player move from that went to stuttgart?###answer:SELECT moving_from FROM table_name_17 WHERE moving_to = "stuttgart"###context:CREATE TABLE table_name_17 (moving_from VARCHAR, moving_to VARCHAR) |
###question:Who was moved to barcelona?###answer:SELECT name FROM table_name_61 WHERE moving_to = "barcelona"###context:CREATE TABLE table_name_61 (name VARCHAR, moving_to VARCHAR) |
###question:How many totals have 0 as Gold, a bronze greater than 1, and a silver less than 1?###answer:SELECT COUNT(total) FROM table_name_94 WHERE gold = 0 AND bronze > 1 AND silver < 1###context:CREATE TABLE table_name_94 (total VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR) |
###question:How many totals have brazil as the nation, and a bronze less than 2?###answer:SELECT SUM(total) FROM table_name_89 WHERE nation = "brazil" AND bronze < 2###context:CREATE TABLE table_name_89 (total INTEGER, nation VARCHAR, bronze VARCHAR) |
###question:How many silvers have 2 as gold, and a bronze less than 2?###answer:SELECT SUM(silver) FROM table_name_69 WHERE gold = 2 AND bronze < 2###context:CREATE TABLE table_name_69 (silver INTEGER, gold VARCHAR, bronze VARCHAR) |
###question:Which nation has a gold less than 2 and a bronze less than 5?###answer:SELECT nation FROM table_name_31 WHERE gold < 2 AND bronze < 5###context:CREATE TABLE table_name_31 (nation VARCHAR, gold VARCHAR, bronze VARCHAR) |
###question:What is the least silver that has mexico as a nation and a gold less than 0?###answer:SELECT MIN(silver) FROM table_name_69 WHERE nation = "mexico" AND gold < 0###context:CREATE TABLE table_name_69 (silver INTEGER, nation VARCHAR, gold VARCHAR) |
###question:Where did Dennis Byrd go to college?###answer:SELECT college FROM table_name_29 WHERE player = "dennis byrd"###context:CREATE TABLE table_name_29 (college VARCHAR, player VARCHAR) |
###question:Which Visa 3 has gui finkler as Visa 1?###answer:SELECT visa_3 FROM table_name_83 WHERE visa_1 = "gui finkler"###context:CREATE TABLE table_name_83 (visa_3 VARCHAR, visa_1 VARCHAR) |
###question:Which Visa 3 has a Visa 4 of youssouf hersi?###answer:SELECT visa_3 FROM table_name_70 WHERE visa_4 = "youssouf hersi"###context:CREATE TABLE table_name_70 (visa_3 VARCHAR, visa_4 VARCHAR) |
###question:Which Visa 5 has a Visa 1 of emile heskey?###answer:SELECT visa_5 FROM table_name_4 WHERE visa_1 = "emile heskey"###context:CREATE TABLE table_name_4 (visa_5 VARCHAR, visa_1 VARCHAR) |
###question:Which Visa 3 has a Visa 1 of michael mcglinchey?###answer:SELECT visa_3 FROM table_name_7 WHERE visa_1 = "michael mcglinchey"###context:CREATE TABLE table_name_7 (visa_3 VARCHAR, visa_1 VARCHAR) |
###question:Which Visa 4 has besart berisha as Visa 1?###answer:SELECT visa_4 FROM table_name_42 WHERE visa_1 = "besart berisha"###context:CREATE TABLE table_name_42 (visa_4 VARCHAR, visa_1 VARCHAR) |
###question:What is the lowest tier for a position smaller than 7 for a Turkish Cup group stage?###answer:SELECT MIN(tier) FROM table_name_99 WHERE turkish_cup = "group stage" AND pos < 7###context:CREATE TABLE table_name_99 (tier INTEGER, turkish_cup VARCHAR, pos VARCHAR) |
###question:How many rounds have a Grand Prix of german gp?###answer:SELECT SUM(round) FROM table_name_26 WHERE grand_prix = "german gp"###context:CREATE TABLE table_name_26 (round INTEGER, grand_prix VARCHAR) |
###question:What is the largest round with a Race Title of korean grand prix?###answer:SELECT MAX(round) FROM table_name_58 WHERE race_title = "korean grand prix"###context:CREATE TABLE table_name_58 (round INTEGER, race_title VARCHAR) |
###question:Which circuit has a Race Title of japanese grand prix?###answer:SELECT circuit FROM table_name_22 WHERE race_title = "japanese grand prix"###context:CREATE TABLE table_name_22 (circuit VARCHAR, race_title VARCHAR) |
###question:What is the smallest round with a Grand Prix of indian gp?###answer:SELECT MIN(round) FROM table_name_74 WHERE grand_prix = "indian gp"###context:CREATE TABLE table_name_74 (round INTEGER, grand_prix VARCHAR) |
###question:Which date has a Race Title of dhl turkish grand prix?###answer:SELECT date FROM table_name_40 WHERE race_title = "dhl turkish grand prix"###context:CREATE TABLE table_name_40 (date VARCHAR, race_title VARCHAR) |
###question:Name the PBA team for paolo mendoza###answer:SELECT pba_team FROM table_name_81 WHERE player = "paolo mendoza"###context:CREATE TABLE table_name_81 (pba_team VARCHAR, player VARCHAR) |
###question:What did billy andrade to par?###answer:SELECT to_par FROM table_name_5 WHERE player = "billy andrade"###context:CREATE TABLE table_name_5 (to_par VARCHAR, player VARCHAR) |
###question:Name the date for w 31-28###answer:SELECT date FROM table_name_60 WHERE result = "w 31-28"###context:CREATE TABLE table_name_60 (date VARCHAR, result VARCHAR) |
###question:Name the most week for record of 1-2 and attendance more than 61,602###answer:SELECT MAX(week) FROM table_name_60 WHERE record = "1-2" AND attendance > 61 OFFSET 602###context:CREATE TABLE table_name_60 (week INTEGER, record VARCHAR, attendance VARCHAR) |
###question:What was the final score when the result was 4-0?###answer:SELECT score FROM table_name_1 WHERE result = "4-0"###context:CREATE TABLE table_name_1 (score VARCHAR, result VARCHAR) |
###question:Where was there a result of 4-5 and a score of 1-1?###answer:SELECT venue FROM table_name_98 WHERE result = "4-5" AND score = "1-1"###context:CREATE TABLE table_name_98 (venue VARCHAR, result VARCHAR, score VARCHAR) |
###question:With a time of 53.33, who ranked the highest?###answer:SELECT MAX(rank) FROM table_name_89 WHERE time = 53.33###context:CREATE TABLE table_name_89 (rank INTEGER, time VARCHAR) |
###question:What was Great Britain's total time?###answer:SELECT COUNT(time) FROM table_name_4 WHERE nationality = "great britain"###context:CREATE TABLE table_name_4 (time VARCHAR, nationality VARCHAR) |
###question:Which lane ranked less than 4 for the Netherlands?###answer:SELECT lane FROM table_name_4 WHERE rank < 4 AND nationality = "netherlands"###context:CREATE TABLE table_name_4 (lane VARCHAR, rank VARCHAR, nationality VARCHAR) |
###question:What was the winning score in the Alfred Dunhill links championship?###answer:SELECT winning_score FROM table_name_35 WHERE tournament = "alfred dunhill links championship"###context:CREATE TABLE table_name_35 (winning_score VARCHAR, tournament VARCHAR) |
###question:What date did Ian poulter become runner up?###answer:SELECT date FROM table_name_76 WHERE runner_s__up = "ian poulter"###context:CREATE TABLE table_name_76 (date VARCHAR, runner_s__up VARCHAR) |
###question:What was the film title used in nomination for Panny Z Wilka?###answer:SELECT film_title_used_in_nomination FROM table_name_83 WHERE original_name = "panny z wilka"###context:CREATE TABLE table_name_83 (film_title_used_in_nomination VARCHAR, original_name VARCHAR) |
###question:What is the language of the film originally titled רגעים?###answer:SELECT language FROM table_name_39 WHERE original_name = "רגעים"###context:CREATE TABLE table_name_39 (language VARCHAR, original_name VARCHAR) |
###question:Name the points for with drawn of 0 and points of 88###answer:SELECT points_for FROM table_name_33 WHERE drawn = "0" AND points = "88"###context:CREATE TABLE table_name_33 (points_for VARCHAR, drawn VARCHAR, points VARCHAR) |
###question:Name the played with try bonus of 6 and drawn of 0###answer:SELECT played FROM table_name_76 WHERE try_bonus = "6" AND drawn = "0"###context:CREATE TABLE table_name_76 (played VARCHAR, try_bonus VARCHAR, drawn VARCHAR) |
###question:Name the point with points for of 255###answer:SELECT points FROM table_name_67 WHERE points_for = "255"###context:CREATE TABLE table_name_67 (points VARCHAR, points_for VARCHAR) |
###question:Name the played with losing bonus of 2 and points for of 706###answer:SELECT played FROM table_name_99 WHERE losing_bonus = "2" AND points_for = "706"###context:CREATE TABLE table_name_99 (played VARCHAR, losing_bonus VARCHAR, points_for VARCHAR) |
###question:Name the drawn with lost of 3 and points of 88###answer:SELECT drawn FROM table_name_86 WHERE lost = "3" AND points = "88"###context:CREATE TABLE table_name_86 (drawn VARCHAR, lost VARCHAR, points VARCHAR) |
###question:Name the year when the publisher was argonaut games sierra entertainment###answer:SELECT year FROM table_name_50 WHERE publisher = "argonaut games sierra entertainment"###context:CREATE TABLE table_name_50 (year VARCHAR, publisher VARCHAR) |
###question:Name the plaform for year more than 2006 and developer of 3g studios###answer:SELECT platform FROM table_name_33 WHERE year > 2006 AND developer = "3g studios"###context:CREATE TABLE table_name_33 (platform VARCHAR, year VARCHAR, developer VARCHAR) |
###question:Name the title for 2005###answer:SELECT title FROM table_name_2 WHERE year = 2005###context:CREATE TABLE table_name_2 (title VARCHAR, year VARCHAR) |
###question:What years are listed for the Tahunanui school with an authority of state?###answer:SELECT years FROM table_name_31 WHERE authority = "state" AND name = "tahunanui school"###context:CREATE TABLE table_name_31 (years VARCHAR, authority VARCHAR, name VARCHAR) |
###question:Who is the october playmate with February playmate Cristy Thom?###answer:SELECT october FROM table_name_51 WHERE february = "cristy thom"###context:CREATE TABLE table_name_51 (october VARCHAR, february VARCHAR) |
###question:Who is the January playmate with a September playmate Nikki Schieler?###answer:SELECT january FROM table_name_15 WHERE september = "nikki schieler"###context:CREATE TABLE table_name_15 (january VARCHAR, september VARCHAR) |
###question:Who is the June playmate with the November playmate Lorraine Olivia?###answer:SELECT june FROM table_name_3 WHERE november = "lorraine olivia"###context:CREATE TABLE table_name_3 (june VARCHAR, november VARCHAR) |
###question:Who is the January playmate with a March playmate Alexandria Karlsen?###answer:SELECT january FROM table_name_59 WHERE march = "alexandria karlsen"###context:CREATE TABLE table_name_59 (january VARCHAR, march VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.