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