combined_text
stringlengths
106
1.05k
###question:What is the average 1940 value where 1929 values are 101.4 and 1933 values are over 68.3?###answer:SELECT AVG(1940) FROM table_name_6 WHERE 1929 = 101.4 AND 1933 > 68.3###context:CREATE TABLE table_name_6 (Id VARCHAR)
###question:What is the highest 1937 value that has a 1940 value over 126?###answer:SELECT MAX(1937) FROM table_name_60 WHERE 1940 > 126###context:CREATE TABLE table_name_60 (Id VARCHAR)
###question:At what time is the ბრაზილიის უბანი shown?###answer:SELECT timeslot FROM table_name_43 WHERE translation = "ბრაზილიის უბანი"###context:CREATE TABLE table_name_43 (timeslot VARCHAR, translation VARCHAR)
###question:What country was the series finale present and was shown Monday to Sunday at 18:45-21:00?###answer:SELECT country FROM table_name_70 WHERE series_finale = "present" AND weekly_schedule = "monday to sunday" AND timeslot = "18:45-21:00"###context:CREATE TABLE table_name_70 (country VARCHAR, timeslot VARCHAR, ...
###question:What series finale has the translation ოჰ ეს ცრემლები / პარალელური საიდუმლო?###answer:SELECT series_finale FROM table_name_56 WHERE translation = "ოჰ ეს ცრემლები / პარალელური საიდუმლო"###context:CREATE TABLE table_name_56 (series_finale VARCHAR, translation VARCHAR)
###question:What days of the week is the show aired on that runs at 16:45?###answer:SELECT weekly_schedule FROM table_name_21 WHERE timeslot = "16:45"###context:CREATE TABLE table_name_21 (weekly_schedule VARCHAR, timeslot VARCHAR)
###question:Which days of the week does the telenovela play that is aired at 11:00?###answer:SELECT weekly_schedule FROM table_name_75 WHERE timeslot = "11:00"###context:CREATE TABLE table_name_75 (weekly_schedule VARCHAR, timeslot VARCHAR)
###question:Which Tournament was on 2 October 2006?###answer:SELECT tournament FROM table_name_98 WHERE date = "2 october 2006"###context:CREATE TABLE table_name_98 (tournament VARCHAR, date VARCHAR)
###question:Who is the Opponent in the final on 4 April 2011?###answer:SELECT opponent_in_the_final FROM table_name_16 WHERE date = "4 april 2011"###context:CREATE TABLE table_name_16 (opponent_in_the_final VARCHAR, date VARCHAR)
###question:What Surface was used on 2 June 2003?###answer:SELECT surface FROM table_name_94 WHERE date = "2 june 2003"###context:CREATE TABLE table_name_94 (surface VARCHAR, date VARCHAR)
###question:Which award show nominated The Suite Life on Deck for the Teen Pick Show: Comedy category?###answer:SELECT award FROM table_name_54 WHERE category = "teen pick show: comedy"###context:CREATE TABLE table_name_54 (award VARCHAR, category VARCHAR)
###question:Which award show nominated Cole Sprouse for the Favorite TV Actor category?###answer:SELECT award FROM table_name_49 WHERE category = "favorite tv actor" AND recipient = "cole sprouse"###context:CREATE TABLE table_name_49 (award VARCHAR, category VARCHAR, recipient VARCHAR)
###question:What category was The Suite Life on Deck nominated for later than 2010?###answer:SELECT category FROM table_name_62 WHERE recipient = "the suite life on deck" AND year > 2010###context:CREATE TABLE table_name_62 (category VARCHAR, recipient VARCHAR, year VARCHAR)
###question:Who won the 2010 Kids' Choice Awards?###answer:SELECT recipient FROM table_name_30 WHERE award = "2010 kids' choice awards" AND result = "won"###context:CREATE TABLE table_name_30 (recipient VARCHAR, award VARCHAR, result VARCHAR)
###question:What was the Rd. Time for October 3, 2009?###answer:SELECT rd, _time FROM table_name_86 WHERE date = "october 3, 2009"###context:CREATE TABLE table_name_86 (rd VARCHAR, _time VARCHAR, date VARCHAR)
###question:What is the greatest lost where played is less than 9?###answer:SELECT MAX(lost) FROM table_name_51 WHERE played < 9###context:CREATE TABLE table_name_51 (lost INTEGER, played INTEGER)
###question:What is the greatest played with a drawn less than 1 and a position of less than 1?###answer:SELECT MAX(played) FROM table_name_99 WHERE drawn < 1 AND position < 1###context:CREATE TABLE table_name_99 (played INTEGER, drawn VARCHAR, position VARCHAR)
###question:What is the smallest drawn when the points are less than 7 and the against greater than 31?###answer:SELECT MIN(drawn) FROM table_name_79 WHERE points < 7 AND against > 31###context:CREATE TABLE table_name_79 (drawn INTEGER, points VARCHAR, against VARCHAR)
###question:What is the name of the team that has 13 points?###answer:SELECT team FROM table_name_47 WHERE points = 13###context:CREATE TABLE table_name_47 (team VARCHAR, points VARCHAR)
###question:What was the Nominated Work earlier than 2003?###answer:SELECT nominated_work FROM table_name_85 WHERE year < 2003###context:CREATE TABLE table_name_85 (nominated_work VARCHAR, year INTEGER)
###question:What was the Nominated Work earlier than 2003?###answer:SELECT nominated_work FROM table_name_62 WHERE year < 2003###context:CREATE TABLE table_name_62 (nominated_work VARCHAR, year INTEGER)
###question:What was the Nominated Work earlier than 2003?###answer:SELECT nominated_work FROM table_name_95 WHERE year < 2003###context:CREATE TABLE table_name_95 (nominated_work VARCHAR, year INTEGER)
###question:Which method's event was flawless fighting championship 1: the beginning?###answer:SELECT method FROM table_name_42 WHERE event = "flawless fighting championship 1: the beginning"###context:CREATE TABLE table_name_42 (method VARCHAR, event VARCHAR)
###question:Which method's opponent was chris clark?###answer:SELECT method FROM table_name_11 WHERE opponent = "chris clark"###context:CREATE TABLE table_name_11 (method VARCHAR, opponent VARCHAR)
###question:Which record's round was 3 when the event was fight festival 27?###answer:SELECT record FROM table_name_19 WHERE round = 3 AND event = "fight festival 27"###context:CREATE TABLE table_name_19 (record VARCHAR, round VARCHAR, event VARCHAR)
###question:What is the Fourth place with a Year that is 1978?###answer:SELECT fourth_place FROM table_name_58 WHERE year = 1978###context:CREATE TABLE table_name_58 (fourth_place VARCHAR, year VARCHAR)
###question:What is the Fourth place with a Year that is 1966?###answer:SELECT fourth_place FROM table_name_11 WHERE year = 1966###context:CREATE TABLE table_name_11 (fourth_place VARCHAR, year VARCHAR)
###question:What is the Champion with a Year that is 2008?###answer:SELECT champion FROM table_name_65 WHERE year = 2008###context:CREATE TABLE table_name_65 (champion VARCHAR, year VARCHAR)
###question:Who was the opponent for the game played on September 19, 1994?###answer:SELECT opponent FROM table_name_15 WHERE date = "september 19, 1994"###context:CREATE TABLE table_name_15 (opponent VARCHAR, date VARCHAR)
###question:In which week was attendance at 50,814?###answer:SELECT COUNT(week) FROM table_name_10 WHERE attendance = "50,814"###context:CREATE TABLE table_name_10 (week VARCHAR, attendance VARCHAR)
###question:What date after Week 6 was a Bye?###answer:SELECT date FROM table_name_34 WHERE week > 6 AND attendance = "bye"###context:CREATE TABLE table_name_34 (date VARCHAR, week VARCHAR, attendance VARCHAR)
###question:What subjunctive also has an inverse subjunctive of måchadns?###answer:SELECT subjunctive FROM table_name_85 WHERE inverse_subjunctive = "måchadns"###context:CREATE TABLE table_name_85 (subjunctive VARCHAR, inverse_subjunctive VARCHAR)
###question:What imperative has måcha as 3.sg?###answer:SELECT imperative FROM table_name_94 WHERE måcha = "3.sg"###context:CREATE TABLE table_name_94 (imperative VARCHAR, måcha VARCHAR)
###question:The indicative of si måchan has what as the inverse subjunctive?###answer:SELECT inverse_subjunctive FROM table_name_8 WHERE indicative = "si måchan"###context:CREATE TABLE table_name_8 (inverse_subjunctive VARCHAR, indicative VARCHAR)
###question:What inverse subjunctive has — as the imperative and a subjunctive of se måchadn?###answer:SELECT inverse_subjunctive FROM table_name_9 WHERE imperative = "—" AND subjunctive = "se måchadn"###context:CREATE TABLE table_name_9 (inverse_subjunctive VARCHAR, imperative VARCHAR, subjunctive VARCHAR)
###question:With a subjunctive of du måchast what is the imperative?###answer:SELECT imperative FROM table_name_37 WHERE subjunctive = "du måchast"###context:CREATE TABLE table_name_37 (imperative VARCHAR, subjunctive VARCHAR)
###question:What subjunctive has the indicative of se måchan(t)?###answer:SELECT subjunctive FROM table_name_77 WHERE indicative = "se måchan(t)"###context:CREATE TABLE table_name_77 (subjunctive VARCHAR, indicative VARCHAR)
###question:What is the Win % in the Span of 2011–2013 with a Lost of less than 1?###answer:SELECT AVG(win__percentage) FROM table_name_91 WHERE span = "2011–2013" AND lost < 1###context:CREATE TABLE table_name_91 (win__percentage INTEGER, span VARCHAR, lost VARCHAR)
###question:How many games were Tied during the Span of 2011–2013 with a less than 80% Win %?###answer:SELECT COUNT(tied) FROM table_name_57 WHERE span = "2011–2013" AND win__percentage < 80###context:CREATE TABLE table_name_57 (tied VARCHAR, span VARCHAR, win__percentage VARCHAR)
###question:On what date were sheets issued in Tallahassee, Florida?###answer:SELECT date_of_issue FROM table_name_40 WHERE place_of_issue = "tallahassee, florida"###context:CREATE TABLE table_name_40 (date_of_issue VARCHAR, place_of_issue VARCHAR)
###question:Which printer issued sheets on October 5, 2006?###answer:SELECT printer FROM table_name_79 WHERE date_of_issue = "october 5, 2006"###context:CREATE TABLE table_name_79 (printer VARCHAR, date_of_issue VARCHAR)
###question:What is the least amount of silver medals won by Total with more than 1 bronze and more than 18 total medals won?###answer:SELECT MIN(silver) FROM table_name_8 WHERE bronze > 1 AND nation = "total" AND "total" > 18###context:CREATE TABLE table_name_8 (silver INTEGER, bronze VARCHAR, nation VARCHAR)
###question:How many positions have points against less than 28, americano-sp as the team, with a played greater than 8?###answer:SELECT COUNT(position) FROM table_name_7 WHERE against < 28 AND team = "americano-sp" AND played > 8###context:CREATE TABLE table_name_7 (position VARCHAR, played VARCHAR, against VARCHAR, t...
###question:How many losses have points against less than 15?###answer:SELECT COUNT(lost) FROM table_name_1 WHERE against < 15###context:CREATE TABLE table_name_1 (lost VARCHAR, against INTEGER)
###question:What average played has an against less than 15?###answer:SELECT AVG(played) FROM table_name_40 WHERE against < 15###context:CREATE TABLE table_name_40 (played INTEGER, against INTEGER)
###question:How many losses have a played greater than 8, ypiranga-sp as the team, with a position greater than 5?###answer:SELECT COUNT(lost) FROM table_name_60 WHERE played > 8 AND team = "ypiranga-sp" AND position > 5###context:CREATE TABLE table_name_60 (lost VARCHAR, position VARCHAR, played VARCHAR, team VARCHAR)
###question:What lost has a position greater than 2, a drawn greater than 0, with an against greater than 15?###answer:SELECT lost FROM table_name_24 WHERE position > 2 AND drawn > 0 AND against > 15###context:CREATE TABLE table_name_24 (lost VARCHAR, against VARCHAR, position VARCHAR, drawn VARCHAR)
###question:What is the sum of Asian or Amerindian (%), when State is Sergipe, and when Brown (%) is greater than 61,3?###answer:SELECT SUM(asian_or_amerindian___percentage_) FROM table_name_44 WHERE state = "sergipe" AND brown___percentage_ > 61 OFFSET 3###context:CREATE TABLE table_name_44 (asian_or_amerindian___perc...
###question:How many points were there when there more than 6 losses and less than 14 matches?###answer:SELECT COUNT(points) FROM table_name_16 WHERE lost > 6 AND match < 14###context:CREATE TABLE table_name_16 (points VARCHAR, lost VARCHAR, match VARCHAR)
###question:How few losses were the least number of losses and points higher than 23?###answer:SELECT MIN(lost) FROM table_name_67 WHERE points > 23###context:CREATE TABLE table_name_67 (lost INTEGER, points INTEGER)
###question:What is the highest number of matches with more than 18 points and more than 1 draw?###answer:SELECT MAX(match) FROM table_name_37 WHERE points > 18 AND draw > 1###context:CREATE TABLE table_name_37 (match INTEGER, points VARCHAR, draw VARCHAR)
###question:Who was the champion in the game played at the St. Andrews Links with Dick Chapman as the runner-up?###answer:SELECT champion FROM table_name_87 WHERE runner_up = "dick chapman" AND venue = "st. andrews links"###context:CREATE TABLE table_name_87 (champion VARCHAR, runner_up VARCHAR, venue VARCHAR)
###question:What is the score of the match won by Willie Hunter at the Royal Liverpool Golf Club?###answer:SELECT score FROM table_name_21 WHERE venue = "royal liverpool golf club" AND champion = "willie hunter"###context:CREATE TABLE table_name_21 (score VARCHAR, venue VARCHAR, champion VARCHAR)
###question:What player from England was the runner-up at the match played at the Royal Porthcawl Golf Club?###answer:SELECT runner_up FROM table_name_83 WHERE country = "england" AND venue = "royal porthcawl golf club"###context:CREATE TABLE table_name_83 (runner_up VARCHAR, country VARCHAR, venue VARCHAR)
###question:Who was the champion in the match where C.A. Palmer was the runner-up?###answer:SELECT champion FROM table_name_80 WHERE runner_up = "c.a. palmer"###context:CREATE TABLE table_name_80 (champion VARCHAR, runner_up VARCHAR)
###question:What player was the champion in the match where E.A. Lassen was the runner-up?###answer:SELECT champion FROM table_name_60 WHERE runner_up = "e.a. lassen"###context:CREATE TABLE table_name_60 (champion VARCHAR, runner_up VARCHAR)
###question:What is the score of the match played in England where Peter McEvoy was the champion and Paul McKellar was runner-up?###answer:SELECT score FROM table_name_34 WHERE country = "england" AND champion = "peter mcevoy" AND runner_up = "paul mckellar"###context:CREATE TABLE table_name_34 (score VARCHAR, runner_u...
###question:Which federal state has 6 representatives of national average?###answer:SELECT federal_state FROM table_name_3 WHERE representatives_of_national_average = "6"###context:CREATE TABLE table_name_3 (federal_state VARCHAR, representatives_of_national_average VARCHAR)
###question:According to the 2010 census, what was the population for the federal state that had less than -6 deputies required ignoring the limits?###answer:SELECT population__on_the_census_also_called_censo_2010_ FROM table_name_47 WHERE deputies_required_ignoring_the_limits < -6###context:CREATE TABLE table_name_47 ...
###question:What is the lowest number of blocks for players with height of 206 and more than 356 spikes?###answer:SELECT MIN(block) FROM table_name_69 WHERE height = 206 AND spike > 356###context:CREATE TABLE table_name_69 (block INTEGER, height VARCHAR, spike VARCHAR)
###question:What is the number of weight values associated with 340 blocks and more than 353 spikes?###answer:SELECT COUNT(weight) FROM table_name_7 WHERE block = 340 AND spike > 353###context:CREATE TABLE table_name_7 (weight VARCHAR, block VARCHAR, spike VARCHAR)
###question:What award did Forest Whitaker win in 1989?###answer:SELECT award FROM table_name_54 WHERE actor = "forest whitaker" AND year = 1989###context:CREATE TABLE table_name_54 (award VARCHAR, actor VARCHAR, year VARCHAR)
###question:For what motion picture did Samuel L. Jackson win the best supporting actor award before 1997?###answer:SELECT motion_picture FROM table_name_42 WHERE award = "best supporting actor" AND actor = "samuel l. jackson" AND year < 1997###context:CREATE TABLE table_name_42 (motion_picture VARCHAR, year VARCHAR, a...
###question:Which actor won in 1966?###answer:SELECT actor FROM table_name_43 WHERE year = 1966###context:CREATE TABLE table_name_43 (actor VARCHAR, year VARCHAR)
###question:What is the lowest influence with population in the millions less than 60.64, and MEPs less than 22, and 454,059 inhabitant per MEP?###answer:SELECT MIN(influence) FROM table_name_58 WHERE population_millions < 60.64 AND meps < 22 AND inhabitants_per_mep = 454 OFFSET 059###context:CREATE TABLE table_name_58...
###question:What is the highest population in the millions that has an influence of 1.02?###answer:SELECT MAX(population_millions) FROM table_name_55 WHERE influence = 1.02###context:CREATE TABLE table_name_55 (population_millions INTEGER, influence VARCHAR)
###question:What is the sum of the population in millions that has an influence less than 2.91, a MEP smaller than 13, a member of Latvia, and more than 286,875 inhabitants per MEP?###answer:SELECT SUM(population_millions) FROM table_name_49 WHERE influence < 2.91 AND meps < 13 AND member_state = "latvia" AND inhabitan...
###question:What is the highest number of inhabitants per MEP that has MEPs larger than 50, a member of Germany, and a population less than 82.43 million?###answer:SELECT MAX(inhabitants_per_mep) FROM table_name_26 WHERE meps > 50 AND member_state = "germany" AND population_millions < 82.43###context:CREATE TABLE table...
###question:Which World Rank has a Year smaller than 1977, and a Location of eugene?###answer:SELECT world_rank FROM table_name_81 WHERE year < 1977 AND location = "eugene"###context:CREATE TABLE table_name_81 (world_rank VARCHAR, year VARCHAR, location VARCHAR)
###question:What's the lowest Year with a World Rank of 5th, with a Result greater than 20.31?###answer:SELECT MIN(year) FROM table_name_65 WHERE world_rank = "5th" AND result > 20.31###context:CREATE TABLE table_name_65 (year INTEGER, world_rank VARCHAR, result VARCHAR)
###question:Which Year has a Result smaller than 20.26, and a Location of eugene?###answer:SELECT SUM(year) FROM table_name_80 WHERE result < 20.26 AND location = "eugene"###context:CREATE TABLE table_name_80 (year INTEGER, result VARCHAR, location VARCHAR)
###question:What is the Result with a Location of brussels?###answer:SELECT COUNT(result) FROM table_name_96 WHERE location = "brussels"###context:CREATE TABLE table_name_96 (result VARCHAR, location VARCHAR)
###question:What Year has a Result smaller than 20.31, and a World Rank of 5th?###answer:SELECT AVG(year) FROM table_name_64 WHERE result < 20.31 AND world_rank = "5th"###context:CREATE TABLE table_name_64 (year INTEGER, result VARCHAR, world_rank VARCHAR)
###question:What is the record when the Nuggets are the home team?###answer:SELECT record FROM table_name_33 WHERE home = "nuggets"###context:CREATE TABLE table_name_33 (record VARCHAR, home VARCHAR)
###question:What is the lowest number of points for Drivers that have raced in more than 16 Races?###answer:SELECT MIN(points) FROM table_name_35 WHERE races > 16###context:CREATE TABLE table_name_35 (points INTEGER, races INTEGER)
###question:What is the least number of Races for a Racer with less than 0 Points?###answer:SELECT MIN(races) FROM table_name_31 WHERE points < 0###context:CREATE TABLE table_name_31 (races INTEGER, points INTEGER)
###question:What is the average Year during which the Driver Adrian Quaife-Hobbs has fewer than 2 Poles, and 0 Fast laps?###answer:SELECT AVG(year) FROM table_name_98 WHERE poles < 2 AND fast_laps = 0 AND drivers = "adrian quaife-hobbs"###context:CREATE TABLE table_name_98 (year INTEGER, drivers VARCHAR, poles VARCHAR,...
###question:Which city contains the KPIX station?###answer:SELECT city_of_license__market FROM table_name_96 WHERE station = "kpix"###context:CREATE TABLE table_name_96 (city_of_license__market VARCHAR, station VARCHAR)
###question:Which station has channel TV (DT) of 3 (26)?###answer:SELECT station FROM table_name_74 WHERE channel_tv___dt__ = "3 (26)"###context:CREATE TABLE table_name_74 (station VARCHAR, channel_tv___dt__ VARCHAR)
###question:What is the current affiliation when the years owned is between 1955–1995?###answer:SELECT current_affiliation FROM table_name_62 WHERE years_owned = "1955–1995"###context:CREATE TABLE table_name_62 (current_affiliation VARCHAR, years_owned VARCHAR)
###question:What is the city containing the KDKA-TV station?###answer:SELECT city_of_license__market FROM table_name_61 WHERE station = "kdka-tv"###context:CREATE TABLE table_name_61 (city_of_license__market VARCHAR, station VARCHAR)
###question:Which Channel TV is located in Baltimore?###answer:SELECT channel_tv___dt__ FROM table_name_88 WHERE city_of_license__market = "baltimore"###context:CREATE TABLE table_name_88 (channel_tv___dt__ VARCHAR, city_of_license__market VARCHAR)
###question:What is the least number of goals scored in the play-offs among the players that have scored 2 in the FA Cup?###answer:SELECT MIN(play_offs) FROM table_name_43 WHERE fa_cup = 2###context:CREATE TABLE table_name_43 (play_offs INTEGER, fa_cup VARCHAR)
###question:What is the average number of goals scored in the FA Cup among players that have more than 20 total goals, less than 1 FA Trophy goals, and less than 25 league goals?###answer:SELECT AVG(fa_cup) FROM table_name_57 WHERE total > 20 AND fa_trophy < 1 AND league < 25###context:CREATE TABLE table_name_57 (fa_cu...
###question:What is the latitude and longitude for Surveyor 3?###answer:SELECT lat___lon FROM table_name_87 WHERE us_mission = "surveyor 3"###context:CREATE TABLE table_name_87 (lat___lon VARCHAR, us_mission VARCHAR)
###question:What is the largest mass for Tycho Crater?###answer:SELECT MAX(mass__kg_) FROM table_name_59 WHERE landing_zone = "tycho crater"###context:CREATE TABLE table_name_59 (mass__kg_ INTEGER, landing_zone VARCHAR)
###question:What Field was Commissioned in 1958, 2005?###answer:SELECT field FROM table_name_24 WHERE commissioned = "1958, 2005"###context:CREATE TABLE table_name_24 (field VARCHAR, commissioned VARCHAR)
###question:What is the Annual Generation at Kawerau (Bope)?###answer:SELECT annual_generation__average_gwh_ FROM table_name_83 WHERE name = "kawerau (bope)"###context:CREATE TABLE table_name_83 (annual_generation__average_gwh_ VARCHAR, name VARCHAR)
###question:What is the Name of the power station with a Capacity of 25 MW?###answer:SELECT name FROM table_name_9 WHERE capacity__mw_ = 25###context:CREATE TABLE table_name_9 (name VARCHAR, capacity__mw_ VARCHAR)
###question:What is the Name of the power station in the Field of Mokai?###answer:SELECT name FROM table_name_22 WHERE field = "mokai"###context:CREATE TABLE table_name_22 (name VARCHAR, field VARCHAR)
###question:How many goals were scored in 2004 when the gp/gs was "did not play"?###answer:SELECT goals FROM table_name_25 WHERE gp_gs = "did not play" AND year = "2004"###context:CREATE TABLE table_name_25 (goals VARCHAR, gp_gs VARCHAR, year VARCHAR)
###question:How many assists were there when the total points was 2?###answer:SELECT assists FROM table_name_36 WHERE total_points = "2"###context:CREATE TABLE table_name_36 (assists VARCHAR, total_points VARCHAR)
###question:What was the total number of points when there were 7 assists?###answer:SELECT total_points FROM table_name_98 WHERE assists = "7"###context:CREATE TABLE table_name_98 (total_points VARCHAR, assists VARCHAR)
###question:What was the gp/gs when the assists was 1?###answer:SELECT gp_gs FROM table_name_4 WHERE assists = "1"###context:CREATE TABLE table_name_4 (gp_gs VARCHAR, assists VARCHAR)
###question:what was the gp/gs in 2003 when the total points was "did not play"?###answer:SELECT gp_gs FROM table_name_96 WHERE total_points = "did not play" AND year = "2003"###context:CREATE TABLE table_name_96 (gp_gs VARCHAR, total_points VARCHAR, year VARCHAR)
###question:What was the outcome for Jan Pisecky and his partner?###answer:SELECT outcome FROM table_name_32 WHERE partner = "jan pisecky"###context:CREATE TABLE table_name_32 (outcome VARCHAR, partner VARCHAR)
###question:What player weight 235?###answer:SELECT player FROM table_name_29 WHERE weight = 235###context:CREATE TABLE table_name_29 (player VARCHAR, weight VARCHAR)
###question:What is the height of the F who weighs less than 195?###answer:SELECT height FROM table_name_82 WHERE pos = "f" AND weight < 195###context:CREATE TABLE table_name_82 (height VARCHAR, pos VARCHAR, weight VARCHAR)
###question:What team does F Trey Gilder play for?###answer:SELECT team FROM table_name_63 WHERE pos = "f" AND player = "trey gilder"###context:CREATE TABLE table_name_63 (team VARCHAR, pos VARCHAR, player VARCHAR)
###question:What player plays for the Dakota Wizards?###answer:SELECT player FROM table_name_73 WHERE team = "dakota wizards"###context:CREATE TABLE table_name_73 (player VARCHAR, team VARCHAR)