text
stringlengths 114
1.06k
|
---|
### question: What was the Loss when the opponent was the Rangers and the attendance was greater than 43,211? ### answer: SELECT loss FROM table_name_57 WHERE opponent = "rangers" AND attendance > 43 OFFSET 211 ### context: CREATE TABLE table_name_57 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR) |
### question: What was the 2012 result associated with a 2007 finish of 2R and a 2009 of 1R? ### answer: SELECT 2012 FROM table_name_18 WHERE 2007 = "2r" AND 2009 = "1r" ### context: CREATE TABLE table_name_18 (Id VARCHAR) |
### question: What was the 2009 result associated with a 2012 of 1R and a 2007 of 2R? ### answer: SELECT 2009 FROM table_name_2 WHERE 2012 = "1r" AND 2007 = "2r" ### context: CREATE TABLE table_name_2 (Id VARCHAR) |
### question: What was the 2008 result associated with a 2009 of A and a 2011 of 2R? ### answer: SELECT 2008 FROM table_name_36 WHERE 2009 = "a" AND 2011 = "2r" ### context: CREATE TABLE table_name_36 (Id VARCHAR) |
### question: In which tournament did Pauline Parmentier finish LQ in 2007? ### answer: SELECT tournament FROM table_name_34 WHERE 2007 = "lq" ### context: CREATE TABLE table_name_34 (tournament VARCHAR) |
### question: Name the player name with matches of 51 ### answer: SELECT player_name FROM table_name_23 WHERE matches = "51" ### context: CREATE TABLE table_name_23 (player_name VARCHAR, matches VARCHAR) |
### question: Name the position for brazil 2008 with goals of 0 1 ### answer: SELECT position FROM table_name_6 WHERE country = "brazil" AND period = "2008" AND goals = "0 1" ### context: CREATE TABLE table_name_6 (position VARCHAR, goals VARCHAR, country VARCHAR, period VARCHAR) |
### question: Name the goals with matches of 21 ### answer: SELECT goals FROM table_name_38 WHERE matches = "21" ### context: CREATE TABLE table_name_38 (goals VARCHAR, matches VARCHAR) |
### question: Name the period with matches of 0 0 of portugal ### answer: SELECT period FROM table_name_56 WHERE matches = "0 0" AND country = "portugal" ### context: CREATE TABLE table_name_56 (period VARCHAR, matches VARCHAR, country VARCHAR) |
### question: Name the opponents for round of round 5 ### answer: SELECT opponents FROM table_name_9 WHERE round = "round 5" ### context: CREATE TABLE table_name_9 (opponents VARCHAR, round VARCHAR) |
### question: Name the attendance for 4 january 2004 ### answer: SELECT attendance FROM table_name_72 WHERE date = "4 january 2004" ### context: CREATE TABLE table_name_72 (attendance VARCHAR, date VARCHAR) |
### question: Name the most attendance for 25 january 2004 ### answer: SELECT MAX(attendance) FROM table_name_64 WHERE date = "25 january 2004" ### context: CREATE TABLE table_name_64 (attendance INTEGER, date VARCHAR) |
### question: What is the average Attendance for the final round? ### answer: SELECT AVG(attendance) FROM table_name_54 WHERE round = "final" ### context: CREATE TABLE table_name_54 (attendance INTEGER, round VARCHAR) |
### question: What is the smallest number of people to attend a game with an H/A of h and the opponent was Roma? ### answer: SELECT MIN(attendance) FROM table_name_67 WHERE h___a = "h" AND opponents = "roma" ### context: CREATE TABLE table_name_67 (attendance INTEGER, h___a VARCHAR, opponents VARCHAR) |
### question: Which game does the quentyn martell have? ### answer: SELECT game FROM table_name_54 WHERE pov_character = "quentyn martell" ### context: CREATE TABLE table_name_54 (game VARCHAR, pov_character VARCHAR) |
### question: Which storm has a clash of 3 and a dance of 4? ### answer: SELECT storm FROM table_name_58 WHERE dance = "4" AND clash = "3" ### context: CREATE TABLE table_name_58 (storm VARCHAR, dance VARCHAR, clash VARCHAR) |
### question: Name the melbourne with perth, adelaide and auckland of no with sydney of yes ### answer: SELECT melbourne FROM table_name_38 WHERE perth = "no" AND adelaide = "no" AND auckland = "no" AND sydney = "yes" ### context: CREATE TABLE table_name_38 (melbourne VARCHAR, sydney VARCHAR, auckland VARCHAR, perth VARCHAR, adelaide VARCHAR) |
### question: Name the gold coast which has an auckland of no and melbourne of yes ### answer: SELECT gold_coast FROM table_name_88 WHERE auckland = "no" AND melbourne = "yes" ### context: CREATE TABLE table_name_88 (gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR) |
### question: Name the sydney with perth of no, adelaide of no with melbourne of yes and gold coast of yes ### answer: SELECT sydney FROM table_name_53 WHERE perth = "no" AND adelaide = "no" AND melbourne = "yes" AND gold_coast = "yes" ### context: CREATE TABLE table_name_53 (sydney VARCHAR, gold_coast VARCHAR, melbourne VARCHAR, perth VARCHAR, adelaide VARCHAR) |
### question: Name the Adelaide for Sydney of yes and Perth of yes ### answer: SELECT adelaide FROM table_name_6 WHERE sydney = "yes" AND perth = "yes" ### context: CREATE TABLE table_name_6 (adelaide VARCHAR, sydney VARCHAR, perth VARCHAR) |
### question: Name the melbourne for adelaide of no with auckland of yes and gold coast of yes ### answer: SELECT melbourne FROM table_name_49 WHERE adelaide = "no" AND auckland = "yes" AND gold_coast = "no" ### context: CREATE TABLE table_name_49 (melbourne VARCHAR, gold_coast VARCHAR, adelaide VARCHAR, auckland VARCHAR) |
### question: Who is the Prime Minister of Antoine Wehenkel? ### answer: SELECT Prime AS minister FROM table_name_71 WHERE minister = "antoine wehenkel" ### context: CREATE TABLE table_name_71 (Prime VARCHAR, minister VARCHAR) |
### question: What is the least amount of wins earlier than 1964 with more than 7 points? ### answer: SELECT MIN(wins) FROM table_name_49 WHERE year < 1964 AND points > 7 ### context: CREATE TABLE table_name_49 (wins INTEGER, year VARCHAR, points VARCHAR) |
### question: What is the least points for class 125cc with 1 win earlier than 1961? ### answer: SELECT MIN(points) FROM table_name_57 WHERE class = "125cc" AND wins = 1 AND year < 1961 ### context: CREATE TABLE table_name_57 (points INTEGER, year VARCHAR, class VARCHAR, wins VARCHAR) |
### question: What is the number of wins when there are 7 points? ### answer: SELECT wins FROM table_name_6 WHERE points = 7 ### context: CREATE TABLE table_name_6 (wins VARCHAR, points VARCHAR) |
### question: What is the least amount of points when there is 1 win? ### answer: SELECT MIN(points) FROM table_name_95 WHERE wins = 1 ### context: CREATE TABLE table_name_95 (points INTEGER, wins VARCHAR) |
### question: What club has more than 35 goals, more than 7 draws, and 20 losses? ### answer: SELECT club FROM table_name_38 WHERE goals_for > 35 AND draws > 7 AND losses = 20 ### context: CREATE TABLE table_name_38 (club VARCHAR, losses VARCHAR, goals_for VARCHAR, draws VARCHAR) |
### question: How many goals have more than 38 played and more than 9 draws? ### answer: SELECT SUM(goals_for) FROM table_name_5 WHERE draws > 9 AND played > 38 ### context: CREATE TABLE table_name_5 (goals_for INTEGER, draws VARCHAR, played VARCHAR) |
### question: How many losses has more than 59 goals against and more than 17 position? ### answer: SELECT MIN(losses) FROM table_name_32 WHERE goals_against > 59 AND position > 17 ### context: CREATE TABLE table_name_32 (losses INTEGER, goals_against VARCHAR, position VARCHAR) |
### question: On what Date was the Meet of 2007 Pan American Games with a Time of 1:07.78? ### answer: SELECT date FROM table_name_66 WHERE meet = "2007 pan american games" AND time = "1:07.78" ### context: CREATE TABLE table_name_66 (date VARCHAR, meet VARCHAR, time VARCHAR) |
### question: What Nationality's time is 2:07.64? ### answer: SELECT nationality FROM table_name_98 WHERE time = "2:07.64" ### context: CREATE TABLE table_name_98 (nationality VARCHAR, time VARCHAR) |
### question: What Event's Time is 4:01.00? ### answer: SELECT event FROM table_name_4 WHERE time = "4:01.00" ### context: CREATE TABLE table_name_4 (event VARCHAR, time VARCHAR) |
### question: In what Location in the United States the Time 2:25.62? ### answer: SELECT location FROM table_name_87 WHERE nationality = "united states" AND time = "2:25.62" ### context: CREATE TABLE table_name_87 (location VARCHAR, nationality VARCHAR, time VARCHAR) |
### question: Year larger than 1975, and a Record of 13β11 is what playoffs? ### answer: SELECT playoffs FROM table_name_54 WHERE year > 1975 AND record = "13β11" ### context: CREATE TABLE table_name_54 (playoffs VARCHAR, year VARCHAR, record VARCHAR) |
### question: What are the venues prior to 2005 in the World Class category that resulted in a bronze? ### answer: SELECT venue FROM table_name_57 WHERE year < 2005 AND category = "world class" AND result = "bronze" ### context: CREATE TABLE table_name_57 (venue VARCHAR, result VARCHAR, year VARCHAR, category VARCHAR) |
### question: What are the competitions that occurred before 2006 in SVK Nitra? ### answer: SELECT competition FROM table_name_10 WHERE year < 2006 AND venue = "svk nitra" ### context: CREATE TABLE table_name_10 (competition VARCHAR, year VARCHAR, venue VARCHAR) |
### question: What are the categories of events that occurred after 2007 that were World Championships? ### answer: SELECT category FROM table_name_93 WHERE year > 2007 AND competition = "world championships" ### context: CREATE TABLE table_name_93 (category VARCHAR, year VARCHAR, competition VARCHAR) |
### question: What was the result of events held at Nor Elverum, prior to 2010? ### answer: SELECT result FROM table_name_22 WHERE year < 2010 AND venue = "nor elverum" ### context: CREATE TABLE table_name_22 (result VARCHAR, year VARCHAR, venue VARCHAR) |
### question: What was the competition held in 2003? ### answer: SELECT competition FROM table_name_17 WHERE year = 2003 ### context: CREATE TABLE table_name_17 (competition VARCHAR, year VARCHAR) |
### question: What chassis type does a scuderia ferrari with more than 1 point have? ### answer: SELECT chassis FROM table_name_33 WHERE entrant = "scuderia ferrari" AND points > 1 ### context: CREATE TABLE table_name_33 (chassis VARCHAR, entrant VARCHAR, points VARCHAR) |
### question: A ferrari flat-12 engine with more than 1 point has what kind of chassis? ### answer: SELECT chassis FROM table_name_80 WHERE engine = "ferrari flat-12" AND points > 1 ### context: CREATE TABLE table_name_80 (chassis VARCHAR, engine VARCHAR, points VARCHAR) |
### question: What is the average year for a merzario a2 chassis? ### answer: SELECT AVG(year) FROM table_name_91 WHERE chassis = "merzario a2" ### context: CREATE TABLE table_name_91 (year INTEGER, chassis VARCHAR) |
### question: What was the team's record when they played visitor team Chicago Black Hawks on November 24? ### answer: SELECT record FROM table_name_87 WHERE visitor = "chicago black hawks" AND date = "november 24" ### context: CREATE TABLE table_name_87 (record VARCHAR, visitor VARCHAR, date VARCHAR) |
### question: What is the name of the visitor team who played home team Chicago Black Hawks on March 20? ### answer: SELECT visitor FROM table_name_77 WHERE home = "chicago black hawks" AND date = "march 20" ### context: CREATE TABLE table_name_77 (visitor VARCHAR, home VARCHAR, date VARCHAR) |
### question: What was the team's record on November 12? ### answer: SELECT record FROM table_name_38 WHERE date = "november 12" ### context: CREATE TABLE table_name_38 (record VARCHAR, date VARCHAR) |
### question: What champion has 1981 as the year? ### answer: SELECT champion FROM table_name_33 WHERE year = "1981" ### context: CREATE TABLE table_name_33 (champion VARCHAR, year VARCHAR) |
### question: What date final has 1982 as the year? ### answer: SELECT date_final FROM table_name_59 WHERE year = "1982" ### context: CREATE TABLE table_name_59 (date_final VARCHAR, year VARCHAR) |
### question: What prize money has michelob light challenge of champions as the commercial name? ### answer: SELECT prize_money FROM table_name_56 WHERE commercial_name = "michelob light challenge of champions" ### context: CREATE TABLE table_name_56 (prize_money VARCHAR, commercial_name VARCHAR) |
### question: What date final has 1989 as the year? ### answer: SELECT date_final FROM table_name_90 WHERE year = "1989" ### context: CREATE TABLE table_name_90 (date_final VARCHAR, year VARCHAR) |
### question: What score in final has boris becker as the champion? ### answer: SELECT score_in_final FROM table_name_54 WHERE champion = "boris becker" ### context: CREATE TABLE table_name_54 (score_in_final VARCHAR, champion VARCHAR) |
### question: What is the greatest point of an Entrant of connaught engineering alta straight-4 engine before 1957 ### answer: SELECT MAX(points) FROM table_name_9 WHERE engine = "alta straight-4" AND entrant = "connaught engineering" AND year < 1957 ### context: CREATE TABLE table_name_9 (points INTEGER, year VARCHAR, engine VARCHAR, entrant VARCHAR) |
### question: What 1957 engine has a Chassis of connaught type b? ### answer: SELECT engine FROM table_name_71 WHERE chassis = "connaught type b" AND year > 1957 ### context: CREATE TABLE table_name_71 (engine VARCHAR, chassis VARCHAR, year VARCHAR) |
### question: When was the winning score β9 (72-68-64-67=271)? ### answer: SELECT date FROM table_name_89 WHERE winning_score = β9(72 - 68 - 64 - 67 = 271) ### context: CREATE TABLE table_name_89 (date VARCHAR, winning_score VARCHAR) |
### question: What was the margin of victory for the Mississippi Gulf Resort Classic? ### answer: SELECT margin_of_victory FROM table_name_77 WHERE tournament = "mississippi gulf resort classic" ### context: CREATE TABLE table_name_77 (margin_of_victory VARCHAR, tournament VARCHAR) |
### question: What was the margin of victory when Mark Calcavecchia was the runner-up? ### answer: SELECT margin_of_victory FROM table_name_53 WHERE runner_s__up = "mark calcavecchia" ### context: CREATE TABLE table_name_53 (margin_of_victory VARCHAR, runner_s__up VARCHAR) |
### question: What was the date of the Ace Group Classic tournament with a 1 stroke margin of victory? ### answer: SELECT date FROM table_name_24 WHERE margin_of_victory = "1 stroke" AND tournament = "the ace group classic" ### context: CREATE TABLE table_name_24 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) |
### question: What was the margin of victory when the winning score was β9 (72-68-64-67=271)? ### answer: SELECT margin_of_victory FROM table_name_84 WHERE winning_score = β9(72 - 68 - 64 - 67 = 271) ### context: CREATE TABLE table_name_84 (margin_of_victory VARCHAR, winning_score VARCHAR) |
### question: What is the average round for te position? ### answer: SELECT AVG(round) FROM table_name_65 WHERE position = "te" ### context: CREATE TABLE table_name_65 (round INTEGER, position VARCHAR) |
### question: Name the average overall for james davis ### answer: SELECT AVG(overall) FROM table_name_91 WHERE player = "james davis" ### context: CREATE TABLE table_name_91 (overall INTEGER, player VARCHAR) |
### question: Name the most overall for james davis and round more than 5 ### answer: SELECT MAX(overall) FROM table_name_89 WHERE player = "james davis" AND round > 5 ### context: CREATE TABLE table_name_89 (overall INTEGER, player VARCHAR, round VARCHAR) |
### question: Name the total number of overall for villanova and round less than 2 ### answer: SELECT COUNT(overall) FROM table_name_20 WHERE college = "villanova" AND round < 2 ### context: CREATE TABLE table_name_20 (overall VARCHAR, college VARCHAR, round VARCHAR) |
### question: Which state is Mount Chiginagak located in? ### answer: SELECT state FROM table_name_8 WHERE mountain_peak = "mount chiginagak" ### context: CREATE TABLE table_name_8 (state VARCHAR, mountain_peak VARCHAR) |
### question: What were the circumstances for the Baghlan location? ### answer: SELECT circumstances FROM table_name_62 WHERE location = "baghlan" ### context: CREATE TABLE table_name_62 (circumstances VARCHAR, location VARCHAR) |
### question: What were the casualties in the Baghlan location? ### answer: SELECT casualties FROM table_name_64 WHERE location = "baghlan" ### context: CREATE TABLE table_name_64 (casualties VARCHAR, location VARCHAR) |
### question: What was the date of natural cause situation? ### answer: SELECT date FROM table_name_12 WHERE circumstances = "natural cause" ### context: CREATE TABLE table_name_12 (date VARCHAR, circumstances VARCHAR) |
### question: Which Gold Coast has a Perth of no, a Sydney of yes, and an Auckland of yes? ### answer: SELECT gold_coast FROM table_name_49 WHERE perth = "no" AND sydney = "yes" AND auckland = "yes" ### context: CREATE TABLE table_name_49 (gold_coast VARCHAR, auckland VARCHAR, perth VARCHAR, sydney VARCHAR) |
### question: Which Melbourne has an Auckland of no, and a Gold Coast of no? ### answer: SELECT melbourne FROM table_name_14 WHERE auckland = "no" AND gold_coast = "no" ### context: CREATE TABLE table_name_14 (melbourne VARCHAR, auckland VARCHAR, gold_coast VARCHAR) |
### question: Which Adelaide has a Melbourne of yes, an Auckland of yes, and a Perth of yes? ### answer: SELECT adelaide FROM table_name_2 WHERE melbourne = "yes" AND auckland = "yes" AND perth = "yes" ### context: CREATE TABLE table_name_2 (adelaide VARCHAR, perth VARCHAR, melbourne VARCHAR, auckland VARCHAR) |
### question: Which Sydney has a Perth of no, a Melbourne of yes, and a Gold Coast of no? ### answer: SELECT sydney FROM table_name_27 WHERE perth = "no" AND melbourne = "yes" AND gold_coast = "no" ### context: CREATE TABLE table_name_27 (sydney VARCHAR, gold_coast VARCHAR, perth VARCHAR, melbourne VARCHAR) |
### question: Which Auckland has an Adelaide of no, a Melbourne of yes, and a Sydney of yes? ### answer: SELECT auckland FROM table_name_1 WHERE adelaide = "no" AND melbourne = "yes" AND sydney = "yes" ### context: CREATE TABLE table_name_1 (auckland VARCHAR, sydney VARCHAR, adelaide VARCHAR, melbourne VARCHAR) |
### question: Which Adelaide has an Auckland of yes, a Melbourne of yes, a Perth of yes, and a Sydney of cancelled? ### answer: SELECT adelaide FROM table_name_39 WHERE auckland = "yes" AND melbourne = "yes" AND perth = "yes" AND sydney = "cancelled" ### context: CREATE TABLE table_name_39 (adelaide VARCHAR, sydney VARCHAR, perth VARCHAR, auckland VARCHAR, melbourne VARCHAR) |
### question: Who is the owner of RSS Racing that driver Ryan Sieg belongs to? ### answer: SELECT owner_s_ FROM table_name_75 WHERE team = "rss racing" AND driver_s_ = "ryan sieg" ### context: CREATE TABLE table_name_75 (owner_s_ VARCHAR, team VARCHAR, driver_s_ VARCHAR) |
### question: Parts Plus sponsors what driver? ### answer: SELECT driver_s_ FROM table_name_21 WHERE primary_sponsor_s_ = "parts plus" ### context: CREATE TABLE table_name_21 (driver_s_ VARCHAR, primary_sponsor_s_ VARCHAR) |
### question: Who is the owner of NTS Motorsports sponsored by Qore-24? ### answer: SELECT owner_s_ FROM table_name_61 WHERE team = "nts motorsports" AND primary_sponsor_s_ = "qore-24" ### context: CREATE TABLE table_name_61 (owner_s_ VARCHAR, team VARCHAR, primary_sponsor_s_ VARCHAR) |
### question: Who is the crew chief, of driver Matt kurzejewski? ### answer: SELECT crew_chief FROM table_name_27 WHERE driver_s_ = "matt kurzejewski" ### context: CREATE TABLE table_name_27 (crew_chief VARCHAR, driver_s_ VARCHAR) |
### question: Who is the driver that has a crew chief Gary Ritter? ### answer: SELECT driver_s_ FROM table_name_18 WHERE crew_chief = "gary ritter" ### context: CREATE TABLE table_name_18 (driver_s_ VARCHAR, crew_chief VARCHAR) |
### question: what is the award for the 2009 songwriter of the year? ### answer: SELECT award FROM table_name_24 WHERE year = 2009 AND category = "songwriter of the year" ### context: CREATE TABLE table_name_24 (award VARCHAR, year VARCHAR, category VARCHAR) |
### question: what is the category that has the people's choice awards? ### answer: SELECT category FROM table_name_38 WHERE award = "people's choice awards" ### context: CREATE TABLE table_name_38 (category VARCHAR, award VARCHAR) |
### question: what year has general nominated in the category or choice breakthrough artist? ### answer: SELECT COUNT(year) FROM table_name_77 WHERE nominated_work = "general" AND category = "choice breakthrough artist" ### context: CREATE TABLE table_name_77 (year VARCHAR, nominated_work VARCHAR, category VARCHAR) |
### question: What was the score on 6 February 2008? ### answer: SELECT score FROM table_name_35 WHERE date = "6 february 2008" ### context: CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR) |
### question: Which competition was held on 14 November 2012? ### answer: SELECT competition FROM table_name_41 WHERE date = "14 november 2012" ### context: CREATE TABLE table_name_41 (competition VARCHAR, date VARCHAR) |
### question: What competition took place on 10 August 2011? ### answer: SELECT competition FROM table_name_85 WHERE date = "10 august 2011" ### context: CREATE TABLE table_name_85 (competition VARCHAR, date VARCHAR) |
### question: What is the average Year with Chassis equalling cooper t60? ### answer: SELECT AVG(year) FROM table_name_49 WHERE chassis = "cooper t60" ### context: CREATE TABLE table_name_49 (year INTEGER, chassis VARCHAR) |
### question: Which Chassis has an Entrant of cooper car company, and a Year of 1963? ### answer: SELECT chassis FROM table_name_26 WHERE entrant = "cooper car company" AND year = 1963 ### context: CREATE TABLE table_name_26 (chassis VARCHAR, entrant VARCHAR, year VARCHAR) |
### question: Which Entrant has an Engine of climax straight-4, and Points larger than 0? ### answer: SELECT entrant FROM table_name_44 WHERE engine = "climax straight-4" AND points > 0 ### context: CREATE TABLE table_name_44 (entrant VARCHAR, engine VARCHAR, points VARCHAR) |
### question: Which tournament has hard as the surface and apr. 12, 1998 as the date? ### answer: SELECT tournament FROM table_name_78 WHERE surface = "hard" AND date = "apr. 12, 1998" ### context: CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, date VARCHAR) |
### question: Which surface has wynne prakusya as the opponent in the final? ### answer: SELECT surface FROM table_name_51 WHERE opponent_in_the_final = "wynne prakusya" ### context: CREATE TABLE table_name_51 (surface VARCHAR, opponent_in_the_final VARCHAR) |
### question: What score has wynne prakusya as the opponent in the final? ### answer: SELECT score FROM table_name_15 WHERE opponent_in_the_final = "wynne prakusya" ### context: CREATE TABLE table_name_15 (score VARCHAR, opponent_in_the_final VARCHAR) |
### question: What tournament has nov. 21, 1999 as the date? ### answer: SELECT tournament FROM table_name_79 WHERE date = "nov. 21, 1999" ### context: CREATE TABLE table_name_79 (tournament VARCHAR, date VARCHAR) |
### question: Name the authority for coed gender and chanel college ### answer: SELECT authority FROM table_name_67 WHERE gender = "coed" AND name = "chanel college" ### context: CREATE TABLE table_name_67 (authority VARCHAR, gender VARCHAR, name VARCHAR) |
### question: Name the average decile for state authority and area of fernridge ### answer: SELECT AVG(decile) FROM table_name_62 WHERE authority = "state" AND area = "fernridge" ### context: CREATE TABLE table_name_62 (decile INTEGER, authority VARCHAR, area VARCHAR) |
### question: What was the week on October 11, 1998? ### answer: SELECT MIN(week) FROM table_name_48 WHERE date = "october 11, 1998" ### context: CREATE TABLE table_name_48 (week INTEGER, date VARCHAR) |
### question: What is the location of the game with attendance of 63,336? ### answer: SELECT game_site FROM table_name_93 WHERE attendance = "63,336" ### context: CREATE TABLE table_name_93 (game_site VARCHAR, attendance VARCHAR) |
### question: What was the date of the week 13 game? ### answer: SELECT date FROM table_name_96 WHERE week = 13 ### context: CREATE TABLE table_name_96 (date VARCHAR, week VARCHAR) |
### question: What is the Panthers' Division Record? ### answer: SELECT division_record FROM table_name_48 WHERE team = "panthers" ### context: CREATE TABLE table_name_48 (division_record VARCHAR, team VARCHAR) |
### question: What is the Senators' division record? ### answer: SELECT division_record FROM table_name_39 WHERE team = "senators" ### context: CREATE TABLE table_name_39 (division_record VARCHAR, team VARCHAR) |
### question: What was the record after the January 18 game? ### answer: SELECT record FROM table_name_86 WHERE date = "january 18" ### context: CREATE TABLE table_name_86 (record VARCHAR, date VARCHAR) |
### question: What was the record after the January 6 game? ### answer: SELECT record FROM table_name_44 WHERE date = "january 6" ### context: CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR) |
### question: Name the former name for 49 rank ### answer: SELECT Former AS name FROM table_name_79 WHERE rank = 49 ### context: CREATE TABLE table_name_79 (Former VARCHAR, rank VARCHAR) |
### question: Which NHL team has left wing listed as the position? ### answer: SELECT nhl_team FROM table_name_66 WHERE position = "left wing" ### context: CREATE TABLE table_name_66 (nhl_team VARCHAR, position VARCHAR) |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.