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