combined_text stringlengths 106 1.05k |
|---|
###question:How long is the song titled burning love?###answer:SELECT time FROM table_name_54 WHERE song_title = "burning love"###context:CREATE TABLE table_name_54 (time VARCHAR, song_title VARCHAR) |
###question:When was the song titled if you talk in your sleep released?###answer:SELECT release_date FROM table_name_34 WHERE song_title = "if you talk in your sleep"###context:CREATE TABLE table_name_34 (release_date VARCHAR, song_title VARCHAR) |
###question:What is the city that is located in California when the year is greater than 2009?###answer:SELECT city FROM table_name_46 WHERE state = "california" AND year > 2009###context:CREATE TABLE table_name_46 (city VARCHAR, state VARCHAR, year VARCHAR) |
###question:What is the host in a year greater than 1989 and when the venue is the Staples Center located in California?###answer:SELECT host FROM table_name_12 WHERE year > 1989 AND state = "california" AND venue = "staples center"###context:CREATE TABLE table_name_12 (host VARCHAR, venue VARCHAR, year VARCHAR, state ... |
###question:What is the venue in 2011, when the state is California?###answer:SELECT venue FROM table_name_5 WHERE state = "california" AND year = 2011###context:CREATE TABLE table_name_5 (venue VARCHAR, state VARCHAR, year VARCHAR) |
###question:What is the wards/branches of the fort smith Arkansas stake?###answer:SELECT wards__branches_in_arkansas FROM table_name_89 WHERE stake = "fort smith arkansas"###context:CREATE TABLE table_name_89 (wards__branches_in_arkansas VARCHAR, stake VARCHAR) |
###question:What stake has realtor for American equity realty as their occupation?###answer:SELECT stake FROM table_name_98 WHERE occupation = "realtor for american equity realty"###context:CREATE TABLE table_name_98 (stake VARCHAR, occupation VARCHAR) |
###question:What is the organized date of the stake with an occupation of senior buyer for Wal-mart?###answer:SELECT organized FROM table_name_67 WHERE occupation = "senior buyer for wal-mart"###context:CREATE TABLE table_name_67 (organized VARCHAR, occupation VARCHAR) |
###question:What is the sum of the wards/branches in Arkansas of the North Little Rock Arkansas stake?###answer:SELECT SUM(wards__branches_in_arkansas) FROM table_name_93 WHERE stake = "north little rock arkansas"###context:CREATE TABLE table_name_93 (wards__branches_in_arkansas INTEGER, stake VARCHAR) |
###question:What stake has 16 wards/branches in Arkansas?###answer:SELECT stake FROM table_name_97 WHERE wards__branches_in_arkansas = 16###context:CREATE TABLE table_name_97 (stake VARCHAR, wards__branches_in_arkansas VARCHAR) |
###question:What is Stable, when Current Rank is F1 Jūryō 14 West?###answer:SELECT stable FROM table_name_59 WHERE current_rank = "f1 jūryō 14 west"###context:CREATE TABLE table_name_59 (stable VARCHAR, current_rank VARCHAR) |
###question:What is Ring Name, when Current Rank is E0 Maegashira 9 West?###answer:SELECT ring_name FROM table_name_48 WHERE current_rank = "e0 maegashira 9 west"###context:CREATE TABLE table_name_48 (ring_name VARCHAR, current_rank VARCHAR) |
###question:What is Birthplace, when Ring Name is Masunoyama Tomoharu?###answer:SELECT birthplace FROM table_name_70 WHERE ring_name = "masunoyama tomoharu"###context:CREATE TABLE table_name_70 (birthplace VARCHAR, ring_name VARCHAR) |
###question:What is Current Rank, when Ring Name is Tamaasuka Daisuke?###answer:SELECT current_rank FROM table_name_4 WHERE ring_name = "tamaasuka daisuke"###context:CREATE TABLE table_name_4 (current_rank VARCHAR, ring_name VARCHAR) |
###question:What is Ring Name, when Stable is Kasugano, and when Birthplace is Z Mtskheta , Georgia?###answer:SELECT ring_name FROM table_name_49 WHERE stable = "kasugano" AND birthplace = "z mtskheta , georgia"###context:CREATE TABLE table_name_49 (ring_name VARCHAR, stable VARCHAR, birthplace VARCHAR) |
###question:What is Current Rank, when Ring Name is Kimurayama Mamoru?###answer:SELECT current_rank FROM table_name_63 WHERE ring_name = "kimurayama mamoru"###context:CREATE TABLE table_name_63 (current_rank VARCHAR, ring_name VARCHAR) |
###question:Who was the Interview Subject on the Date when there were Pictorials of Christie Brinkley?###answer:SELECT interview_subject FROM table_name_89 WHERE pictorials = "christie brinkley"###context:CREATE TABLE table_name_89 (interview_subject VARCHAR, pictorials VARCHAR) |
###question:In the issue in which the Interview subject was Jesse Jackson, who were there Pictorials of?###answer:SELECT pictorials FROM table_name_84 WHERE interview_subject = "jesse jackson"###context:CREATE TABLE table_name_84 (pictorials VARCHAR, interview_subject VARCHAR) |
###question:Who was the Centerfold model in the issue in which the Interview subject was Paul Simon?###answer:SELECT centerfold_model FROM table_name_68 WHERE interview_subject = "paul simon"###context:CREATE TABLE table_name_68 (centerfold_model VARCHAR, interview_subject VARCHAR) |
###question:Who was the Centerfold model in the issue in which the Interview subject was José Napoleón Duarte?###answer:SELECT centerfold_model FROM table_name_96 WHERE interview_subject = "josé napoleón duarte"###context:CREATE TABLE table_name_96 (centerfold_model VARCHAR, interview_subject VARCHAR) |
###question:Who was the Cover model in the issue in which the Interview subject was Joan Collins?###answer:SELECT cover_model FROM table_name_67 WHERE interview_subject = "joan collins"###context:CREATE TABLE table_name_67 (cover_model VARCHAR, interview_subject VARCHAR) |
###question:Which date has a round more than 9?###answer:SELECT date FROM table_name_85 WHERE round > 9###context:CREATE TABLE table_name_85 (date VARCHAR, round INTEGER) |
###question:Who is the driver that one for the winning tpc team qi-meritus that has a round more than 8?###answer:SELECT winning_driver FROM table_name_76 WHERE winning_team = "tpc team qi-meritus" AND round > 8###context:CREATE TABLE table_name_76 (winning_driver VARCHAR, winning_team VARCHAR, round VARCHAR) |
###question:What is the time of 12 December 2009 with record start?###answer:SELECT time FROM table_name_81 WHERE record = "start" AND date = "12 december 2009"###context:CREATE TABLE table_name_81 (time VARCHAR, record VARCHAR, date VARCHAR) |
###question:What is Elizabeth Yarnold's nation?###answer:SELECT nation FROM table_name_70 WHERE athlete_s_ = "elizabeth yarnold"###context:CREATE TABLE table_name_70 (nation VARCHAR, athlete_s_ VARCHAR) |
###question:What country is the Jiufotang Formation located in?###answer:SELECT location FROM table_name_59 WHERE unit = "jiufotang formation"###context:CREATE TABLE table_name_59 (location VARCHAR, unit VARCHAR) |
###question:Which author is located in Mexico?###answer:SELECT authors FROM table_name_73 WHERE location = "mexico"###context:CREATE TABLE table_name_73 (authors VARCHAR, location VARCHAR) |
###question:Where is wang li duan cheng located?###answer:SELECT location FROM table_name_3 WHERE authors = "wang li duan cheng"###context:CREATE TABLE table_name_3 (location VARCHAR, authors VARCHAR) |
###question:What is the status of the pterosaur named Cathayopterus?###answer:SELECT status FROM table_name_40 WHERE name = "cathayopterus"###context:CREATE TABLE table_name_40 (status VARCHAR, name VARCHAR) |
###question:Which Years in Orlando has a School/Club Team of texas tech?###answer:SELECT years_in_orlando FROM table_name_74 WHERE school_club_team = "texas tech"###context:CREATE TABLE table_name_74 (years_in_orlando VARCHAR, school_club_team VARCHAR) |
###question:Which Nationality has a Player of keith bogans, and a Years in Orlando of 2006–2009?###answer:SELECT nationality FROM table_name_57 WHERE player = "keith bogans" AND years_in_orlando = "2006–2009"###context:CREATE TABLE table_name_57 (nationality VARCHAR, player VARCHAR, years_in_orlando VARCHAR) |
###question:What is Pat Burke's Nationality?###answer:SELECT nationality FROM table_name_34 WHERE player = "pat burke"###context:CREATE TABLE table_name_34 (nationality VARCHAR, player VARCHAR) |
###question:Which School/Club Team has a Player of michael bradley?###answer:SELECT school_club_team FROM table_name_36 WHERE player = "michael bradley"###context:CREATE TABLE table_name_36 (school_club_team VARCHAR, player VARCHAR) |
###question:Which Years in Orlando has a School/Club Team of kentucky?###answer:SELECT years_in_orlando FROM table_name_96 WHERE school_club_team = "kentucky"###context:CREATE TABLE table_name_96 (years_in_orlando VARCHAR, school_club_team VARCHAR) |
###question:Which School/Club Team has a Player of jud buechler?###answer:SELECT school_club_team FROM table_name_16 WHERE player = "jud buechler"###context:CREATE TABLE table_name_16 (school_club_team VARCHAR, player VARCHAR) |
###question:What is the position for years under 1999?###answer:SELECT pos FROM table_name_2 WHERE year < 1999###context:CREATE TABLE table_name_2 (pos VARCHAR, year INTEGER) |
###question:What is the average year for Team Oreca?###answer:SELECT AVG(year) FROM table_name_46 WHERE team = "team oreca"###context:CREATE TABLE table_name_46 (year INTEGER, team VARCHAR) |
###question:Which Position has an Against larger than 17, and a Team of juventus, and a Drawn smaller than 4?###answer:SELECT MIN(position) FROM table_name_50 WHERE against > 17 AND team = "juventus" AND drawn < 4###context:CREATE TABLE table_name_50 (position INTEGER, drawn VARCHAR, against VARCHAR, team VARCHAR) |
###question:Which Lost has an Against of 49 and a Played smaller than 20?###answer:SELECT COUNT(lost) FROM table_name_63 WHERE against = 49 AND played < 20###context:CREATE TABLE table_name_63 (lost VARCHAR, against VARCHAR, played VARCHAR) |
###question:In which championship had a previous champion of "defeated Justin Corino in tournament final"?###answer:SELECT championship FROM table_name_69 WHERE previous_champion_s_ = "defeated justin corino in tournament final"###context:CREATE TABLE table_name_69 (championship VARCHAR, previous_champion_s_ VARCHAR) |
###question:Which location had previous champions of Mike Webb and Nick Fahrenheit?###answer:SELECT location FROM table_name_93 WHERE previous_champion_s_ = "mike webb and nick fahrenheit"###context:CREATE TABLE table_name_93 (location VARCHAR, previous_champion_s_ VARCHAR) |
###question:Who were the previous champions from the event won on May 1, 2010?###answer:SELECT previous_champion_s_ FROM table_name_40 WHERE date_won = "may 1, 2010"###context:CREATE TABLE table_name_40 (previous_champion_s_ VARCHAR, date_won VARCHAR) |
###question:Who is the current champion for the event in Beverly, MA, with previous champions of Mike Webb and Nick Fahrenheit?###answer:SELECT current_champion_s_ FROM table_name_19 WHERE location = "beverly, ma" AND previous_champion_s_ = "mike webb and nick fahrenheit"###context:CREATE TABLE table_name_19 (current_c... |
###question:Who is the current champion in the NECW Heavyweight Championship?###answer:SELECT current_champion_s_ FROM table_name_44 WHERE championship = "necw heavyweight champion"###context:CREATE TABLE table_name_44 (current_champion_s_ VARCHAR, championship VARCHAR) |
###question:Which location held the Iron 8 Championship tournament?###answer:SELECT location FROM table_name_65 WHERE championship = "iron 8 championship tournament"###context:CREATE TABLE table_name_65 (location VARCHAR, championship VARCHAR) |
###question:What is the capacity of 3500v volts?###answer:SELECT capacity FROM table_name_4 WHERE volts = "3500v"###context:CREATE TABLE table_name_4 (capacity VARCHAR, volts VARCHAR) |
###question:How many volts has an energy-to-weight ratio of 54 kj/kg to 2.0v?###answer:SELECT volts FROM table_name_44 WHERE energy_to_weight_ratio = "54 kj/kg to 2.0v"###context:CREATE TABLE table_name_44 (volts VARCHAR, energy_to_weight_ratio VARCHAR) |
###question:What is the capacity with 2.7v volts and a power-to-weight ratio of 5.44 w/kg c/1 (1.875a)?###answer:SELECT capacity FROM table_name_11 WHERE volts = "2.7v" AND power_to_weight_ratio = "5.44 w/kg c/1 (1.875a)"###context:CREATE TABLE table_name_11 (capacity VARCHAR, volts VARCHAR, power_to_weight_ratio VARCH... |
###question:Which season led to a position of 13, and a head coach of Protasov Lyutyi Talalayev Balakhnin Baidachny?###answer:SELECT season FROM table_name_24 WHERE pos = 13 AND head_coach = "protasov lyutyi talalayev balakhnin baidachny"###context:CREATE TABLE table_name_24 (season VARCHAR, pos VARCHAR, head_coach VAR... |
###question:Which week had the highest attendance with 58,701?###answer:SELECT MAX(week) FROM table_name_77 WHERE attendance = "58,701"###context:CREATE TABLE table_name_77 (week INTEGER, attendance VARCHAR) |
###question:What was the score of the game against the San Diego Chargers?###answer:SELECT SUM(week) FROM table_name_50 WHERE opponent = "san diego chargers"###context:CREATE TABLE table_name_50 (week INTEGER, opponent VARCHAR) |
###question:When was the attendance less than 44,851 during the first 4 weeks of the season?###answer:SELECT date FROM table_name_90 WHERE week < 4 AND attendance = "44,851"###context:CREATE TABLE table_name_90 (date VARCHAR, week VARCHAR, attendance VARCHAR) |
###question:On week 13 what was the score of the game?###answer:SELECT result FROM table_name_11 WHERE week = 13###context:CREATE TABLE table_name_11 (result VARCHAR, week VARCHAR) |
###question:What week had 58,025 in attendance?###answer:SELECT SUM(week) FROM table_name_87 WHERE attendance = "58,025"###context:CREATE TABLE table_name_87 (week INTEGER, attendance VARCHAR) |
###question:When was the game that had 58,025 people in attendance?###answer:SELECT date FROM table_name_26 WHERE attendance = "58,025"###context:CREATE TABLE table_name_26 (date VARCHAR, attendance VARCHAR) |
###question:What is the lowest number of Drawn games for Team Mackenzie where the Played is less and 11 and the Points are greater than 7?###answer:SELECT MIN(drawn) FROM table_name_58 WHERE played < 11 AND points > 7 AND team = "mackenzie"###context:CREATE TABLE table_name_58 (drawn INTEGER, team VARCHAR, played VARCH... |
###question:What number of Points are shown for Team Paulistano where the Drawn is less than 2 and the Against is less than 15?###answer:SELECT COUNT(points) FROM table_name_95 WHERE drawn < 2 AND team = "paulistano" AND against < 15###context:CREATE TABLE table_name_95 (points VARCHAR, against VARCHAR, drawn VARCHAR, ... |
###question:What is the Lowest lost for Team Ypiranga-SP where the games Played is more than 10 and the goals Against is greater than 50?###answer:SELECT MIN(lost) FROM table_name_71 WHERE played > 10 AND team = "ypiranga-sp" AND against > 50###context:CREATE TABLE table_name_71 (lost INTEGER, against VARCHAR, played V... |
###question:What is the highest number of Played games with a Position smaller than 2 and Drawn games less than 4?###answer:SELECT MAX(played) FROM table_name_13 WHERE position < 2 AND drawn < 4###context:CREATE TABLE table_name_13 (played INTEGER, position VARCHAR, drawn VARCHAR) |
###question:What is the average number of runner-up that National University, which has more than 2 total championships, has?###answer:SELECT AVG(runner_up) FROM table_name_62 WHERE university = "national university" AND total_championships > 2###context:CREATE TABLE table_name_62 (runner_up INTEGER, university VARCHAR... |
###question:Who was on the Progressive ticket when John T. Norton was on the Democratic ticket?###answer:SELECT progressive_ticket FROM table_name_28 WHERE democratic_ticket = "john t. norton"###context:CREATE TABLE table_name_28 (progressive_ticket VARCHAR, democratic_ticket VARCHAR) |
###question:What name is under the Socialist ticket when Thomas J. Kreuzer was on the Democratic ticket?###answer:SELECT socialist_ticket FROM table_name_92 WHERE democratic_ticket = "thomas j. kreuzer"###context:CREATE TABLE table_name_92 (socialist_ticket VARCHAR, democratic_ticket VARCHAR) |
###question:Who ran under the Republican ticket when Frank H. Hiscock ran under the Progressive ticket?###answer:SELECT republican_ticket FROM table_name_49 WHERE progressive_ticket = "frank h. hiscock"###context:CREATE TABLE table_name_49 (republican_ticket VARCHAR, progressive_ticket VARCHAR) |
###question:What name ran for the Prohibition ticket when the Progressive ticket was Eugene M. Travis?###answer:SELECT prohibition_ticket FROM table_name_14 WHERE progressive_ticket = "eugene m. travis"###context:CREATE TABLE table_name_14 (prohibition_ticket VARCHAR, progressive_ticket VARCHAR) |
###question:When Coleridge A. Hart ran under the Prohibition ticket who ran under the Independence League ticket?###answer:SELECT independence_league_ticket FROM table_name_93 WHERE prohibition_ticket = "coleridge a. hart"###context:CREATE TABLE table_name_93 (independence_league_ticket VARCHAR, prohibition_ticket VARC... |
###question:With the Republican ticket of Frank M. Williams who was the Progressive ticket?###answer:SELECT progressive_ticket FROM table_name_63 WHERE republican_ticket = "frank m. williams"###context:CREATE TABLE table_name_63 (progressive_ticket VARCHAR, republican_ticket VARCHAR) |
###question:What kind of Prohibition ticket that has a Office of lieutenant governor?###answer:SELECT prohibition_ticket FROM table_name_91 WHERE office = "lieutenant governor"###context:CREATE TABLE table_name_91 (prohibition_ticket VARCHAR, office VARCHAR) |
###question:Which Socialist Labor ticket has a Office of secretary of state?###answer:SELECT socialist_labor_ticket FROM table_name_78 WHERE office = "secretary of state"###context:CREATE TABLE table_name_78 (socialist_labor_ticket VARCHAR, office VARCHAR) |
###question:What kind of Republican ticket has a Prohibition ticket of stephen mead wing?###answer:SELECT republican_ticket FROM table_name_27 WHERE prohibition_ticket = "stephen mead wing"###context:CREATE TABLE table_name_27 (republican_ticket VARCHAR, prohibition_ticket VARCHAR) |
###question:What is the kind of Democratic ticket has a Office of comptroller?###answer:SELECT democratic_ticket FROM table_name_14 WHERE office = "comptroller"###context:CREATE TABLE table_name_14 (democratic_ticket VARCHAR, office VARCHAR) |
###question:Which Prohibition ticket has a Socialist Labor ticket of joseph smith?###answer:SELECT prohibition_ticket FROM table_name_34 WHERE socialist_labor_ticket = "joseph smith"###context:CREATE TABLE table_name_34 (prohibition_ticket VARCHAR, socialist_labor_ticket VARCHAR) |
###question:What is the lowest grid number when Colin Edwards is the rider?###answer:SELECT MIN(grid) FROM table_name_46 WHERE rider = "colin edwards"###context:CREATE TABLE table_name_46 (grid INTEGER, rider VARCHAR) |
###question:What is the time/retired when there are less than 22 laps and honda is the manufacturer?###answer:SELECT time_retired FROM table_name_67 WHERE laps < 22 AND manufacturer = "honda"###context:CREATE TABLE table_name_67 (time_retired VARCHAR, laps VARCHAR, manufacturer VARCHAR) |
###question:What is the average number of laps when the grid number is 9?###answer:SELECT AVG(laps) FROM table_name_48 WHERE grid = 9###context:CREATE TABLE table_name_48 (laps INTEGER, grid VARCHAR) |
###question:What is the highest number of laps when honda is the manufacturer and the grid number is 12?###answer:SELECT MAX(laps) FROM table_name_27 WHERE manufacturer = "honda" AND grid = 12###context:CREATE TABLE table_name_27 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR) |
###question:Who is the rider when the grid number is 3?###answer:SELECT rider FROM table_name_28 WHERE grid = 3###context:CREATE TABLE table_name_28 (rider VARCHAR, grid VARCHAR) |
###question:How many laps were driven when the time/retired is +44.284?###answer:SELECT COUNT(laps) FROM table_name_93 WHERE time_retired = "+44.284"###context:CREATE TABLE table_name_93 (laps VARCHAR, time_retired VARCHAR) |
###question:What is the value of the coin weighing 10.5 g and made of cupronickel?###answer:SELECT value FROM table_name_52 WHERE composition = "cupronickel" AND weight = "10.5 g"###context:CREATE TABLE table_name_52 (value VARCHAR, composition VARCHAR, weight VARCHAR) |
###question:What is the coin with a € equivalency of 0.30 made of?###answer:SELECT composition FROM table_name_67 WHERE €_equiv = "0.30"###context:CREATE TABLE table_name_67 (composition VARCHAR, €_equiv VARCHAR) |
###question:What is the coin that weighs 3 g made of?###answer:SELECT composition FROM table_name_33 WHERE weight = "3 g"###context:CREATE TABLE table_name_33 (composition VARCHAR, weight VARCHAR) |
###question:What is the diameter of the coin with a € equivalence of 0.60?###answer:SELECT diameter FROM table_name_80 WHERE €_equiv = "0.60"###context:CREATE TABLE table_name_80 (diameter VARCHAR, €_equiv VARCHAR) |
###question:How much does the coin with a 14mm diameter weigh?###answer:SELECT weight FROM table_name_52 WHERE diameter = "14mm"###context:CREATE TABLE table_name_52 (weight VARCHAR, diameter VARCHAR) |
###question:What is the coverage for the 99.5mhz frequency?###answer:SELECT coverage FROM table_name_5 WHERE frequency = "99.5mhz"###context:CREATE TABLE table_name_5 (coverage VARCHAR, frequency VARCHAR) |
###question:What is the power in kW corresponding to the station that covers General Santos?###answer:SELECT power__kw_ FROM table_name_63 WHERE coverage = "general santos"###context:CREATE TABLE table_name_63 (power__kw_ VARCHAR, coverage VARCHAR) |
###question:What is the branding for the station with a frequency of 93.1mhz and a coverage of Zamboanga?###answer:SELECT branding FROM table_name_45 WHERE frequency = "93.1mhz" AND coverage = "zamboanga"###context:CREATE TABLE table_name_45 (branding VARCHAR, frequency VARCHAR, coverage VARCHAR) |
###question:What is the frequency for the 10kw station with DXEZ as its callsign?###answer:SELECT frequency FROM table_name_25 WHERE power__kw_ = "10kw" AND callsign = "dxez"###context:CREATE TABLE table_name_25 (frequency VARCHAR, power__kw_ VARCHAR, callsign VARCHAR) |
###question:What is the frequency for the station with DYBT as its callsign?###answer:SELECT frequency FROM table_name_53 WHERE callsign = "dybt"###context:CREATE TABLE table_name_53 (frequency VARCHAR, callsign VARCHAR) |
###question:What is the branding for the station with a frequency of 93.1mhz and a callsign of DWRX?###answer:SELECT branding FROM table_name_23 WHERE frequency = "93.1mhz" AND callsign = "dwrx"###context:CREATE TABLE table_name_23 (branding VARCHAR, frequency VARCHAR, callsign VARCHAR) |
###question:Can you tell me the lowest Total Passengers than has the Location of salvador, and the Rank larger than 5?###answer:SELECT MIN(total_passengers) FROM table_name_75 WHERE location = "salvador" AND rank > 5###context:CREATE TABLE table_name_75 (total_passengers INTEGER, location VARCHAR, rank VARCHAR) |
###question:Can you tell me the Annual change that has the Location of manaus?###answer:SELECT annual_change FROM table_name_48 WHERE location = "manaus"###context:CREATE TABLE table_name_48 (annual_change VARCHAR, location VARCHAR) |
###question:What is the average number of cuts made when there were more than 2 tournaments played in 2011?###answer:SELECT AVG(cuts_made) FROM table_name_50 WHERE tournaments_played > 2 AND year = 2011###context:CREATE TABLE table_name_50 (cuts_made INTEGER, tournaments_played VARCHAR, year VARCHAR) |
###question:What is the total number of wins with 10 cuts made and a score average under 74.09?###answer:SELECT COUNT(wins) FROM table_name_52 WHERE cuts_made = 10 AND scoring_average < 74.09###context:CREATE TABLE table_name_52 (wins VARCHAR, cuts_made VARCHAR, scoring_average VARCHAR) |
###question:What is Madeleine Dupont's shot pct.?###answer:SELECT shot_pct FROM table_name_96 WHERE skip = "madeleine dupont"###context:CREATE TABLE table_name_96 (shot_pct VARCHAR, skip VARCHAR) |
###question:Can you tell me the Score that has the High assists of rafer alston (8)?###answer:SELECT score FROM table_name_41 WHERE high_assists = "rafer alston (8)"###context:CREATE TABLE table_name_41 (score VARCHAR, high_assists VARCHAR) |
###question:Can you tell me the High points that has the High rebounds of rafer alston (9)?###answer:SELECT high_points FROM table_name_17 WHERE high_rebounds = "rafer alston (9)"###context:CREATE TABLE table_name_17 (high_points VARCHAR, high_rebounds VARCHAR) |
###question:Can you tell me the Score that has the Date of april 8?###answer:SELECT score FROM table_name_22 WHERE date = "april 8"###context:CREATE TABLE table_name_22 (score VARCHAR, date VARCHAR) |
###question:What's the highest attendance for a game the Texan's played at Arrowhead Stadium?###answer:SELECT MAX(attendance) FROM table_name_87 WHERE game_site = "arrowhead stadium"###context:CREATE TABLE table_name_87 (attendance INTEGER, game_site VARCHAR) |
###question:Who did the Texan's play on Week 4?###answer:SELECT opponent FROM table_name_37 WHERE week = "4"###context:CREATE TABLE table_name_37 (opponent VARCHAR, week VARCHAR) |
###question:What's the date for HOF week?###answer:SELECT date FROM table_name_63 WHERE week = "hof"###context:CREATE TABLE table_name_63 (date VARCHAR, week VARCHAR) |
###question:What is Total, when FA Cup is 1 0 (3)?###answer:SELECT total FROM table_name_77 WHERE fa_cup = "1 0 (3)"###context:CREATE TABLE table_name_77 (total VARCHAR, fa_cup VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.