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