question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Name the lowest Profits (billion $) which has a Sales (billion $) of 425.7, and a Rank larger than 4?
CREATE TABLE table_name_14 (profits__billion_ INTEGER, sales__billion_$_ VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT MIN(profits__billion_) AS $_ FROM table_name_14 WHERE sales__billion_$_ = 425.7 AND rank > 4" }
Name the lowest Market Value (billion $) which has Assets (billion $) larger than 276.81, and a Company of toyota, and Profits (billion $) larger than 17.21?
CREATE TABLE table_name_44 (market_value__billion_ INTEGER, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR, company VARCHAR)
{ "SQL_Query": "SELECT MIN(market_value__billion_) AS $_ FROM table_name_44 WHERE assets__billion_$_ > 276.81 AND company = \"toyota\" AND profits__billion_$_ > 17.21" }
Name the Sales (billion $) which have a Company of exxonmobil?
CREATE TABLE table_name_70 (sales__billion_$_ VARCHAR, company VARCHAR)
{ "SQL_Query": "SELECT sales__billion_$_ FROM table_name_70 WHERE company = \"exxonmobil\"" }
What is Winner, when Win # is greater than 1, and when Points is less than 94?
CREATE TABLE table_name_76 (winner VARCHAR, win__number VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_name_76 WHERE win__number > 1 AND points < 94" }
What is Playoff Result, when Winner is "Alaska Aces", when Win # is greater than 1, when Points is less than 106, and when Year is "2011-12"?
CREATE TABLE table_name_45 (playoff_result VARCHAR, year VARCHAR, points VARCHAR, winner VARCHAR, win__number VARCHAR)
{ "SQL_Query": "SELECT playoff_result FROM table_name_45 WHERE winner = \"alaska aces\" AND win__number > 1 AND points < 106 AND year = \"2011-12\"" }
What is the lowest Win #, when Year is "2011-12", and when Points is less than 97?
CREATE TABLE table_name_27 (win__number INTEGER, year VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT MIN(win__number) FROM table_name_27 WHERE year = \"2011-12\" AND points < 97" }
What is the highest Win #, when Winner is "Knoxville Cherokees", when Playoff Result is "Lost 1st Round ( LOU )", and when Points is less than 94?
CREATE TABLE table_name_87 (win__number INTEGER, points VARCHAR, winner VARCHAR, playoff_result VARCHAR)
{ "SQL_Query": "SELECT MAX(win__number) FROM table_name_87 WHERE winner = \"knoxville cherokees\" AND playoff_result = \"lost 1st round ( lou )\" AND points < 94" }
Who was the winner against Lindsay Davenport?
CREATE TABLE table_name_42 (winner VARCHAR, finalist VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_name_42 WHERE finalist = \"lindsay davenport\"" }
Who was the finalist in Miami?
CREATE TABLE table_name_7 (finalist VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT finalist FROM table_name_7 WHERE tournament = \"miami\"" }
Who was the winner against finalist Lina Krasnoroutskaya?
CREATE TABLE table_name_92 (winner VARCHAR, finalist VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_name_92 WHERE finalist = \"lina krasnoroutskaya\"" }
What was the date when the away team was carlisle united?
CREATE TABLE table_name_50 (date VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_50 WHERE away_team = \"carlisle united\"" }
What was the date when the away team was the leeds united?
CREATE TABLE table_name_3 (date VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_3 WHERE away_team = \"leeds united\"" }
What was the tie number when peterborough united was the away team?
CREATE TABLE table_name_35 (tie_no VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT tie_no FROM table_name_35 WHERE away_team = \"peterborough united\"" }
What player has E as the to par, and The United States as the country?
CREATE TABLE table_name_6 (player VARCHAR, to_par VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_6 WHERE to_par = \"e\" AND country = \"united states\"" }
What player has The United States as the country with 70 as the score?
CREATE TABLE table_name_91 (player VARCHAR, country VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_91 WHERE country = \"united states\" AND score = 70" }
What player has The United States as the country, with t2 as the place?
CREATE TABLE table_name_9 (player VARCHAR, country VARCHAR, place VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_9 WHERE country = \"united states\" AND place = \"t2\"" }
What place has E as the to par, with Mark Wiebe as the player?
CREATE TABLE table_name_3 (place VARCHAR, to_par VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_3 WHERE to_par = \"e\" AND player = \"mark wiebe\"" }
When is the club founded that founed prsl in 2008 and the home city is carolina 1?
CREATE TABLE table_name_95 (founded INTEGER, joined_prsl VARCHAR, home_city VARCHAR)
{ "SQL_Query": "SELECT MAX(founded) FROM table_name_95 WHERE joined_prsl = 2008 AND home_city = \"carolina 1\"" }
what is the club that was founded before 2007, joined prsl in 2008 and the stadium is yldefonso solá morales stadium?
CREATE TABLE table_name_85 (club VARCHAR, stadium VARCHAR, founded VARCHAR, joined_prsl VARCHAR)
{ "SQL_Query": "SELECT club FROM table_name_85 WHERE founded < 2007 AND joined_prsl = 2008 AND stadium = \"yldefonso solá morales stadium\"" }
what is the earliest founded when the home city is mayagüez?
CREATE TABLE table_name_51 (founded INTEGER, home_city VARCHAR)
{ "SQL_Query": "SELECT MIN(founded) FROM table_name_51 WHERE home_city = \"mayagüez\"" }
when is the latest to join prsl when founded in 2007 and the stadium is roberto clemente stadium 1?
CREATE TABLE table_name_31 (joined_prsl INTEGER, founded VARCHAR, stadium VARCHAR)
{ "SQL_Query": "SELECT MAX(joined_prsl) FROM table_name_31 WHERE founded = 2007 AND stadium = \"roberto clemente stadium 1\"" }
What year was the International Cup that was won by Akron Goodyear Wingfoots and had Real Madrid as runner-up?
CREATE TABLE table_name_56 (year VARCHAR, champion VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_56 WHERE champion = \"akron goodyear wingfoots\" AND runner_up = \"real madrid\"" }
In what year did the United States win To par greater than 14
CREATE TABLE table_name_7 (year_s__won VARCHAR, country VARCHAR, to_par VARCHAR)
{ "SQL_Query": "SELECT year_s__won FROM table_name_7 WHERE country = \"united states\" AND to_par > 14" }
What is the total that South Africa had a par greater than 14
CREATE TABLE table_name_25 (total INTEGER, country VARCHAR, to_par VARCHAR)
{ "SQL_Query": "SELECT SUM(total) FROM table_name_25 WHERE country = \"south africa\" AND to_par > 14" }
What is the highest to par that is less than 153
CREATE TABLE table_name_54 (to_par INTEGER, total INTEGER)
{ "SQL_Query": "SELECT MAX(to_par) FROM table_name_54 WHERE total < 153" }
What is the average Attendance, when the Date is September 17, 1981?
CREATE TABLE table_name_78 (attendance INTEGER, date VARCHAR)
{ "SQL_Query": "SELECT AVG(attendance) FROM table_name_78 WHERE date = \"september 17, 1981\"" }
What is the Attendance, when the Opponent is the Tampa Bay Buccaneers?
CREATE TABLE table_name_80 (attendance VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_80 WHERE opponent = \"tampa bay buccaneers\"" }
What is the total number of Points- when the Sets- is larger than 51?
CREATE TABLE table_name_56 (points_ VARCHAR, sets_ INTEGER)
{ "SQL_Query": "SELECT COUNT(points_) FROM table_name_56 WHERE sets_ > 51" }
Which developer has a year of cancelled releases?
CREATE TABLE table_name_96 (developer VARCHAR, year_of_release VARCHAR)
{ "SQL_Query": "SELECT developer FROM table_name_96 WHERE year_of_release = \"cancelled\"" }
Which publisher has release year of 2000 and an original dreamcast platform?
CREATE TABLE table_name_60 (publisher VARCHAR, year_of_release VARCHAR, original_platforms VARCHAR)
{ "SQL_Query": "SELECT publisher FROM table_name_60 WHERE year_of_release = \"2000\" AND original_platforms = \"dreamcast\"" }
Which publisher is responsible for spec ops: stealth patrol?
CREATE TABLE table_name_19 (publisher VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT publisher FROM table_name_19 WHERE name = \"spec ops: stealth patrol\"" }
What is the connection for the proxyconn web accelerator web client accelerator?
CREATE TABLE table_name_62 (connection VARCHAR, web_client_accelerator VARCHAR)
{ "SQL_Query": "SELECT connection FROM table_name_62 WHERE web_client_accelerator = \"proxyconn web accelerator\"" }
What's the Date with the Region of Europe and has a Catalog of 28765 22392 8?
CREATE TABLE table_name_13 (date VARCHAR, region VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_13 WHERE region = \"europe\" AND catalog = \"28765 22392 8\"" }
What's listed for the Label with a Date of 29 July 1997?
CREATE TABLE table_name_51 (label VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_51 WHERE date = \"29 july 1997\"" }
What's the Date for the Region of Europe and has the Catalog of 28765 22392 8?
CREATE TABLE table_name_70 (date VARCHAR, region VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_70 WHERE region = \"europe\" AND catalog = \"28765 22392 8\"" }
What Format has the Region of Europe and a Catalog of 74321 45851 2?
CREATE TABLE table_name_86 (format VARCHAR, region VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT format FROM table_name_86 WHERE region = \"europe\" AND catalog = \"74321 45851 2\"" }
What Label has the Region of Australia?
CREATE TABLE table_name_84 (label VARCHAR, region VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_84 WHERE region = \"australia\"" }
What Date has the Region Europe and a Catalog of 74321 45851 2?
CREATE TABLE table_name_33 (date VARCHAR, region VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_33 WHERE region = \"europe\" AND catalog = \"74321 45851 2\"" }
How many poles are there in the Formula Three Euroseries in the 2008 season with more than 0 F/Laps?
CREATE TABLE table_name_40 (poles INTEGER, f_laps VARCHAR, series VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT SUM(poles) FROM table_name_40 WHERE series = \"formula three euroseries\" AND season = \"2008\" AND f_laps > 0" }
Which series has 11 points?
CREATE TABLE table_name_57 (series VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT series FROM table_name_57 WHERE points = \"11\"" }
How many poles are there in the 2009 season with 2 races and more than 0 F/Laps?
CREATE TABLE table_name_45 (poles VARCHAR, f_laps VARCHAR, season VARCHAR, races VARCHAR)
{ "SQL_Query": "SELECT COUNT(poles) FROM table_name_45 WHERE season = \"2009\" AND races = 2 AND f_laps > 0" }
How many races did the Formula Three Euroseries signature team have?
CREATE TABLE table_name_2 (races INTEGER, series VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT SUM(races) FROM table_name_2 WHERE series = \"formula three euroseries\" AND team = \"signature\"" }
What is Title, when Studio is "Embassy Pictures"?
CREATE TABLE table_name_48 (title VARCHAR, studio VARCHAR)
{ "SQL_Query": "SELECT title FROM table_name_48 WHERE studio = \"embassy pictures\"" }
What is Studio, when Title is "Do Not Disturb"?
CREATE TABLE table_name_49 (studio VARCHAR, title VARCHAR)
{ "SQL_Query": "SELECT studio FROM table_name_49 WHERE title = \"do not disturb\"" }
What is the highest Rank, when Director is "Henry Hathaway"?
CREATE TABLE table_name_63 (rank INTEGER, director VARCHAR)
{ "SQL_Query": "SELECT MAX(rank) FROM table_name_63 WHERE director = \"henry hathaway\"" }
What Country is Player Sam Snead with a To par of less than 5 from?
CREATE TABLE table_name_26 (country VARCHAR, to_par VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_26 WHERE to_par < 5 AND player = \"sam snead\"" }
What is Claude Harmon's Place?
CREATE TABLE table_name_37 (place VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_37 WHERE player = \"claude harmon\"" }
What is the Johnny Palmer with a To larger than 6 Money sum?
CREATE TABLE table_name_81 (money___ INTEGER, to_par VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT SUM(money___) AS $__ FROM table_name_81 WHERE to_par > 6 AND player = \"johnny palmer\"" }
What is the attendance of the western conference finals series?
CREATE TABLE table_name_84 (attendance VARCHAR, series VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_84 WHERE series = \"western conference finals\"" }
Who is the leading scorer of the wnba finals series?
CREATE TABLE table_name_96 (Leading VARCHAR, series VARCHAR)
{ "SQL_Query": "SELECT Leading AS scorer FROM table_name_96 WHERE series = \"wnba finals\"" }
Which Tie is from birmingham city?
CREATE TABLE table_name_97 (tie_no VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT tie_no FROM table_name_97 WHERE home_team = \"birmingham city\"" }
Which Tie is from everton?
CREATE TABLE table_name_89 (tie_no VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT tie_no FROM table_name_89 WHERE home_team = \"everton\"" }
What is the lowest U Wins, when Alianza Wins is greater than 0, when Alianza Goals is greater than 25, and when Draws is "99"?
CREATE TABLE table_name_52 (u_wins INTEGER, draws VARCHAR, alianza_wins VARCHAR, alianza_goals VARCHAR)
{ "SQL_Query": "SELECT MIN(u_wins) FROM table_name_52 WHERE alianza_wins > 0 AND alianza_goals > 25 AND draws = 99" }
What is the sum of Alianza Wins, when Alianza Goals is "317, and when U Goals is greater than 296?
CREATE TABLE table_name_97 (alianza_wins INTEGER, alianza_goals VARCHAR, u_goals VARCHAR)
{ "SQL_Query": "SELECT SUM(alianza_wins) FROM table_name_97 WHERE alianza_goals = 317 AND u_goals > 296" }
What is the total number of U Wins, when Alianza Goals is "0", and when U Goals is greater than 3?
CREATE TABLE table_name_25 (u_wins VARCHAR, alianza_goals VARCHAR, u_goals VARCHAR)
{ "SQL_Query": "SELECT COUNT(u_wins) FROM table_name_25 WHERE alianza_goals = 0 AND u_goals > 3" }
What is the lowest Draws, when Alianza Goals is less than 317, when U Goals is less than 3, and when Alianza Wins is less than 2?
CREATE TABLE table_name_3 (draws INTEGER, alianza_wins VARCHAR, alianza_goals VARCHAR, u_goals VARCHAR)
{ "SQL_Query": "SELECT MIN(draws) FROM table_name_3 WHERE alianza_goals < 317 AND u_goals < 3 AND alianza_wins < 2" }
What is the total of all to par with player Bob Rosburg?
CREATE TABLE table_name_65 (to_par INTEGER, player VARCHAR)
{ "SQL_Query": "SELECT SUM(to_par) FROM table_name_65 WHERE player = \"bob rosburg\"" }
Which money has player Jack Fleck with t1 place?
CREATE TABLE table_name_4 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT money___$__ FROM table_name_4 WHERE place = \"t1\" AND player = \"jack fleck\"" }
What is average to par when Bud Holscher is the player?
CREATE TABLE table_name_38 (to_par INTEGER, player VARCHAR)
{ "SQL_Query": "SELECT AVG(to_par) FROM table_name_38 WHERE player = \"bud holscher\"" }
What is the name of the golfer that has the score of 73-65=138?
CREATE TABLE table_name_81 (player VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_81 WHERE score = 73 - 65 = 138" }
Frank Nobilo plays for what country?
CREATE TABLE table_name_43 (country VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_43 WHERE player = \"frank nobilo\"" }
what is the lowest appearance when goals is more than 0?
CREATE TABLE table_name_32 (appearance INTEGER, goals INTEGER)
{ "SQL_Query": "SELECT MIN(appearance) FROM table_name_32 WHERE goals > 0" }
what is the sum of appearance when goals is more than 0?
CREATE TABLE table_name_33 (appearance INTEGER, goals INTEGER)
{ "SQL_Query": "SELECT SUM(appearance) FROM table_name_33 WHERE goals > 0" }
what is the average tries for the season 2008 warrington wolves with an appearance more than 7?
CREATE TABLE table_name_55 (tries INTEGER, season VARCHAR, appearance VARCHAR)
{ "SQL_Query": "SELECT AVG(tries) FROM table_name_55 WHERE season = \"2008 warrington wolves\" AND appearance > 7" }
How many times is tries 0 and appearance less than 0?
CREATE TABLE table_name_51 (points VARCHAR, tries VARCHAR, appearance VARCHAR)
{ "SQL_Query": "SELECT COUNT(points) FROM table_name_51 WHERE tries = 0 AND appearance < 0" }
What is the Rank of the Film with a Worldwide Gross of $183,031,272?
CREATE TABLE table_name_19 (rank INTEGER, worldwide_gross VARCHAR)
{ "SQL_Query": "SELECT SUM(rank) FROM table_name_19 WHERE worldwide_gross = \"$183,031,272\"" }
What is the Title of the Film with a Rank greater than 11 and Worldwide Gross of $131,002,597?
CREATE TABLE table_name_25 (title VARCHAR, rank VARCHAR, worldwide_gross VARCHAR)
{ "SQL_Query": "SELECT title FROM table_name_25 WHERE rank > 11 AND worldwide_gross = \"$131,002,597\"" }
What is the Worldwide Gross of the Film with a Rank of 3?
CREATE TABLE table_name_38 (worldwide_gross VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT worldwide_gross FROM table_name_38 WHERE rank = 3" }
What is the Worldwide Gross of the Film with a Rank of 16?
CREATE TABLE table_name_68 (worldwide_gross VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT worldwide_gross FROM table_name_68 WHERE rank = 16" }
When the player gained below 1,405 yards and lost over 390 yards, what's the sum of the long yards?
CREATE TABLE table_name_59 (long INTEGER, loss VARCHAR, gain VARCHAR)
{ "SQL_Query": "SELECT SUM(long) FROM table_name_59 WHERE loss > 390 AND gain < 1 OFFSET 405" }
When the Gain is 29, and the average per game is 2, and the player lost less than 390 yards, what's the sum of the Long yards?
CREATE TABLE table_name_26 (long INTEGER, gain VARCHAR, loss VARCHAR, avg_g VARCHAR)
{ "SQL_Query": "SELECT SUM(long) FROM table_name_26 WHERE loss < 390 AND avg_g = 2 AND gain > 29" }
How many overalls have charley barnes as the name, with a pick less than 3?
CREATE TABLE table_name_90 (overall INTEGER, name VARCHAR, pick VARCHAR)
{ "SQL_Query": "SELECT SUM(overall) FROM table_name_90 WHERE name = \"charley barnes\" AND pick < 3" }
How many rounds have john o'day as the name, and a pick less than 3?
CREATE TABLE table_name_87 (round INTEGER, name VARCHAR, pick VARCHAR)
{ "SQL_Query": "SELECT SUM(round) FROM table_name_87 WHERE name = \"john o'day\" AND pick < 3" }
What airport has an IATA of ARN?
CREATE TABLE table_name_76 (airport VARCHAR, iata VARCHAR)
{ "SQL_Query": "SELECT airport FROM table_name_76 WHERE iata = \"arn\"" }
What country has an ICAO of ENZV?
CREATE TABLE table_name_85 (country VARCHAR, icao VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_85 WHERE icao = \"enzv\"" }
What airport has an ICAP of BGBW?
CREATE TABLE table_name_68 (airport VARCHAR, icao VARCHAR)
{ "SQL_Query": "SELECT airport FROM table_name_68 WHERE icao = \"bgbw\"" }
What airport has an ICAO of Birk?
CREATE TABLE table_name_16 (airport VARCHAR, icao VARCHAR)
{ "SQL_Query": "SELECT airport FROM table_name_16 WHERE icao = \"birk\"" }
What is the ICAO for Denmark, and the IATA is bll?
CREATE TABLE table_name_7 (icao VARCHAR, country VARCHAR, iata VARCHAR)
{ "SQL_Query": "SELECT icao FROM table_name_7 WHERE country = \"denmark\" AND iata = \"bll\"" }
What is the number of the round in which Ron Hansen was drafted and the overall is greater than 332?
CREATE TABLE table_name_60 (round VARCHAR, name VARCHAR, overall VARCHAR)
{ "SQL_Query": "SELECT COUNT(round) FROM table_name_60 WHERE name = \"ron hansen\" AND overall > 332" }
What pick did George Rosso get drafted when the overall was less than 296?
CREATE TABLE table_name_71 (pick VARCHAR, name VARCHAR, overall VARCHAR)
{ "SQL_Query": "SELECT COUNT(pick) FROM table_name_71 WHERE name = \"george rosso\" AND overall < 296" }
What was the name for the row with Date From of 2008-02-21?
CREATE TABLE table_name_86 (name VARCHAR, date_from VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_86 WHERE date_from = \"2008-02-21\"" }
What was the Date From for Theo Robinson, who was with the team until the end of season?
CREATE TABLE table_name_30 (date_from VARCHAR, date_to VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT date_from FROM table_name_30 WHERE date_to = \"end of season\" AND name = \"theo robinson\"" }
What date did Toumani Diagouraga, who played position MF, start?
CREATE TABLE table_name_81 (date_from VARCHAR, position VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT date_from FROM table_name_81 WHERE position = \"mf\" AND name = \"toumani diagouraga\"" }
What is the average round against opponent Klas Akesson?
CREATE TABLE table_name_18 (round INTEGER, opponent VARCHAR)
{ "SQL_Query": "SELECT AVG(round) FROM table_name_18 WHERE opponent = \"klas akesson\"" }
What is the highest week that was played against the Minnesota Vikings?
CREATE TABLE table_name_5 (week INTEGER, opponent VARCHAR)
{ "SQL_Query": "SELECT MAX(week) FROM table_name_5 WHERE opponent = \"minnesota vikings\"" }
Which opponent was played in Week 6?
CREATE TABLE table_name_26 (opponent VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_26 WHERE week = 6" }
WhichScore has a Location Attendance of seattle center coliseum 11,497?
CREATE TABLE table_name_15 (score VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_15 WHERE location_attendance = \"seattle center coliseum 11,497\"" }
Which Game has a Team of portland trail blazers?
CREATE TABLE table_name_36 (game INTEGER, team VARCHAR)
{ "SQL_Query": "SELECT AVG(game) FROM table_name_36 WHERE team = \"portland trail blazers\"" }
Which game was played on march 2?
CREATE TABLE table_name_4 (game INTEGER, date VARCHAR)
{ "SQL_Query": "SELECT AVG(game) FROM table_name_4 WHERE date = \"march 2\"" }
Which Game has High assists of s. threatt (9)?
CREATE TABLE table_name_97 (game INTEGER, high_assists VARCHAR)
{ "SQL_Query": "SELECT MIN(game) FROM table_name_97 WHERE high_assists = \"s. threatt (9)\"" }
Count the sum of Pop (2004) which has a Governorate of al mahrah with an Area km² smaller than 78,073?
CREATE TABLE table_name_15 (pop__2004_ INTEGER, governorate VARCHAR, area_km² VARCHAR)
{ "SQL_Query": "SELECT SUM(pop__2004_) FROM table_name_15 WHERE governorate = \"al mahrah\" AND area_km² < 78 OFFSET 073" }
How many Pop (2004) has a Governorate of al mahwit?
CREATE TABLE table_name_48 (pop__2004_ INTEGER, governorate VARCHAR)
{ "SQL_Query": "SELECT SUM(pop__2004_) FROM table_name_48 WHERE governorate = \"al mahwit\"" }
What is Location Attendance, when High Points is "Allen Iverson (23)"?
CREATE TABLE table_name_98 (location_attendance VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_name_98 WHERE high_points = \"allen iverson (23)\"" }
What is the average Game, when Team is "Milwaukee"?
CREATE TABLE table_name_78 (game INTEGER, team VARCHAR)
{ "SQL_Query": "SELECT AVG(game) FROM table_name_78 WHERE team = \"milwaukee\"" }
What is High Points, when Game is "5"?
CREATE TABLE table_name_5 (high_points VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_name_5 WHERE game = 5" }
What is High Points, when Game is less than 10, and when High Assists is "Chauncey Billups (8)"?
CREATE TABLE table_name_18 (high_points VARCHAR, game VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_name_18 WHERE game < 10 AND high_assists = \"chauncey billups (8)\"" }
What is the Team in Game 38?
CREATE TABLE table_name_46 (team VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_46 WHERE game = 38" }
What Game had a Score of 129–105?
CREATE TABLE table_name_13 (game INTEGER, score VARCHAR)
{ "SQL_Query": "SELECT MIN(game) FROM table_name_13 WHERE score = \"129–105\"" }
What is the Team in Game 41?
CREATE TABLE table_name_97 (team VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_97 WHERE game = 41" }
What is the Streak in the game with a Record of 20–16?
CREATE TABLE table_name_42 (streak VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT streak FROM table_name_42 WHERE record = \"20–16\"" }