training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_76 (tournament VARCHAR) ###human: What's the 2013 result for the grand slam tournaments? ###assistant: SELECT 2013 FROM table_name_76 WHERE tournament = "grand slam tournaments"
###context:CREATE TABLE table_name_20 (Id VARCHAR) ###human: What's the 2010 result when 2006 is a? ###assistant: SELECT 2010 FROM table_name_20 WHERE 2006 = "a"
###context:CREATE TABLE table_name_47 (tournament VARCHAR) ###human: What tournament has a 2003 of a? ###assistant: SELECT tournament FROM table_name_47 WHERE 2003 = "a"
###context:CREATE TABLE table_name_83 (Id VARCHAR) ###human: What's the 2007 result when 2003 is a? ###assistant: SELECT 2007 FROM table_name_83 WHERE 2003 = "a"
###context:CREATE TABLE table_name_25 (Id VARCHAR) ###human: What's the 2011 result when 2010 is 2r and 2013 is w? ###assistant: SELECT 2011 FROM table_name_25 WHERE 2010 = "2r" AND 2013 = "w"
###context:CREATE TABLE table_name_64 (Id VARCHAR) ###human: What's the 2005 result when 2001 is sf? ###assistant: SELECT 2005 FROM table_name_64 WHERE 2001 = "sf"
###context:CREATE TABLE table_name_72 (binibining_pilipinas_world VARCHAR, second_runner_up VARCHAR) ###human: Which Binibining Pilipinas-World has a Second runner-up of sonia santiago? ###assistant: SELECT binibining_pilipinas_world FROM table_name_72 WHERE second_runner_up = "sonia santiago"
###context:CREATE TABLE table_name_54 (year VARCHAR, binibining_pilipinas_international VARCHAR) ###human: Which Year has a Binibining Pilipinas International of alma concepcion? ###assistant: SELECT year FROM table_name_54 WHERE binibining_pilipinas_international = "alma concepcion"
###context:CREATE TABLE table_name_24 (binibining_pilipinas_international VARCHAR, binibining_pilipinas_world VARCHAR) ###human: Which Binibining Pilipinas International has a Binibining Pilipinas-World of sharmaine gutierrez? ###assistant: SELECT binibining_pilipinas_international FROM table_name_24 WHERE binibining_pilipinas_world = "sharmaine gutierrez"
###context:CREATE TABLE table_name_9 (result VARCHAR, site VARCHAR) ###human: Which Result has a Site of rice stadium • houston, tx? ###assistant: SELECT result FROM table_name_9 WHERE site = "rice stadium • houston, tx"
###context:CREATE TABLE table_name_29 (opponent VARCHAR, site VARCHAR, date VARCHAR) ###human: What Opponent has a Site of razorback stadium • fayetteville, ar, and a Date of october 7, 1967? ###assistant: SELECT opponent FROM table_name_29 WHERE site = "razorback stadium • fayetteville, ar" AND date = "october 7, 1967"
###context:CREATE TABLE table_name_63 (opponent VARCHAR, site VARCHAR, result VARCHAR) ###human: What Opponent has a Site of war memorial stadium • little rock, ar, and a Result of l6–7? ###assistant: SELECT opponent FROM table_name_63 WHERE site = "war memorial stadium • little rock, ar" AND result = "l6–7"
###context:CREATE TABLE table_name_86 (result VARCHAR, date VARCHAR) ###human: What Result has a Date of october 14, 1967? ###assistant: SELECT result FROM table_name_86 WHERE date = "october 14, 1967"
###context:CREATE TABLE table_name_13 (attendance VARCHAR, result VARCHAR) ###human: What Attendance has a Result of l12–21? ###assistant: SELECT attendance FROM table_name_13 WHERE result = "l12–21"
###context:CREATE TABLE table_name_83 (site VARCHAR, attendance VARCHAR, date VARCHAR) ###human: What Site has Attendance of 53,000, and a Date of october 21, 1967? ###assistant: SELECT site FROM table_name_83 WHERE attendance = "53,000" AND date = "october 21, 1967"
###context:CREATE TABLE table_name_51 (region VARCHAR, format_s_ VARCHAR, label VARCHAR) ###human: What region is the toshiba emi label with a cd format? ###assistant: SELECT region FROM table_name_51 WHERE format_s_ = "cd" AND label = "toshiba emi"
###context:CREATE TABLE table_name_68 (date VARCHAR, catalog VARCHAR) ###human: What is the dage of catalog asw 28033? ###assistant: SELECT date FROM table_name_68 WHERE catalog = "asw 28033"
###context:CREATE TABLE table_name_70 (date VARCHAR, region VARCHAR) ###human: What is the date with a Japan region? ###assistant: SELECT date FROM table_name_70 WHERE region = "japan"
###context:CREATE TABLE table_name_72 (region VARCHAR, format_s_ VARCHAR, date VARCHAR) ###human: What region has a lp format on 4 August 2008? ###assistant: SELECT region FROM table_name_72 WHERE format_s_ = "lp" AND date = "4 august 2008"
###context:CREATE TABLE table_name_4 (region VARCHAR, date VARCHAR) ###human: What region is on 11 August 2008? ###assistant: SELECT region FROM table_name_4 WHERE date = "11 august 2008"
###context:CREATE TABLE table_name_93 (pos INTEGER, h_a_n VARCHAR, inn VARCHAR) ###human: What is the position with a neutral H/A/N and more than 2 innings? ###assistant: SELECT AVG(pos) FROM table_name_93 WHERE h_a_n = "neutral" AND inn > 2
###context:CREATE TABLE table_name_85 (venue VARCHAR, score VARCHAR, h_a_n VARCHAR, pos VARCHAR) ###human: Which venue has a neutral H/A/N, lower than position 3 and a score of 141? ###assistant: SELECT venue FROM table_name_85 WHERE h_a_n = "neutral" AND pos < 3 AND score = "141"
###context:CREATE TABLE table_name_13 (h_a_n VARCHAR, score VARCHAR) ###human: Which H/A/N has a score of 105*♠? ###assistant: SELECT h_a_n FROM table_name_13 WHERE score = "105*♠"
###context:CREATE TABLE table_name_78 (goals_scored INTEGER, played VARCHAR, draw VARCHAR) ###human: What is the average goals scored when less than 34 were played and there were more than 2 draws? ###assistant: SELECT AVG(goals_scored) FROM table_name_78 WHERE played < 34 AND draw > 2
###context:CREATE TABLE table_name_48 (goals_scored INTEGER, points VARCHAR, place VARCHAR) ###human: What is the average goals scored of the team who scored 44 points and placed higher than 5? ###assistant: SELECT AVG(goals_scored) FROM table_name_48 WHERE points = "44" AND place > 5
###context:CREATE TABLE table_name_41 (place INTEGER, goals_conceded VARCHAR, lost VARCHAR) ###human: What is the lowest place of the team who conceded 36 goals and lost more than 6 times? ###assistant: SELECT MIN(place) FROM table_name_41 WHERE goals_conceded = 36 AND lost > 6
###context:CREATE TABLE table_name_36 (games VARCHAR, wins VARCHAR, losses VARCHAR, percent VARCHAR) ###human: what is games when the losses is more than 1, percent is 0.5 and wins is 2? ###assistant: SELECT games FROM table_name_36 WHERE losses > 1 AND percent = 0.5 AND wins = 2
###context:CREATE TABLE table_name_53 (wins INTEGER, percent VARCHAR, teams VARCHAR) ###human: what is the average wins when percent is more than 0.4 and teams is chargers~? ###assistant: SELECT AVG(wins) FROM table_name_53 WHERE percent > 0.4 AND teams = "chargers~"
###context:CREATE TABLE table_name_31 (wins INTEGER, teams VARCHAR, percent VARCHAR) ###human: What is the average wins when teams is lions and the percent is more than 0? ###assistant: SELECT AVG(wins) FROM table_name_31 WHERE teams = "lions" AND percent > 0
###context:CREATE TABLE table_name_23 (wins INTEGER, games VARCHAR, losses VARCHAR, teams VARCHAR) ###human: what is the highest wins when the losses is less than 1, team is rams and the games is more than 8? ###assistant: SELECT MAX(wins) FROM table_name_23 WHERE losses < 1 AND teams = "rams" AND games > 8
###context:CREATE TABLE table_name_35 (category VARCHAR, opponent VARCHAR) ###human: What category is Matthew Barton? ###assistant: SELECT category FROM table_name_35 WHERE opponent = "matthew barton"
###context:CREATE TABLE table_name_33 (launched VARCHAR, commissioned VARCHAR, bow_number VARCHAR) ###human: When did the ship commissioned in November 1975 with a bow number of ps-18 launch? ###assistant: SELECT launched FROM table_name_33 WHERE commissioned = "november 1975" AND bow_number = "ps-18"
###context:CREATE TABLE table_name_22 (launched VARCHAR, commissioned VARCHAR, bow_number VARCHAR) ###human: When did the ship that was commissioned July 1948 with a bow number of ps-31 launch? ###assistant: SELECT launched FROM table_name_22 WHERE commissioned = "july 1948" AND bow_number = "ps-31"
###context:CREATE TABLE table_name_78 (commissioned VARCHAR, ship_name VARCHAR) ###human: When was the ship BRP Miguel Malvar commissioned? ###assistant: SELECT commissioned FROM table_name_78 WHERE ship_name = "brp miguel malvar"
###context:CREATE TABLE table_name_50 (population INTEGER, area_km_2 VARCHAR, official_name VARCHAR) ###human: What is the population of northfield parish that has an area less than 342.4? ###assistant: SELECT SUM(population) FROM table_name_50 WHERE area_km_2 < 342.4 AND official_name = "northfield"
###context:CREATE TABLE table_name_32 (population INTEGER, census_ranking VARCHAR) ###human: What is the population of the parish with a census ranking of 579 of 5,008? ###assistant: SELECT SUM(population) FROM table_name_32 WHERE census_ranking = "579 of 5,008"
###context:CREATE TABLE table_name_78 (population INTEGER, area_km_2 VARCHAR) ###human: What is the population of the parish that has an area of 304.06? ###assistant: SELECT SUM(population) FROM table_name_78 WHERE area_km_2 = 304.06
###context:CREATE TABLE table_name_85 (year INTEGER, notes VARCHAR, competition VARCHAR) ###human: What is the earliest year the world junior championships has 1500 m notes? ###assistant: SELECT MIN(year) FROM table_name_85 WHERE notes = "1500 m" AND competition = "world junior championships"
###context:CREATE TABLE table_name_2 (venue VARCHAR, position VARCHAR, notes VARCHAR, year VARCHAR) ###human: Which venue had 5000 m notes in 2009 with a 1st position? ###assistant: SELECT venue FROM table_name_2 WHERE notes = "5000 m" AND year = 2009 AND position = "1st"
###context:CREATE TABLE table_name_50 (year INTEGER, position VARCHAR) ###human: What is the average year with 7th (heats) position? ###assistant: SELECT AVG(year) FROM table_name_50 WHERE position = "7th (heats)"
###context:CREATE TABLE table_name_55 (method VARCHAR, opponent VARCHAR) ###human: What Method was used with opponent Kenneth Allen? ###assistant: SELECT method FROM table_name_55 WHERE opponent = "kenneth allen"
###context:CREATE TABLE table_name_38 (remarks VARCHAR, country_of_origin VARCHAR) ###human: What is the remark for Norway? ###assistant: SELECT remarks FROM table_name_38 WHERE country_of_origin = "norway"
###context:CREATE TABLE table_name_7 (attendance INTEGER, opponents VARCHAR) ###human: How many people attended the game against the Kaizer Chiefs? ###assistant: SELECT SUM(attendance) FROM table_name_7 WHERE opponents = "kaizer chiefs"
###context:CREATE TABLE table_name_11 (result_f___a VARCHAR, h___a VARCHAR, attendance VARCHAR) ###human: What is the result F-A with an H/A of h and more than 31,727 attending? ###assistant: SELECT result_f___a FROM table_name_11 WHERE h___a = "h" AND attendance > 31 OFFSET 727
###context:CREATE TABLE table_name_23 (player VARCHAR, college_junior_club_team__league_ VARCHAR) ###human: What is Player, when College/Junior/Club Team (League) is "Val d'Or Foreurs ( QMJHL )"? ###assistant: SELECT player FROM table_name_23 WHERE college_junior_club_team__league_ = "val d'or foreurs ( qmjhl )"
###context:CREATE TABLE table_name_53 (position VARCHAR, player VARCHAR) ###human: What is the Position, when Player is "Magnus Nygren"? ###assistant: SELECT position FROM table_name_53 WHERE player = "magnus nygren"
###context:CREATE TABLE table_name_30 (position VARCHAR, college_junior_club_team__league_ VARCHAR, round VARCHAR, nationality VARCHAR) ###human: What is Position, when Round is less than 5, when Nationality is "Canada", and when College/Junior/Club Team (League) is "Saint John Sea Dogs ( QMJHL )"? ###assistant: SELECT position FROM table_name_30 WHERE round < 5 AND nationality = "canada" AND college_junior_club_team__league_ = "saint john sea dogs ( qmjhl )"
###context:CREATE TABLE table_name_18 (college_junior_club_team__league_ VARCHAR, player VARCHAR, round VARCHAR, position VARCHAR, nationality VARCHAR) ###human: What is College/Junior/Club Team (League), when Position is "Defence", when Nationality is "Canada", when Round is less than 5, and when Player is "Josiah Didier"? ###assistant: SELECT college_junior_club_team__league_ FROM table_name_18 WHERE position = "defence" AND nationality = "canada" AND round < 5 AND player = "josiah didier"
###context:CREATE TABLE table_name_39 (total INTEGER, player VARCHAR) ###human: count the the average Total of ian baker-finch? ###assistant: SELECT AVG(total) FROM table_name_39 WHERE player = "ian baker-finch"
###context:CREATE TABLE table_name_62 (country VARCHAR, year_s__won VARCHAR) ###human: Which Country has a Year(s) won of 1963? ###assistant: SELECT country FROM table_name_62 WHERE year_s__won = "1963"
###context:CREATE TABLE table_name_72 (money___$__ VARCHAR, score VARCHAR) ###human: What is the money for the player with a score of 68-69-67-73=277? ###assistant: SELECT money___$__ FROM table_name_72 WHERE score = 68 - 69 - 67 - 73 = 277
###context:CREATE TABLE table_name_55 (to_par VARCHAR, score VARCHAR) ###human: What is the to par of the player with a 72-71-65-69=277 score? ###assistant: SELECT to_par FROM table_name_55 WHERE score = 72 - 71 - 65 - 69 = 277
###context:CREATE TABLE table_name_73 (country VARCHAR, money___$__ VARCHAR, score VARCHAR) ###human: What is the country of the player with playoff money and a score of 66-67-70-67=270? ###assistant: SELECT country FROM table_name_73 WHERE money___$__ = "playoff" AND score = 66 - 67 - 70 - 67 = 270
###context:CREATE TABLE table_name_24 (money___$__ VARCHAR, score VARCHAR) ###human: How much money does the player with a score of 76-70-65-68=279 have? ###assistant: SELECT money___$__ FROM table_name_24 WHERE score = 76 - 70 - 65 - 68 = 279
###context:CREATE TABLE table_name_72 (score VARCHAR, money___$__ VARCHAR, player VARCHAR) ###human: What is the score of player darren clarke, who has $112,500? ###assistant: SELECT score FROM table_name_72 WHERE money___$__ = "112,500" AND player = "darren clarke"
###context:CREATE TABLE table_name_59 (to_par VARCHAR, country VARCHAR, player VARCHAR) ###human: What is the to par of player notah begay iii from the United States? ###assistant: SELECT to_par FROM table_name_59 WHERE country = "united states" AND player = "notah begay iii"
###context:CREATE TABLE table_name_65 (song VARCHAR, draw VARCHAR, place VARCHAR) ###human: What song has a draw more than 4 in 1st place? ###assistant: SELECT song FROM table_name_65 WHERE draw > 4 AND place = "1st"
###context:CREATE TABLE table_name_96 (weight VARCHAR, name VARCHAR) ###human: Name the Weight of ádám steinmetz category:articles with hcards? ###assistant: SELECT weight FROM table_name_96 WHERE name = "ádám steinmetz category:articles with hcards"
###context:CREATE TABLE table_name_10 (weight VARCHAR, name VARCHAR) ###human: Name the Weight which has a Name of balázs hárai category:articles with hcards? ###assistant: SELECT weight FROM table_name_10 WHERE name = "balázs hárai category:articles with hcards"
###context:CREATE TABLE table_name_23 (name VARCHAR) ###human: Name the 012 club which has of norbert hosnyánszky category:articles with hcards? ###assistant: SELECT 2012 AS _club FROM table_name_23 WHERE name = "norbert hosnyánszky category:articles with hcards"
###context:CREATE TABLE table_name_78 (against INTEGER, opposing_teams VARCHAR, venue VARCHAR, status VARCHAR) ###human: What is the lowest Against, when Venue is "Twickenham , London", when Status is "Six Nations", and when Opposing Teams is "France"? ###assistant: SELECT MIN(against) FROM table_name_78 WHERE venue = "twickenham , london" AND status = "six nations" AND opposing_teams = "france"
###context:CREATE TABLE table_name_63 (against VARCHAR, date VARCHAR) ###human: What is the total number of Against, when Date is "27/02/2005"? ###assistant: SELECT COUNT(against) FROM table_name_63 WHERE date = "27/02/2005"
###context:CREATE TABLE table_name_29 (against INTEGER, date VARCHAR) ###human: What is the highest Against, when Date is "27/02/2005"? ###assistant: SELECT MAX(against) FROM table_name_29 WHERE date = "27/02/2005"
###context:CREATE TABLE table_name_16 (status VARCHAR, opposing_teams VARCHAR) ###human: What is Status, when Opposing Teams is "Italy"? ###assistant: SELECT status FROM table_name_16 WHERE opposing_teams = "italy"
###context:CREATE TABLE table_name_75 (name VARCHAR, apparent_magnitude VARCHAR, ra___j2000__ VARCHAR) ###human: Which Name has Apparent Magnitude smaller than 11.4, and R.A. (J2000) of 04h17m35.8s? ###assistant: SELECT name FROM table_name_75 WHERE apparent_magnitude < 11.4 AND ra___j2000__ = "04h17m35.8s"
###context:CREATE TABLE table_name_68 (ra___j2000__ VARCHAR, name VARCHAR) ###human: Which R.A. (J2000) has a Name of ngc 1543? ###assistant: SELECT ra___j2000__ FROM table_name_68 WHERE name = "ngc 1543"
###context:CREATE TABLE table_name_31 (dec___j2000__ VARCHAR, redshift__km__s__ VARCHAR) ###human: Which Dec. (J2000) has a Redshift (km/ s) of 1331 ± 3? ###assistant: SELECT dec___j2000__ FROM table_name_31 WHERE redshift__km__s__ = "1331 ± 3"
###context:CREATE TABLE table_name_64 (ra___j2000__ VARCHAR, name VARCHAR) ###human: Which R.A. (J2000) has a Name of ngc 1515? ###assistant: SELECT ra___j2000__ FROM table_name_64 WHERE name = "ngc 1515"
###context:CREATE TABLE table_name_22 (ra___j2000__ VARCHAR, apparent_magnitude VARCHAR, dec___j2000__ VARCHAR) ###human: Which R.A. (J2000) has Apparent Magnitude of 11.7, and Dec. (J2000) of °07′06″? ###assistant: SELECT ra___j2000__ FROM table_name_22 WHERE apparent_magnitude = 11.7 AND dec___j2000__ = "°07′06″"
###context:CREATE TABLE table_name_66 (player VARCHAR, to_par VARCHAR) ###human: Which player had a To par of +11? ###assistant: SELECT player FROM table_name_66 WHERE to_par = "+11"
###context:CREATE TABLE table_name_47 (player VARCHAR, finish VARCHAR, year_s__won VARCHAR) ###human: Who won in 1997 with a finish of t48? ###assistant: SELECT player FROM table_name_47 WHERE finish = "t48" AND year_s__won = "1997"
###context:CREATE TABLE table_name_33 (player VARCHAR, country VARCHAR, total VARCHAR) ###human: What player from the United States had a total of 297? ###assistant: SELECT player FROM table_name_33 WHERE country = "united states" AND total = 297
###context:CREATE TABLE table_name_19 (country VARCHAR, year_s__won VARCHAR) ###human: Which country won in 1988? ###assistant: SELECT country FROM table_name_19 WHERE year_s__won = "1988"
###context:CREATE TABLE table_name_95 (party VARCHAR, term_start VARCHAR) ###human: Which party had a term start of 5 august 1999? ###assistant: SELECT party FROM table_name_95 WHERE term_start = "5 august 1999"
###context:CREATE TABLE table_name_40 (term_end VARCHAR, minister VARCHAR) ###human: What term end had minister Danny Ayalon? ###assistant: SELECT term_end FROM table_name_40 WHERE minister = "danny ayalon"
###context:CREATE TABLE table_name_60 (governments VARCHAR, party VARCHAR) ###human: Which goverment had a party of yisrael beiteinu? ###assistant: SELECT governments FROM table_name_60 WHERE party = "yisrael beiteinu"
###context:CREATE TABLE table_name_82 (minister VARCHAR, party VARCHAR, governments VARCHAR) ###human: Who was the minister of the labor party and had 26 goverments? ###assistant: SELECT minister FROM table_name_82 WHERE party = "labor party" AND governments = "26"
###context:CREATE TABLE table_name_44 (category VARCHAR, year INTEGER) ###human: What is the category that came before 2011? ###assistant: SELECT category FROM table_name_44 WHERE year < 2011
###context:CREATE TABLE table_name_58 (year VARCHAR, award VARCHAR) ###human: What is the year of the Premios Carlos Gardel 2009 award? ###assistant: SELECT year FROM table_name_58 WHERE award = "premios carlos gardel 2009"
###context:CREATE TABLE table_name_25 (height VARCHAR, contestant VARCHAR) ###human: What is Andrea Suarez Lazaro's height? ###assistant: SELECT height FROM table_name_25 WHERE contestant = "andrea suarez lazaro"
###context:CREATE TABLE table_name_95 (height VARCHAR, contestant VARCHAR) ###human: What is niurbi encarnación ynoa's height? ###assistant: SELECT height FROM table_name_95 WHERE contestant = "niurbi encarnación ynoa"
###context:CREATE TABLE table_name_13 (province VARCHAR, _community VARCHAR, hometown VARCHAR) ###human: What is the province for Jamao Afuera? ###assistant: SELECT province, _community FROM table_name_13 WHERE hometown = "jamao afuera"
###context:CREATE TABLE table_name_1 (geographical_regions VARCHAR, hometown VARCHAR) ###human: What is the geographical region for hometown Imbert? ###assistant: SELECT geographical_regions FROM table_name_1 WHERE hometown = "imbert"
###context:CREATE TABLE table_name_64 (name_of_ship VARCHAR, date VARCHAR) ###human: What is the Name of the Ship attacked on 20February1942? ###assistant: SELECT name_of_ship FROM table_name_64 WHERE date = "20february1942"
###context:CREATE TABLE table_name_96 (name_of_ship VARCHAR, fate VARCHAR, time VARCHAR) ###human: Which ship was sunk at 01:00? ###assistant: SELECT name_of_ship FROM table_name_96 WHERE fate = "sunk at" AND time = "01:00"
###context:CREATE TABLE table_name_73 (to_par VARCHAR, score VARCHAR) ###human: What is the to par for the 68-72-73=213 score? ###assistant: SELECT to_par FROM table_name_73 WHERE score = 68 - 72 - 73 = 213
###context:CREATE TABLE table_name_56 (to_par VARCHAR, score VARCHAR) ###human: What is the to par for the 69-70-72=211 score? ###assistant: SELECT to_par FROM table_name_56 WHERE score = 69 - 70 - 72 = 211
###context:CREATE TABLE table_name_72 (to_par VARCHAR, country VARCHAR, score VARCHAR) ###human: What is the to par for the United States with a 67-71-73=211 score? ###assistant: SELECT to_par FROM table_name_72 WHERE country = "united states" AND score = 67 - 71 - 73 = 211
###context:CREATE TABLE table_name_16 (country VARCHAR, place VARCHAR, score VARCHAR) ###human: What country has t4 place and a 67-71-73=211 score? ###assistant: SELECT country FROM table_name_16 WHERE place = "t4" AND score = 67 - 71 - 73 = 211
###context:CREATE TABLE table_name_43 (to_par VARCHAR, country VARCHAR, score VARCHAR) ###human: What is the to par for Australia and a 73-69-71=213 score? ###assistant: SELECT to_par FROM table_name_43 WHERE country = "australia" AND score = 73 - 69 - 71 = 213
###context:CREATE TABLE table_name_31 (location VARCHAR, design_flow__lpm_ VARCHAR, partner VARCHAR, population_served VARCHAR) ###human: What Location has a Partner of app, a Population Served larger than 2000, and a Design flow (LPM) of 375? ###assistant: SELECT location FROM table_name_31 WHERE partner = "app" AND population_served > 2000 AND design_flow__lpm_ = 375
###context:CREATE TABLE table_name_39 (construction_start VARCHAR, inauguration_date VARCHAR) ###human: What Construction Start has an Inauguration Date of 2010 june? ###assistant: SELECT construction_start FROM table_name_39 WHERE inauguration_date = "2010 june"
###context:CREATE TABLE table_name_99 (construction_start VARCHAR, design_flow__lpm_ VARCHAR) ###human: What Construction Start has a Design flow (LPM) of 1300? ###assistant: SELECT construction_start FROM table_name_99 WHERE design_flow__lpm_ = 1300
###context:CREATE TABLE table_name_40 (location VARCHAR, design_flow__lpm_ VARCHAR, construction_start VARCHAR) ###human: What Location has a Design flow (LPM) smaller than 1900, and a Construction Start of 2006 june? ###assistant: SELECT location FROM table_name_40 WHERE design_flow__lpm_ < 1900 AND construction_start = "2006 june"
###context:CREATE TABLE table_name_2 (partner VARCHAR, construction_start VARCHAR) ###human: What Partner has a Construction Start of 2008 january? ###assistant: SELECT partner FROM table_name_2 WHERE construction_start = "2008 january"
###context:CREATE TABLE table_name_6 (design_flow__lpm_ INTEGER, population_served VARCHAR, partner VARCHAR, construction_start VARCHAR) ###human: What is the total Design flow (LPM) with a Partner of app, a Construction Start of 2008 january, and a Population Served larger than 3500? ###assistant: SELECT SUM(design_flow__lpm_) FROM table_name_6 WHERE partner = "app" AND construction_start = "2008 january" AND population_served > 3500
###context:CREATE TABLE table_name_76 (to_par VARCHAR, player VARCHAR) ###human: What is Sandy Lyle's To Par? ###assistant: SELECT to_par FROM table_name_76 WHERE player = "sandy lyle"
###context:CREATE TABLE table_name_43 (score VARCHAR, country VARCHAR, place VARCHAR) ###human: What is Australia's score where they were in place t1? ###assistant: SELECT score FROM table_name_43 WHERE country = "australia" AND place = "t1"
###context:CREATE TABLE table_name_16 (place VARCHAR, country VARCHAR) ###human: What place has Wales as a country? ###assistant: SELECT place FROM table_name_16 WHERE country = "wales"
###context:CREATE TABLE table_name_28 (to_par VARCHAR, country VARCHAR, player VARCHAR) ###human: What is the To Par of Peter Senior from Australia? ###assistant: SELECT to_par FROM table_name_28 WHERE country = "australia" AND player = "peter senior"