combined_text
stringlengths 106
1.05k
|
---|
###question:What position did the player from Rice College play who was picked under 15?###answer:SELECT position FROM table_name_24 WHERE pick < 15 AND college = "rice"###context:CREATE TABLE table_name_24 (position VARCHAR, pick VARCHAR, college VARCHAR) |
###question:What position did pick 14 play?###answer:SELECT position FROM table_name_72 WHERE pick = 14###context:CREATE TABLE table_name_72 (position VARCHAR, pick VARCHAR) |
###question:What pick number did the linebacker from the denver broncos get?###answer:SELECT pick FROM table_name_34 WHERE position = "linebacker" AND team = "denver broncos"###context:CREATE TABLE table_name_34 (pick VARCHAR, position VARCHAR, team VARCHAR) |
###question:What college was the quarterback from?###answer:SELECT college FROM table_name_3 WHERE position = "quarterback"###context:CREATE TABLE table_name_3 (college VARCHAR, position VARCHAR) |
###question:What is the lowest number pick from san diego chargers?###answer:SELECT MIN(pick) FROM table_name_3 WHERE team = "san diego chargers"###context:CREATE TABLE table_name_3 (pick INTEGER, team VARCHAR) |
###question:Which Years has a Type/code of cubic centimetres (cuin) v8 ( m273 )?###answer:SELECT years FROM table_name_72 WHERE type_code = "cubic centimetres (cuin) v8 ( m273 )"###context:CREATE TABLE table_name_72 (years VARCHAR, type_code VARCHAR) |
###question:What is the total heat number of sun yang, who has a lane less than 2?###answer:SELECT COUNT(heat) FROM table_name_37 WHERE name = "sun yang" AND lane < 2###context:CREATE TABLE table_name_37 (heat VARCHAR, name VARCHAR, lane VARCHAR) |
###question:Who has a time of 3:50.90?###answer:SELECT name FROM table_name_35 WHERE time = "3:50.90"###context:CREATE TABLE table_name_35 (name VARCHAR, time VARCHAR) |
###question:What is the time of lane 3 in heat 5?###answer:SELECT time FROM table_name_47 WHERE heat = 5 AND lane = 3###context:CREATE TABLE table_name_47 (time VARCHAR, heat VARCHAR, lane VARCHAR) |
###question:What is the heat with a time of 3:45.57 in lane 3?###answer:SELECT heat FROM table_name_77 WHERE lane = 3 AND time = "3:45.57"###context:CREATE TABLE table_name_77 (heat VARCHAR, lane VARCHAR, time VARCHAR) |
###question:Who are the Rowers with a Time of 6:39.49?###answer:SELECT rowers FROM table_name_31 WHERE time = "6:39.49"###context:CREATE TABLE table_name_31 (rowers VARCHAR, time VARCHAR) |
###question:What is the Country of the rowers with a Rank of 4?###answer:SELECT country FROM table_name_11 WHERE rank = 4###context:CREATE TABLE table_name_11 (country VARCHAR, rank VARCHAR) |
###question:What counties mascot are the Red Ramblers?###answer:SELECT county FROM table_name_85 WHERE mascot = "red ramblers"###context:CREATE TABLE table_name_85 (county VARCHAR, mascot VARCHAR) |
###question:What is the IHSAA class when the county was 83 vermillion?###answer:SELECT ihsaa_class FROM table_name_40 WHERE county = "83 vermillion"###context:CREATE TABLE table_name_40 (ihsaa_class VARCHAR, county VARCHAR) |
###question:What is the enrollment number for Rockville?###answer:SELECT COUNT(enrollment) FROM table_name_27 WHERE location = "rockville"###context:CREATE TABLE table_name_27 (enrollment VARCHAR, location VARCHAR) |
###question:What is the Attendance of the game against Minnesota Vikings?###answer:SELECT COUNT(attendance) FROM table_name_87 WHERE opponent = "minnesota vikings"###context:CREATE TABLE table_name_87 (attendance VARCHAR, opponent VARCHAR) |
###question:what is the average score for søren kjeldsen?###answer:SELECT AVG(score) FROM table_name_71 WHERE player = "søren kjeldsen"###context:CREATE TABLE table_name_71 (score INTEGER, player VARCHAR) |
###question:What's the against of South Warrnambool when the draw is less than 0?###answer:SELECT SUM(against) FROM table_name_31 WHERE club = "south warrnambool" AND draws < 0###context:CREATE TABLE table_name_31 (against INTEGER, club VARCHAR, draws VARCHAR) |
###question:What's the smallest draw of Warrnambool when the against was less than 1299, more than 7 wins, and less than 2 losses?###answer:SELECT MIN(draws) FROM table_name_29 WHERE against < 1299 AND wins > 7 AND club = "warrnambool" AND losses < 2###context:CREATE TABLE table_name_29 (draws INTEGER, losses VARCHAR, club VARCHAR, against VARCHAR, wins VARCHAR) |
###question:What's the against when the draw was more than 0 and had 13 losses?###answer:SELECT COUNT(against) FROM table_name_47 WHERE losses = 13 AND draws > 0###context:CREATE TABLE table_name_47 (against VARCHAR, losses VARCHAR, draws VARCHAR) |
###question:What's the against when there were more than 2 losses, more than 3 wins, and draws more than 0?###answer:SELECT AVG(against) FROM table_name_86 WHERE losses > 2 AND wins > 3 AND draws > 0###context:CREATE TABLE table_name_86 (against INTEGER, draws VARCHAR, losses VARCHAR, wins VARCHAR) |
###question:What's the highest amount of losses of Camperdown when the against was less than 945?###answer:SELECT MAX(losses) FROM table_name_81 WHERE club = "camperdown" AND against < 945###context:CREATE TABLE table_name_81 (losses INTEGER, club VARCHAR, against VARCHAR) |
###question:what is the sum of league goals when the fa cup goals is more than 0?###answer:SELECT SUM(league_goals) FROM table_name_51 WHERE fa_cup_goals > 0###context:CREATE TABLE table_name_51 (league_goals INTEGER, fa_cup_goals INTEGER) |
###question:what is the average league cup goals when the league cup apps is 4, league goals is less than 4, fa cup apps is 1 and total apps is 35?###answer:SELECT AVG(league_cup_goals) FROM table_name_98 WHERE league_cup_apps = 4 AND league_goals < 4 AND fa_cup_apps = "1" AND total_apps = "35"###context:CREATE TABLE table_name_98 (league_cup_goals INTEGER, total_apps VARCHAR, fa_cup_apps VARCHAR, league_cup_apps VARCHAR, league_goals VARCHAR) |
###question:what is the average league cup goals when the position is df and total goals is more than 4?###answer:SELECT AVG(league_cup_goals) FROM table_name_78 WHERE position = "df" AND total_goals > 4###context:CREATE TABLE table_name_78 (league_cup_goals INTEGER, position VARCHAR, total_goals VARCHAR) |
###question:what is the average fa cup goals when the fa cup apps is 0, total goals is less than 1 and position is df?###answer:SELECT AVG(fa_cup_goals) FROM table_name_80 WHERE fa_cup_apps = "0" AND total_goals < 1 AND position = "df"###context:CREATE TABLE table_name_80 (fa_cup_goals INTEGER, position VARCHAR, fa_cup_apps VARCHAR, total_goals VARCHAR) |
###question:What year had a score of 0.586?###answer:SELECT COUNT(year) FROM table_name_67 WHERE score = "0.586"###context:CREATE TABLE table_name_67 (year VARCHAR, score VARCHAR) |
###question:What's the n Africa in 2012 with an N/A as the CPLP?###answer:SELECT n_africa_rank FROM table_name_54 WHERE year = 2012 AND cplp_rank = "n/a"###context:CREATE TABLE table_name_54 (n_africa_rank VARCHAR, year VARCHAR, cplp_rank VARCHAR) |
###question:What was the final venue for 82 delegates?###answer:SELECT finals_venue FROM table_name_23 WHERE number_of_delegates = "82"###context:CREATE TABLE table_name_23 (finals_venue VARCHAR, number_of_delegates VARCHAR) |
###question:Which Artist has a Record label of vertigo?###answer:SELECT artist FROM table_name_86 WHERE record_label = "vertigo"###context:CREATE TABLE table_name_86 (artist VARCHAR, record_label VARCHAR) |
###question:Who is the president when c-span 2009 is 21?###answer:SELECT president FROM table_name_57 WHERE c_span_2009 = "21"###context:CREATE TABLE table_name_57 (president VARCHAR, c_span_2009 VARCHAR) |
###question:what is c-span 2009 when times 2008** is 08?###answer:SELECT c_span_2009 FROM table_name_80 WHERE times_2008 * * = "08"###context:CREATE TABLE table_name_80 (c_span_2009 VARCHAR, times_2008 VARCHAR) |
###question:what is siena 2002 when the president is andrew jackson?###answer:SELECT siena_2002 FROM table_name_96 WHERE president = "andrew jackson"###context:CREATE TABLE table_name_96 (siena_2002 VARCHAR, president VARCHAR) |
###question:Which Location has a Home Ground of Mong kok stadium?###answer:SELECT location FROM table_name_14 WHERE home_ground = "mong kok stadium"###context:CREATE TABLE table_name_14 (location VARCHAR, home_ground VARCHAR) |
###question:Which club is in the First division?###answer:SELECT club FROM table_name_14 WHERE league_division = "first division"###context:CREATE TABLE table_name_14 (club VARCHAR, league_division VARCHAR) |
###question:What is the Home Ground with the Location n/a for the Club kcdrsc?###answer:SELECT home_ground FROM table_name_39 WHERE location = "n/a" AND club = "kcdrsc"###context:CREATE TABLE table_name_39 (home_ground VARCHAR, location VARCHAR, club VARCHAR) |
###question:What League/Division has a Location of n/a?###answer:SELECT league_division FROM table_name_29 WHERE location = "n/a"###context:CREATE TABLE table_name_29 (league_division VARCHAR, location VARCHAR) |
###question:What Location is in the second division and has 4th, third division (promoted) as its Position in 2012-13?###answer:SELECT location FROM table_name_67 WHERE league_division = "second division" AND position_in_2012_13 = "4th, third division (promoted)"###context:CREATE TABLE table_name_67 (location VARCHAR, league_division VARCHAR, position_in_2012_13 VARCHAR) |
###question:What was the rank of the team who raced at a time of 7:16.13?###answer:SELECT rank FROM table_name_76 WHERE time = "7:16.13"###context:CREATE TABLE table_name_76 (rank VARCHAR, time VARCHAR) |
###question:What is the total number of rank for the country of greece?###answer:SELECT COUNT(rank) FROM table_name_19 WHERE country = "greece"###context:CREATE TABLE table_name_19 (rank VARCHAR, country VARCHAR) |
###question:What country were the athletes where ranked smaller than 5 with notes listed as fb?###answer:SELECT country FROM table_name_67 WHERE rank < 5 AND notes = "fb"###context:CREATE TABLE table_name_67 (country VARCHAR, rank VARCHAR, notes VARCHAR) |
###question:What is the time for the race with the United States?###answer:SELECT time FROM table_name_63 WHERE country = "united states"###context:CREATE TABLE table_name_63 (time VARCHAR, country VARCHAR) |
###question:What shirt No has a Birth Date of April 12, 1986 (age27)?###answer:SELECT MIN(shirt_no) FROM table_name_63 WHERE birth_date = "april 12, 1986 (age27)"###context:CREATE TABLE table_name_63 (shirt_no INTEGER, birth_date VARCHAR) |
###question:What position that has a Height larger than 179, and Player is Ezgi Arslan?###answer:SELECT position FROM table_name_54 WHERE height > 179 AND player = "ezgi arslan"###context:CREATE TABLE table_name_54 (position VARCHAR, height VARCHAR, player VARCHAR) |
###question:What is the shirt no with a position of setter, a nationality of Italy, and height larger than 172?###answer:SELECT SUM(shirt_no) FROM table_name_11 WHERE position = "setter" AND nationality = "italy" AND height > 172###context:CREATE TABLE table_name_11 (shirt_no INTEGER, height VARCHAR, position VARCHAR, nationality VARCHAR) |
###question:What player that has a position of middle blocker, a Nationality of Turkey, and shirt no is 8?###answer:SELECT player FROM table_name_36 WHERE position = "middle blocker" AND nationality = "turkey" AND shirt_no = 8###context:CREATE TABLE table_name_36 (player VARCHAR, shirt_no VARCHAR, position VARCHAR, nationality VARCHAR) |
###question:What player that has a Nationality of Turkey, a Height smaller than 183, a shirt no smaller than 19, and a birth date of June 27, 1993 (age20)?###answer:SELECT player FROM table_name_90 WHERE nationality = "turkey" AND height < 183 AND shirt_no < 19 AND birth_date = "june 27, 1993 (age20)"###context:CREATE TABLE table_name_90 (player VARCHAR, birth_date VARCHAR, shirt_no VARCHAR, nationality VARCHAR, height VARCHAR) |
###question:Which nation won 29 gold medals?###answer:SELECT nation FROM table_name_3 WHERE gold = 29###context:CREATE TABLE table_name_3 (nation VARCHAR, gold VARCHAR) |
###question:What is the fewest number of bronze medals won among the nations ranked 12 that won no gold medals and 1 medal overall?###answer:SELECT MIN(bronze) FROM table_name_51 WHERE total = 1 AND rank = "12" AND gold < 1###context:CREATE TABLE table_name_51 (bronze INTEGER, gold VARCHAR, total VARCHAR, rank VARCHAR) |
###question:What is the FCC info for the translator with frequency over 89.3MHz and licensd in Portales, New Mexico?###answer:SELECT fcc_info FROM table_name_98 WHERE frequency_mhz > 89.3 AND city_of_license = "portales, new mexico"###context:CREATE TABLE table_name_98 (fcc_info VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR) |
###question:Which ship was launched from Devonport, Devon?###answer:SELECT ship FROM table_name_30 WHERE location = "devonport, devon"###context:CREATE TABLE table_name_30 (ship VARCHAR, location VARCHAR) |
###question:What country was the Pegasus, build by Royal Dockyard, from?###answer:SELECT country FROM table_name_41 WHERE builder = "royal dockyard" AND ship = "pegasus"###context:CREATE TABLE table_name_41 (country VARCHAR, builder VARCHAR, ship VARCHAR) |
###question:Who was the builder of Gannet from the United Kingdom?###answer:SELECT builder FROM table_name_60 WHERE country = "united kingdom" AND ship = "gannet"###context:CREATE TABLE table_name_60 (builder VARCHAR, country VARCHAR, ship VARCHAR) |
###question:Who was the builder of Nor?###answer:SELECT builder FROM table_name_12 WHERE ship = "nor"###context:CREATE TABLE table_name_12 (builder VARCHAR, ship VARCHAR) |
###question:Who was the builder of Brage from Norway?###answer:SELECT builder FROM table_name_37 WHERE country = "norway" AND ship = "brage"###context:CREATE TABLE table_name_37 (builder VARCHAR, country VARCHAR, ship VARCHAR) |
###question:What country was Brage, built by karljohansverns verft, from?###answer:SELECT country FROM table_name_23 WHERE builder = "karljohansverns verft" AND ship = "brage"###context:CREATE TABLE table_name_23 (country VARCHAR, builder VARCHAR, ship VARCHAR) |
###question:Which Silver has a Total of 11, and a Gold smaller than 8?###answer:SELECT MIN(silver) FROM table_name_31 WHERE total = 11 AND gold < 8###context:CREATE TABLE table_name_31 (silver INTEGER, total VARCHAR, gold VARCHAR) |
###question:Which Silver has a Total of 1, and a Rank of 12?###answer:SELECT MIN(silver) FROM table_name_37 WHERE total = 1 AND rank = "12"###context:CREATE TABLE table_name_37 (silver INTEGER, total VARCHAR, rank VARCHAR) |
###question:Which IHSAA Football Class has a School of wood memorial?###answer:SELECT ihsaa_football_class FROM table_name_71 WHERE school = "wood memorial"###context:CREATE TABLE table_name_71 (ihsaa_football_class VARCHAR, school VARCHAR) |
###question:Which IHSAA Football Class has a County of 77 sullivan, and a School of union dugger?###answer:SELECT ihsaa_football_class FROM table_name_14 WHERE county = "77 sullivan" AND school = "union dugger"###context:CREATE TABLE table_name_14 (ihsaa_football_class VARCHAR, county VARCHAR, school VARCHAR) |
###question:Which IHSAA Football Class has an Enrollment of 406?###answer:SELECT ihsaa_football_class FROM table_name_17 WHERE enrollment = 406###context:CREATE TABLE table_name_17 (ihsaa_football_class VARCHAR, enrollment VARCHAR) |
###question:Which Size has a County of 62 perry?###answer:SELECT MAX(size) FROM table_name_69 WHERE county = "62 perry"###context:CREATE TABLE table_name_69 (size INTEGER, county VARCHAR) |
###question:Which IHSAA Class has a Size larger than 511?###answer:SELECT ihsaa_class FROM table_name_84 WHERE size > 511###context:CREATE TABLE table_name_84 (ihsaa_class VARCHAR, size INTEGER) |
###question:Which IHSAA Class has a School of mitchell?###answer:SELECT ihsaa_class FROM table_name_4 WHERE school = "mitchell"###context:CREATE TABLE table_name_4 (ihsaa_class VARCHAR, school VARCHAR) |
###question:Which County has a Size larger than 258, and a Mascot of commodores?###answer:SELECT county FROM table_name_95 WHERE size > 258 AND mascot = "commodores"###context:CREATE TABLE table_name_95 (county VARCHAR, size VARCHAR, mascot VARCHAR) |
###question:What was her place in the lineup on match 2?###answer:SELECT lineup FROM table_name_33 WHERE match = "2"###context:CREATE TABLE table_name_33 (lineup VARCHAR, match VARCHAR) |
###question:What is the record of the game played on 2/17/1974?###answer:SELECT record FROM table_name_55 WHERE date = "2/17/1974"###context:CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR) |
###question:Which stadium had the opposition of 79,122?###answer:SELECT stadium FROM table_name_91 WHERE opposition = "79,122"###context:CREATE TABLE table_name_91 (stadium VARCHAR, opposition VARCHAR) |
###question:What are the notes of the number 1 rank?###answer:SELECT notes FROM table_name_52 WHERE rank = 1###context:CREATE TABLE table_name_52 (notes VARCHAR, rank VARCHAR) |
###question:What's the rank if the time was 5:54.57 and FB in notes?###answer:SELECT rank FROM table_name_30 WHERE notes = "fb" AND time = "5:54.57"###context:CREATE TABLE table_name_30 (rank VARCHAR, notes VARCHAR, time VARCHAR) |
###question:Who are the rowers with the time of 5:54.57?###answer:SELECT rowers FROM table_name_96 WHERE time = "5:54.57"###context:CREATE TABLE table_name_96 (rowers VARCHAR, time VARCHAR) |
###question:What are the notes of the United States?###answer:SELECT notes FROM table_name_31 WHERE country = "united states"###context:CREATE TABLE table_name_31 (notes VARCHAR, country VARCHAR) |
###question:What is the gold for a bronze larger than 1, with a total smaller than 10, and a silver of 3?###answer:SELECT gold FROM table_name_28 WHERE bronze > 1 AND total < 10 AND silver = 3###context:CREATE TABLE table_name_28 (gold VARCHAR, silver VARCHAR, bronze VARCHAR, total VARCHAR) |
###question:What is the average total when the silver is larger than 2, and a gold larger than 1, and a nation of total?###answer:SELECT AVG(total) FROM table_name_23 WHERE silver > 2 AND gold > 1 AND nation = "total"###context:CREATE TABLE table_name_23 (total INTEGER, nation VARCHAR, silver VARCHAR, gold VARCHAR) |
###question:When the rank is 11, and bronze a smaller than 1 what is the lowest total?###answer:SELECT MIN(total) FROM table_name_5 WHERE rank = "11" AND bronze < 1###context:CREATE TABLE table_name_5 (total INTEGER, rank VARCHAR, bronze VARCHAR) |
###question:What was the A Score when the B Score was 9.05, and position was larger than 6?###answer:SELECT AVG(a_score) FROM table_name_50 WHERE b_score = 9.05 AND position > 6###context:CREATE TABLE table_name_50 (a_score INTEGER, b_score VARCHAR, position VARCHAR) |
###question:What is the total when the B Score was 9.15 for Cheng Fei ( chn )?###answer:SELECT AVG(total) FROM table_name_70 WHERE b_score = 9.15 AND gymnast = "cheng fei ( chn )"###context:CREATE TABLE table_name_70 (total INTEGER, b_score VARCHAR, gymnast VARCHAR) |
###question:What was their position when the score of B was less than 9.05, a total was 15.275, and A Score larger than 6.4?###answer:SELECT AVG(position) FROM table_name_47 WHERE b_score < 9.05 AND total = 15.275 AND a_score > 6.4###context:CREATE TABLE table_name_47 (position INTEGER, a_score VARCHAR, b_score VARCHAR, total VARCHAR) |
###question:What is their position when the b score is more than 8.975 for Ekaterina Kramarenko ( rus )?###answer:SELECT position FROM table_name_57 WHERE b_score > 8.975 AND gymnast = "ekaterina kramarenko ( rus )"###context:CREATE TABLE table_name_57 (position VARCHAR, b_score VARCHAR, gymnast VARCHAR) |
###question:What year had Third-Person Shooter?###answer:SELECT AVG(year) FROM table_name_16 WHERE genre = "third-person shooter"###context:CREATE TABLE table_name_16 (year INTEGER, genre VARCHAR) |
###question:What year was Portal?###answer:SELECT MAX(year) FROM table_name_93 WHERE game = "portal"###context:CREATE TABLE table_name_93 (year INTEGER, game VARCHAR) |
###question:Who was the developer(s) of the genre Adventure?###answer:SELECT developer_s_ FROM table_name_22 WHERE genre = "adventure"###context:CREATE TABLE table_name_22 (developer_s_ VARCHAR, genre VARCHAR) |
###question:What's the platform of the genre RPG?###answer:SELECT platform_s_ FROM table_name_80 WHERE genre = "rpg"###context:CREATE TABLE table_name_80 (platform_s_ VARCHAR, genre VARCHAR) |
###question:What's the genre of developer(s) Lionhead Studios?###answer:SELECT genre FROM table_name_41 WHERE developer_s_ = "lionhead studios"###context:CREATE TABLE table_name_41 (genre VARCHAR, developer_s_ VARCHAR) |
###question:What's year was the genre Adventure?###answer:SELECT year FROM table_name_57 WHERE genre = "adventure"###context:CREATE TABLE table_name_57 (year VARCHAR, genre VARCHAR) |
###question:When was Cardinal-Deacon of S. Giorgio in Velabro elevated?###answer:SELECT elevated FROM table_name_75 WHERE cardinalatial_order_and_title = "cardinal-deacon of s. giorgio in velabro"###context:CREATE TABLE table_name_75 (elevated VARCHAR, cardinalatial_order_and_title VARCHAR) |
###question:What is the Cardinalatial order and title that Pedro Martínez de Luna y Gotor elevated?###answer:SELECT cardinalatial_order_and_title FROM table_name_84 WHERE elector = "pedro martínez de luna y gotor"###context:CREATE TABLE table_name_84 (cardinalatial_order_and_title VARCHAR, elector VARCHAR) |
###question:What is the nationality of the elector withe the Cardinalatial order and title of Cardinal-Priest of Ss. XII Apostoli?###answer:SELECT nationality FROM table_name_49 WHERE cardinalatial_order_and_title = "cardinal-priest of ss. xii apostoli"###context:CREATE TABLE table_name_49 (nationality VARCHAR, cardinalatial_order_and_title VARCHAR) |
###question:What Tournament had Jack Nicklaus as Runner(s)-up?###answer:SELECT tournament FROM table_name_47 WHERE runner_s__up = "jack nicklaus"###context:CREATE TABLE table_name_47 (tournament VARCHAR, runner_s__up VARCHAR) |
###question:What is the Date of the Tournament with a Winning score of −9 (65-71-68-67=271)?###answer:SELECT date FROM table_name_55 WHERE winning_score = −9(65 - 71 - 68 - 67 = 271)###context:CREATE TABLE table_name_55 (date VARCHAR, winning_score VARCHAR) |
###question:What is the Winning Score of the Tournament with Jack Nicklaus as Runner(s)-up?###answer:SELECT winning_score FROM table_name_15 WHERE runner_s__up = "jack nicklaus"###context:CREATE TABLE table_name_15 (winning_score VARCHAR, runner_s__up VARCHAR) |
###question:What is the Runner(s)-up of the Kemper Open Tournament?###answer:SELECT runner_s__up FROM table_name_70 WHERE tournament = "kemper open"###context:CREATE TABLE table_name_70 (runner_s__up VARCHAR, tournament VARCHAR) |
###question:What week has December 19, 2004 as the date?###answer:SELECT week FROM table_name_33 WHERE date = "december 19, 2004"###context:CREATE TABLE table_name_33 (week VARCHAR, date VARCHAR) |
###question:What is the highest week that has espn 8:30pm as the TV time?###answer:SELECT MAX(week) FROM table_name_74 WHERE tv_time = "espn 8:30pm"###context:CREATE TABLE table_name_74 (week INTEGER, tv_time VARCHAR) |
###question:What result has miami dolphins as the opponent?###answer:SELECT result FROM table_name_36 WHERE opponent = "miami dolphins"###context:CREATE TABLE table_name_36 (result VARCHAR, opponent VARCHAR) |
###question:What is the Time of the swimmer from Chinese Taipei in Heat 3?###answer:SELECT time FROM table_name_88 WHERE heat = 3 AND lane > 3 AND nationality = "chinese taipei"###context:CREATE TABLE table_name_88 (time VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR) |
###question:What's the Dolphin Points when the attendance was less than 69,313 and had an opponent of the Buffalo Bills?###answer:SELECT AVG(dolphins_points) FROM table_name_88 WHERE opponent = "buffalo bills" AND attendance < 69 OFFSET 313###context:CREATE TABLE table_name_88 (dolphins_points INTEGER, opponent VARCHAR, attendance VARCHAR) |
###question:What's the game with an attendance of 71,962?###answer:SELECT MIN(game) FROM table_name_53 WHERE attendance = 71 OFFSET 962###context:CREATE TABLE table_name_53 (game INTEGER, attendance VARCHAR) |
###question:What was the week 12 standing for the housemate that nominated Deepak P Rahul in week 1 and Amit Carol in week 3?###answer:SELECT Final AS week_12 FROM table_name_8 WHERE week_1 = "deepak p rahul" AND week_3 = "amit carol"###context:CREATE TABLE table_name_8 (Final VARCHAR, week_1 VARCHAR, week_3 VARCHAR) |
###question:Who did the housemate that nominated Kashmera Rakhi in week 3 and Amit Bobby in week 1 nominate in week 6?###answer:SELECT week_6 FROM table_name_60 WHERE week_3 = "kashmera rakhi" AND week_1 = "amit bobby"###context:CREATE TABLE table_name_60 (week_6 VARCHAR, week_3 VARCHAR, week_1 VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.