question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What years in Orlando have the United States as the nationality, with concord hs as the school/club team?
CREATE TABLE table_name_64 (years_in_orlando VARCHAR, nationality VARCHAR, school_club_team VARCHAR)
{ "SQL_Query": "SELECT years_in_orlando FROM table_name_64 WHERE nationality = \"united states\" AND school_club_team = \"concord hs\"" }
Which player has montana as the school/club team?
CREATE TABLE table_name_12 (player VARCHAR, school_club_team VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_12 WHERE school_club_team = \"montana\"" }
What nationality has jon koncak as the player?
CREATE TABLE table_name_70 (nationality VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT nationality FROM table_name_70 WHERE player = \"jon koncak\"" }
What years in orlando have the United States as the nationality, and montana as the school/club team?
CREATE TABLE table_name_16 (years_in_orlando VARCHAR, nationality VARCHAR, school_club_team VARCHAR)
{ "SQL_Query": "SELECT years_in_orlando FROM table_name_16 WHERE nationality = \"united states\" AND school_club_team = \"montana\"" }
What school/club team has tim kempton as the player?
CREATE TABLE table_name_25 (school_club_team VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT school_club_team FROM table_name_25 WHERE player = \"tim kempton\"" }
In the game where they played the Pittsburgh Steelers, what was the attendance?
CREATE TABLE table_name_66 (attendance VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_66 WHERE opponent = \"pittsburgh steelers\"" }
In the game on or before week 9, who was the opponent when the attendance was 61,626?
CREATE TABLE table_name_49 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_49 WHERE week < 9 AND attendance = \"61,626\"" }
On November 20, 1994, what was the result of the game?
CREATE TABLE table_name_65 (result VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_65 WHERE date = \"november 20, 1994\"" }
What is the team #2 with Deport as team #1?
CREATE TABLE table_name_31 (team__number2 VARCHAR, team__number1 VARCHAR)
{ "SQL_Query": "SELECT team__number2 FROM table_name_31 WHERE team__number1 = \"deport\"" }
What is the 2nd leg for the team #2 junior?
CREATE TABLE table_name_18 (team__number2 VARCHAR)
{ "SQL_Query": "SELECT 2 AS nd_leg FROM table_name_18 WHERE team__number2 = \"junior\"" }
What is the 1st leg with a junior team #2?
CREATE TABLE table_name_5 (team__number2 VARCHAR)
{ "SQL_Query": "SELECT 1 AS st_leg FROM table_name_5 WHERE team__number2 = \"junior\"" }
What is the rank with 0 bronze?
CREATE TABLE table_name_9 (rank INTEGER, bronze INTEGER)
{ "SQL_Query": "SELECT AVG(rank) FROM table_name_9 WHERE bronze < 0" }
What is the total where the gold is larger than 2?
CREATE TABLE table_name_46 (total VARCHAR, gold INTEGER)
{ "SQL_Query": "SELECT COUNT(total) FROM table_name_46 WHERE gold > 2" }
What is the smallest number of gold where the total is less than 3 and the silver count is 2?
CREATE TABLE table_name_42 (gold INTEGER, silver VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT MIN(gold) FROM table_name_42 WHERE silver = 2 AND total < 3" }
Which Against has a Drawn smaller than 5, and a Lost smaller than 6, and a Points larger than 36?
CREATE TABLE table_name_26 (against VARCHAR, points VARCHAR, drawn VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT COUNT(against) FROM table_name_26 WHERE drawn < 5 AND lost < 6 AND points > 36" }
Which Played has a Lost larger than 9, and a Points smaller than 15, and a Position smaller than 12, and a Drawn smaller than 2?
CREATE TABLE table_name_18 (played INTEGER, drawn VARCHAR, position VARCHAR, lost VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT AVG(played) FROM table_name_18 WHERE lost > 9 AND points < 15 AND position < 12 AND drawn < 2" }
How many weeks have october 31, 1954 as the date?
CREATE TABLE table_name_96 (week VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(week) FROM table_name_96 WHERE date = \"october 31, 1954\"" }
What party took office after 1993 with Senator Michael Galloway?
CREATE TABLE table_name_61 (party VARCHAR, took_office VARCHAR, senator VARCHAR)
{ "SQL_Query": "SELECT party FROM table_name_61 WHERE took_office > 1993 AND senator = \"michael galloway\"" }
What year did Senator Ken Armbrister take office?
CREATE TABLE table_name_17 (took_office VARCHAR, senator VARCHAR)
{ "SQL_Query": "SELECT took_office FROM table_name_17 WHERE senator = \"ken armbrister\"" }
What is the sum of Bronze when the total is more than 27?
CREATE TABLE table_name_91 (bronze INTEGER, total INTEGER)
{ "SQL_Query": "SELECT SUM(bronze) FROM table_name_91 WHERE total > 27" }
What is the total number of Bronze when gold is more than 1 and nation is total?
CREATE TABLE table_name_93 (bronze VARCHAR, gold VARCHAR, nation VARCHAR)
{ "SQL_Query": "SELECT COUNT(bronze) FROM table_name_93 WHERE gold > 1 AND nation = \"total\"" }
What is the average Bronze for rank 3 and total is more than 8?
CREATE TABLE table_name_1 (bronze INTEGER, rank VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT AVG(bronze) FROM table_name_1 WHERE rank = \"3\" AND total > 8" }
What is the sum of Total when rank is 2?
CREATE TABLE table_name_46 (total INTEGER, rank VARCHAR)
{ "SQL_Query": "SELECT SUM(total) FROM table_name_46 WHERE rank = \"2\"" }
What is the Nation when there is a total less than 27, gold is less than 1, and bronze is more than 1?
CREATE TABLE table_name_62 (nation VARCHAR, bronze VARCHAR, total VARCHAR, gold VARCHAR)
{ "SQL_Query": "SELECT nation FROM table_name_62 WHERE total < 27 AND gold < 1 AND bronze > 1" }
What is the earliest Year commissioned wiht an Average annual output greater than 58 and Installed capacity of 20?
CREATE TABLE table_name_64 (year_commissioned INTEGER, average_annual_output__million_kwh_ VARCHAR, installed_capacity__megawatts_ VARCHAR)
{ "SQL_Query": "SELECT MIN(year_commissioned) FROM table_name_64 WHERE average_annual_output__million_kwh_ > 58 AND installed_capacity__megawatts_ = 20" }
What is the Average annual output for Culligran power station with an Installed capacity less than 19?
CREATE TABLE table_name_12 (average_annual_output__million_kwh_ INTEGER, name VARCHAR, installed_capacity__megawatts_ VARCHAR)
{ "SQL_Query": "SELECT AVG(average_annual_output__million_kwh_) FROM table_name_12 WHERE name = \"culligran\" AND installed_capacity__megawatts_ < 19" }
What is the Year Commissioned of the power stationo with a Gross head of less than 18?
CREATE TABLE table_name_58 (year_commissioned INTEGER, gross_head__metres_ INTEGER)
{ "SQL_Query": "SELECT AVG(year_commissioned) FROM table_name_58 WHERE gross_head__metres_ < 18" }
What is the Year commissioned of the power station with a Gross head of 60 metres and Average annual output of less than 59 million KWh?
CREATE TABLE table_name_75 (year_commissioned INTEGER, gross_head__metres_ VARCHAR, average_annual_output__million_kwh_ VARCHAR)
{ "SQL_Query": "SELECT MAX(year_commissioned) FROM table_name_75 WHERE gross_head__metres_ = 60 AND average_annual_output__million_kwh_ < 59" }
What is the sum of the area values for districts having density over 462 and websites of http://krishna.nic.in/?
CREATE TABLE table_name_19 (area__km²_ INTEGER, density___km²_ VARCHAR, official_website VARCHAR)
{ "SQL_Query": "SELECT SUM(area__km²_) FROM table_name_19 WHERE density___km²_ > 462 AND official_website = \"http://krishna.nic.in/\"" }
What is the valvetrain with an engine model that is engine model?
CREATE TABLE table_name_94 (valvetrain VARCHAR)
{ "SQL_Query": "SELECT valvetrain FROM table_name_94 WHERE \"engine_model\" = \"engine_model\"" }
What is the Position of the player from Vanderbilt?
CREATE TABLE table_name_36 (position VARCHAR, school_club_team VARCHAR)
{ "SQL_Query": "SELECT position FROM table_name_36 WHERE school_club_team = \"vanderbilt\"" }
What is Stephen Thompson's School/Club Team?
CREATE TABLE table_name_80 (school_club_team VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT school_club_team FROM table_name_80 WHERE player = \"stephen thompson\"" }
How many spikes have 28.09.1981 as the date of birth, with a block greater than 318?
CREATE TABLE table_name_78 (spike INTEGER, date_of_birth VARCHAR, block VARCHAR)
{ "SQL_Query": "SELECT SUM(spike) FROM table_name_78 WHERE date_of_birth = \"28.09.1981\" AND block > 318" }
On what date was the DVD released for the season with fewer than 13 episodes that aired before season 8?
CREATE TABLE table_name_74 (dvd_release_date VARCHAR, season VARCHAR, episodes VARCHAR)
{ "SQL_Query": "SELECT dvd_release_date FROM table_name_74 WHERE season < 8 AND episodes < 13" }
After Match 43, what was the Attendance of the Match with a Score of 2-4?
CREATE TABLE table_name_14 (attendance INTEGER, match_no VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT MAX(attendance) FROM table_name_14 WHERE match_no > 43 AND score = \"2-4\"" }
When the runner-up is listed as Gigi Fernández Natalia Zvereva and the week is 26 June 2 weeks, who are the semi finalists?
CREATE TABLE table_name_25 (semi_finalists VARCHAR, runner_up VARCHAR, week_of VARCHAR)
{ "SQL_Query": "SELECT semi_finalists FROM table_name_25 WHERE runner_up = \"gigi fernández natalia zvereva\" AND week_of = \"26 june 2 weeks\"" }
Who is the winner in the week listed as 26 June 2 weeks, when the runner-up is Arantxa Sánchez Vicario?
CREATE TABLE table_name_71 (winner VARCHAR, week_of VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_name_71 WHERE week_of = \"26 june 2 weeks\" AND runner_up = \"arantxa sánchez vicario\"" }
Who are the semi finalists on the week of 12 june, when the runner-up is listed as Lori McNeil?
CREATE TABLE table_name_43 (semi_finalists VARCHAR, week_of VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT semi_finalists FROM table_name_43 WHERE week_of = \"12 june\" AND runner_up = \"lori mcneil\"" }
When the Tier is listed as tier iii, who is the Winner?
CREATE TABLE table_name_79 (winner VARCHAR, tier VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_name_79 WHERE tier = \"tier iii\"" }
In which week is the winner listed as Jana Novotná Arantxa Sánchez Vicario 5–7, 7–5, 6–4?
CREATE TABLE table_name_71 (week_of VARCHAR, winner VARCHAR)
{ "SQL_Query": "SELECT week_of FROM table_name_71 WHERE winner = \"jana novotná arantxa sánchez vicario 5–7, 7–5, 6–4\"" }
Who was the Player that spent the Year 2005 in Orlando?
CREATE TABLE table_name_16 (player VARCHAR, years_in_orlando VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_16 WHERE years_in_orlando = \"2005\"" }
What was the Position of the Player, Britton Johnsen?
CREATE TABLE table_name_79 (position VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT position FROM table_name_79 WHERE player = \"britton johnsen\"" }
Who was the Player that had the Position, guard-forward?
CREATE TABLE table_name_54 (player VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_54 WHERE position = \"guard-forward\"" }
Which Features have Yes listed under Datacenter?
CREATE TABLE table_name_18 (features VARCHAR, datacenter VARCHAR)
{ "SQL_Query": "SELECT features FROM table_name_18 WHERE datacenter = \"yes\"" }
What is the Datacenter for the Fault Tolerant Memory Sync Feature that has Yes for Itanium and No for Standard?
CREATE TABLE table_name_62 (datacenter VARCHAR, features VARCHAR, standard VARCHAR, itanium VARCHAR)
{ "SQL_Query": "SELECT datacenter FROM table_name_62 WHERE standard = \"no\" AND itanium = \"yes\" AND features = \"fault tolerant memory sync\"" }
Which Foundation has an Enterprise of 2?
CREATE TABLE table_name_17 (foundation VARCHAR, enterprise VARCHAR)
{ "SQL_Query": "SELECT foundation FROM table_name_17 WHERE enterprise = \"2\"" }
What is the Datacenter for the Memory modules: hot addition Feature that has Yes listed for Itanium?
CREATE TABLE table_name_85 (datacenter VARCHAR, itanium VARCHAR, features VARCHAR)
{ "SQL_Query": "SELECT datacenter FROM table_name_85 WHERE itanium = \"yes\" AND features = \"memory modules: hot addition\"" }
What is the Enterprise for teh memory modules: hot replacement Feature that has a Datacenter of Yes?
CREATE TABLE table_name_1 (enterprise VARCHAR, datacenter VARCHAR, features VARCHAR)
{ "SQL_Query": "SELECT enterprise FROM table_name_1 WHERE datacenter = \"yes\" AND features = \"memory modules: hot replacement\"" }
What Datacenter is listed against the network access connections: rras Feature?
CREATE TABLE table_name_85 (datacenter VARCHAR, features VARCHAR)
{ "SQL_Query": "SELECT datacenter FROM table_name_85 WHERE features = \"network access connections: rras\"" }
What is the L2 cache with a 13.5x multi 1?
CREATE TABLE table_name_87 (l2_cache VARCHAR, multi_1 VARCHAR)
{ "SQL_Query": "SELECT l2_cache FROM table_name_87 WHERE multi_1 = \"13.5x\"" }
What is the socket with an order part number of amm300dbo22gq and a September 10, 2009 release date?
CREATE TABLE table_name_34 (socket VARCHAR, release_date VARCHAR, order_part_number VARCHAR)
{ "SQL_Query": "SELECT socket FROM table_name_34 WHERE release_date = \"september 10, 2009\" AND order_part_number = \"amm300dbo22gq\"" }
What is the order part number with a 12.5x multi 1?
CREATE TABLE table_name_61 (order_part_number VARCHAR, multi_1 VARCHAR)
{ "SQL_Query": "SELECT order_part_number FROM table_name_61 WHERE multi_1 = \"12.5x\"" }
What is the frequency of the tmm500dbo22gq order part number?
CREATE TABLE table_name_17 (frequency VARCHAR, order_part_number VARCHAR)
{ "SQL_Query": "SELECT frequency FROM table_name_17 WHERE order_part_number = \"tmm500dbo22gq\"" }
What is the L2 cache with a release date on September 10, 2009, a 128-bit FPU width, and a 12x multi 1?
CREATE TABLE table_name_80 (l2_cache VARCHAR, multi_1 VARCHAR, release_date VARCHAR, fpu_width VARCHAR)
{ "SQL_Query": "SELECT l2_cache FROM table_name_80 WHERE release_date = \"september 10, 2009\" AND fpu_width = \"128-bit\" AND multi_1 = \"12x\"" }
What is the release date of the 2x 512 kb L2 cache with a 11x multi 1, and a FPU width of 128-bit?
CREATE TABLE table_name_48 (release_date VARCHAR, fpu_width VARCHAR, l2_cache VARCHAR, multi_1 VARCHAR)
{ "SQL_Query": "SELECT release_date FROM table_name_48 WHERE l2_cache = \"2x 512 kb\" AND multi_1 = \"11x\" AND fpu_width = \"128-bit\"" }
What Player has a College that is alberta?
CREATE TABLE table_name_56 (player VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_56 WHERE college = \"alberta\"" }
What College has a Player that is jermaine romans?
CREATE TABLE table_name_79 (college VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT college FROM table_name_79 WHERE player = \"jermaine romans\"" }
Which Score has a Date of 28 february 1953, and a Tie no of 3?
CREATE TABLE table_name_14 (score VARCHAR, date VARCHAR, tie_no VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_14 WHERE date = \"28 february 1953\" AND tie_no = \"3\"" }
Which Home team has a Score of 0–1, and an Away team of tottenham hotspur?
CREATE TABLE table_name_77 (home_team VARCHAR, score VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT home_team FROM table_name_77 WHERE score = \"0–1\" AND away_team = \"tottenham hotspur\"" }
Which Score has a Tie no of 1?
CREATE TABLE table_name_22 (score VARCHAR, tie_no VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_22 WHERE tie_no = \"1\"" }
Which Home team has an Away team of everton?
CREATE TABLE table_name_57 (home_team VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT home_team FROM table_name_57 WHERE away_team = \"everton\"" }
Which Tie no has a Score of 0–1, and a Date of 9 march 1953?
CREATE TABLE table_name_95 (tie_no VARCHAR, score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT tie_no FROM table_name_95 WHERE score = \"0–1\" AND date = \"9 march 1953\"" }
Which Score has a Home team of aston villa?
CREATE TABLE table_name_20 (score VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_20 WHERE home_team = \"aston villa\"" }
What is the Language for Canale Aste?
CREATE TABLE table_name_16 (language VARCHAR, television_service VARCHAR)
{ "SQL_Query": "SELECT language FROM table_name_16 WHERE television_service = \"canale aste\"" }
What is the Country with Reteconomy as the Television service?
CREATE TABLE table_name_48 (country VARCHAR, television_service VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_48 WHERE television_service = \"reteconomy\"" }
What is the HDTV when documentaries are the content?
CREATE TABLE table_name_84 (hdtv VARCHAR, content VARCHAR)
{ "SQL_Query": "SELECT hdtv FROM table_name_84 WHERE content = \"documentaries\"" }
What is the Language when the Reteconomy is the television service?
CREATE TABLE table_name_86 (language VARCHAR, television_service VARCHAR)
{ "SQL_Query": "SELECT language FROM table_name_86 WHERE television_service = \"reteconomy\"" }
What is the HDTV for the Rai Nettuno Sat Uno Television service?
CREATE TABLE table_name_77 (hdtv VARCHAR, television_service VARCHAR)
{ "SQL_Query": "SELECT hdtv FROM table_name_77 WHERE television_service = \"rai nettuno sat uno\"" }
What is the lowest Week when the result was l 13–10, November 30, 1975, with more than 44,982 people in attendance?
CREATE TABLE table_name_93 (week INTEGER, attendance VARCHAR, result VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT MIN(week) FROM table_name_93 WHERE result = \"l 13–10\" AND date = \"november 30, 1975\" AND attendance > 44 OFFSET 982" }
What is the highest Week when the opponent was the los angeles rams, with more than 37,382 in Attendance?
CREATE TABLE table_name_93 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT MAX(week) FROM table_name_93 WHERE opponent = \"los angeles rams\" AND attendance > 37 OFFSET 382" }
What is the highest Week when the opponent was kansas city chiefs, with more than 26,469 in attendance?
CREATE TABLE table_name_54 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT MAX(week) FROM table_name_54 WHERE opponent = \"kansas city chiefs\" AND attendance > 26 OFFSET 469" }
What is the lowest Week when the result was l 6–0?
CREATE TABLE table_name_19 (week INTEGER, result VARCHAR)
{ "SQL_Query": "SELECT MIN(week) FROM table_name_19 WHERE result = \"l 6–0\"" }
What is the average Week when the result was w 28–20, and there were more than 46,888 in attendance?
CREATE TABLE table_name_83 (week INTEGER, result VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT AVG(week) FROM table_name_83 WHERE result = \"w 28–20\" AND attendance > 46 OFFSET 888" }
What is the lowest Overs with a Run that is 18?
CREATE TABLE table_name_61 (overs INTEGER, runs VARCHAR)
{ "SQL_Query": "SELECT MIN(overs) FROM table_name_61 WHERE runs = 18" }
What score has charlton athletic as the away team?
CREATE TABLE table_name_83 (score VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_83 WHERE away_team = \"charlton athletic\"" }
What home team has coventry city as the away team?
CREATE TABLE table_name_45 (home_team VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT home_team FROM table_name_45 WHERE away_team = \"coventry city\"" }
What is the average Pick when the round was less than 6 for kenneth green?
CREATE TABLE table_name_7 (pick INTEGER, round VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT AVG(pick) FROM table_name_7 WHERE round < 6 AND player = \"kenneth green\"" }
What average goals have matches less than 228?
CREATE TABLE table_name_68 (goals INTEGER, matches INTEGER)
{ "SQL_Query": "SELECT AVG(goals) FROM table_name_68 WHERE matches < 228" }
How many goals/matches have 153 as the goals with matches greater than 352?
CREATE TABLE table_name_27 (matches VARCHAR, goals INTEGER)
{ "SQL_Query": "SELECT SUM(goals) / matches FROM table_name_27 WHERE goals = 153 AND matches > 352" }
What are the lowest goal that have goals/matches greater than 0.43 with joachim streich as the name and matches greater than 378?
CREATE TABLE table_name_37 (goals INTEGER, matches VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT MIN(goals) FROM table_name_37 WHERE goals / matches > 0.43 AND name = \"joachim streich\" AND matches > 378" }
What years have goals less than 229, and 440 as matches?
CREATE TABLE table_name_70 (years VARCHAR, goals VARCHAR, matches VARCHAR)
{ "SQL_Query": "SELECT years FROM table_name_70 WHERE goals < 229 AND matches = 440" }
What team was the winner when the runner-up shows both teams awarded championship after a draw.?
CREATE TABLE table_name_26 (winner VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_name_26 WHERE runner_up = \"both teams awarded championship after a draw.\"" }
What is the Score when the winner was suntory sungoliath, and the number attendance was n/a?
CREATE TABLE table_name_86 (score VARCHAR, winner VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_86 WHERE winner = \"suntory sungoliath\" AND attendance = \"n/a\"" }
What is the Attendance number when the runner-up was suntory sungoliath, and a Title of 46th?
CREATE TABLE table_name_41 (attendance VARCHAR, runner_up VARCHAR, title VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_41 WHERE runner_up = \"suntory sungoliath\" AND title = \"46th\"" }
What is the Attendance number for the title of 44th?
CREATE TABLE table_name_67 (attendance VARCHAR, title VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_67 WHERE title = \"44th\"" }
What is the Title when the winner was suntory sungoliath, and a Season of 2011-12 details?
CREATE TABLE table_name_37 (title VARCHAR, winner VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT title FROM table_name_37 WHERE winner = \"suntory sungoliath\" AND season = \"2011-12 details\"" }
What is the Score when the winner was sanyo wild knights, and a Runner-up of suntory sungoliath?
CREATE TABLE table_name_39 (score VARCHAR, winner VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_39 WHERE winner = \"sanyo wild knights\" AND runner_up = \"suntory sungoliath\"" }
Which Position has a Pick # lower than 278 for Player Charles Benson?
CREATE TABLE table_name_22 (position VARCHAR, pick__number VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT position FROM table_name_22 WHERE pick__number < 278 AND player = \"charles benson\"" }
Which Player has a Pick # lower than 223 and a Defensive End Position?
CREATE TABLE table_name_31 (player VARCHAR, pick__number VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_31 WHERE pick__number < 223 AND position = \"defensive end\"" }
If the Position is Running Back what is the Total number of Pick #?
CREATE TABLE table_name_84 (pick__number VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT COUNT(pick__number) FROM table_name_84 WHERE position = \"running back\"" }
Which College has Player Mark Brown and a Pick # greater than 195?
CREATE TABLE table_name_63 (college VARCHAR, pick__number VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT college FROM table_name_63 WHERE pick__number > 195 AND player = \"mark brown\"" }
What was the average Position for which the amount Drawn was less than 0?
CREATE TABLE table_name_88 (position INTEGER, drawn INTEGER)
{ "SQL_Query": "SELECT AVG(position) FROM table_name_88 WHERE drawn < 0" }
What was the total number of Points when the value Difference was 13, and when the value Lost was greater than 3?
CREATE TABLE table_name_75 (points INTEGER, difference VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT SUM(points) FROM table_name_75 WHERE difference = \"13\" AND lost > 3" }
Who won with the song kemenangan cinta?
CREATE TABLE table_name_1 (winner VARCHAR, winning_song VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_name_1 WHERE winning_song = \"kemenangan cinta\"" }
Which winning song had a debut album in progress?
CREATE TABLE table_name_32 (winning_song VARCHAR, debut_album VARCHAR)
{ "SQL_Query": "SELECT winning_song FROM table_name_32 WHERE debut_album = \"in progress\"" }
Which album debuted in season 2 (2005)?
CREATE TABLE table_name_93 (debut_album VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT debut_album FROM table_name_93 WHERE season = \"season 2 (2005)\"" }
Which English winning song had the winner aris runtuwene?
CREATE TABLE table_name_7 (English VARCHAR, winner VARCHAR)
{ "SQL_Query": "SELECT WINNING_SONG(English AS Title) FROM table_name_7 WHERE winner = \"aris runtuwene\"" }
Which winning song was sung by aku tetap milikmu?
CREATE TABLE table_name_65 (English VARCHAR, winning_song VARCHAR)
{ "SQL_Query": "SELECT WINNING_SONG(English AS Title) FROM table_name_65 WHERE winning_song = \"aku tetap milikmu\"" }
Name the highest Profits (billion $) which has a Company of walmart?
CREATE TABLE table_name_14 (profits__billion_ INTEGER, company VARCHAR)
{ "SQL_Query": "SELECT MAX(profits__billion_) AS $_ FROM table_name_14 WHERE company = \"walmart\"" }
How many Assets (billion $) has an Industry of oil and gas, and a Rank of 9, and a Market Value (billion $) larger than 121.7?
CREATE TABLE table_name_8 (assets__billion_ INTEGER, market_value__billion_$_ VARCHAR, industry VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT SUM(assets__billion_) AS $_ FROM table_name_8 WHERE industry = \"oil and gas\" AND rank = 9 AND market_value__billion_$_ > 121.7" }