combined_text
stringlengths 106
1.05k
|
---|
###question:Which position did the drafted player affiliated with UCLA play?###answer:SELECT position FROM table_name_85 WHERE affiliation = "ucla"###context:CREATE TABLE table_name_85 (position VARCHAR, affiliation VARCHAR) |
###question:Which MLS tea, drafted a player affilaited with the university of california?###answer:SELECT mls_team FROM table_name_29 WHERE affiliation = "university of california"###context:CREATE TABLE table_name_29 (mls_team VARCHAR, affiliation VARCHAR) |
###question:What rank does the person participating in American Civil war and indian wars?###answer:SELECT rank FROM table_name_65 WHERE active_service = "american civil war and indian wars"###context:CREATE TABLE table_name_65 (rank VARCHAR, active_service VARCHAR) |
###question:When did the Tournament of the Tour Championship take place?###answer:SELECT date FROM table_name_10 WHERE tournament = "the tour championship"###context:CREATE TABLE table_name_10 (date VARCHAR, tournament VARCHAR) |
###question:Name the average number of seasons for Prva HNL of 17###answer:SELECT AVG(number_of_seasons_in_top_division) FROM table_name_65 WHERE number_of_seasons_in_prva_hnl = 17###context:CREATE TABLE table_name_65 (number_of_seasons_in_top_division INTEGER, number_of_seasons_in_prva_hnl VARCHAR) |
###question:Name the least number of seasons in top division with position in 2012-13 of 001 1st###answer:SELECT MIN(number_of_seasons_in_top_division) FROM table_name_46 WHERE position_in_2012_13 = "001 1st"###context:CREATE TABLE table_name_46 (number_of_seasons_in_top_division INTEGER, position_in_2012_13 VARCHAR) |
###question:Which first was born on 5 february 1979?###answer:SELECT first FROM table_name_30 WHERE dob = "5 february 1979"###context:CREATE TABLE table_name_30 (first VARCHAR, dob VARCHAR) |
###question:Which First has a Position of c, and Bats of l?###answer:SELECT first FROM table_name_62 WHERE position = "c" AND bats = "l"###context:CREATE TABLE table_name_62 (first VARCHAR, position VARCHAR, bats VARCHAR) |
###question:Which First has a Surname of searle?###answer:SELECT first FROM table_name_42 WHERE surname = "searle"###context:CREATE TABLE table_name_42 (first VARCHAR, surname VARCHAR) |
###question:Which Surname has Throws of r, and a Position of p, and a DOB of 26 april 1989?###answer:SELECT surname FROM table_name_64 WHERE throws = "r" AND position = "p" AND dob = "26 april 1989"###context:CREATE TABLE table_name_64 (surname VARCHAR, dob VARCHAR, throws VARCHAR, position VARCHAR) |
###question:Which DOB has a First of david, and Throws of l, and a Position of if?###answer:SELECT dob FROM table_name_56 WHERE first = "david" AND throws = "l" AND position = "if"###context:CREATE TABLE table_name_56 (dob VARCHAR, position VARCHAR, first VARCHAR, throws VARCHAR) |
###question:How many throws does PJ have?###answer:SELECT throws FROM table_name_39 WHERE first = "pj"###context:CREATE TABLE table_name_39 (throws VARCHAR, first VARCHAR) |
###question:Televoting of 9, and a Jury smaller than 10 had what sum of draw?###answer:SELECT SUM(draw) FROM table_name_24 WHERE televoting = 9 AND jury < 10###context:CREATE TABLE table_name_24 (draw INTEGER, televoting VARCHAR, jury VARCHAR) |
###question:Jury larger than 6, and a Artist of zhenya rasskazova, and a Draw larger than 9 had what sum of points?###answer:SELECT SUM(points) FROM table_name_17 WHERE jury > 6 AND artist = "zhenya rasskazova" AND draw > 9###context:CREATE TABLE table_name_17 (points INTEGER, draw VARCHAR, jury VARCHAR, artist VARCHAR) |
###question:Televoting smaller than 2 had what highest draw?###answer:SELECT MAX(draw) FROM table_name_25 WHERE televoting < 2###context:CREATE TABLE table_name_25 (draw INTEGER, televoting INTEGER) |
###question:Who was the opponent when Hoeft (19-14) took the loss?###answer:SELECT opponent FROM table_name_1 WHERE loss = "hoeft (19-14)"###context:CREATE TABLE table_name_1 (opponent VARCHAR, loss VARCHAR) |
###question:What was the score of the game that led to an 80-63 record?###answer:SELECT score FROM table_name_82 WHERE record = "80-63"###context:CREATE TABLE table_name_82 (score VARCHAR, record VARCHAR) |
###question:Who was the opponent when Brown (9-5) took the loss?###answer:SELECT opponent FROM table_name_62 WHERE loss = "brown (9-5)"###context:CREATE TABLE table_name_62 (opponent VARCHAR, loss VARCHAR) |
###question:What was Performer 1's name who performed with Sandi Toksvig as Performer 3 and Mike McShane as Performer 4?###answer:SELECT performer_1 FROM table_name_13 WHERE performer_3 = "sandi toksvig" AND performer_4 = "mike mcshane"###context:CREATE TABLE table_name_13 (performer_1 VARCHAR, performer_3 VARCHAR, performer_4 VARCHAR) |
###question:What was Performer 4's name when Performer 3 was Ryan Stiles on episode 14?###answer:SELECT performer_4 FROM table_name_14 WHERE performer_3 = "ryan stiles" AND episode = 14###context:CREATE TABLE table_name_14 (performer_4 VARCHAR, performer_3 VARCHAR, episode VARCHAR) |
###question:How many points have @ new york islanders as the opponent, with a game greater than 35?###answer:SELECT COUNT(points) FROM table_name_64 WHERE opponent = "@ new york islanders" AND game > 35###context:CREATE TABLE table_name_64 (points VARCHAR, opponent VARCHAR, game VARCHAR) |
###question:What record has a december less than 6, points less than 38, and pittsburgh penguins as the opponent?###answer:SELECT record FROM table_name_40 WHERE december < 6 AND points < 38 AND opponent = "pittsburgh penguins"###context:CREATE TABLE table_name_40 (record VARCHAR, opponent VARCHAR, december VARCHAR, points VARCHAR) |
###question:When the county is Carroll what is the lowest population?###answer:SELECT MIN(population) FROM table_name_50 WHERE county = "carroll"###context:CREATE TABLE table_name_50 (population INTEGER, county VARCHAR) |
###question:When the Per capita income is $29,194, what is the average population?###answer:SELECT AVG(population) FROM table_name_70 WHERE per_capita_income = "$29,194"###context:CREATE TABLE table_name_70 (population INTEGER, per_capita_income VARCHAR) |
###question:Which year has a railway class of 250?###answer:SELECT year FROM table_name_19 WHERE class = "250"###context:CREATE TABLE table_name_19 (year VARCHAR, class VARCHAR) |
###question:Which works number has a class of 15th and year of 1940?###answer:SELECT works_no FROM table_name_69 WHERE class = "15th" AND year = "1940"###context:CREATE TABLE table_name_69 (works_no VARCHAR, class VARCHAR, year VARCHAR) |
###question:Which builder has a railway of Rhodesia Railways?###answer:SELECT builder FROM table_name_18 WHERE railway = "rhodesia railways"###context:CREATE TABLE table_name_18 (builder VARCHAR, railway VARCHAR) |
###question:Which railway has a class of 250 and year 1936?###answer:SELECT railway FROM table_name_76 WHERE class = "250" AND year = "1936"###context:CREATE TABLE table_name_76 (railway VARCHAR, class VARCHAR, year VARCHAR) |
###question:which week had an attendance of 53,677?###answer:SELECT COUNT(week) FROM table_name_43 WHERE attendance = "53,677"###context:CREATE TABLE table_name_43 (week VARCHAR, attendance VARCHAR) |
###question:which team had a bye week?###answer:SELECT opponent FROM table_name_21 WHERE attendance = "bye"###context:CREATE TABLE table_name_21 (opponent VARCHAR, attendance VARCHAR) |
###question:Which Date has Points smaller than 85 and a Game # of 74?###answer:SELECT date FROM table_name_36 WHERE points < 85 AND game__number = 74###context:CREATE TABLE table_name_36 (date VARCHAR, points VARCHAR, game__number VARCHAR) |
###question:What is listed for Vistor that has a Game # that is smaller than 67 and has a Home listed as Buffalo?###answer:SELECT visitor FROM table_name_20 WHERE game__number < 67 AND home = "buffalo"###context:CREATE TABLE table_name_20 (visitor VARCHAR, game__number VARCHAR, home VARCHAR) |
###question:What Date has a Home listed as Calgary?###answer:SELECT date FROM table_name_48 WHERE home = "calgary"###context:CREATE TABLE table_name_48 (date VARCHAR, home VARCHAR) |
###question:What Score has a Record of 35-28-6?###answer:SELECT score FROM table_name_65 WHERE record = "35-28-6"###context:CREATE TABLE table_name_65 (score VARCHAR, record VARCHAR) |
###question:What Date has Points smaller than 80, Home of Los Angeles, and a Visitor of Pittsburgh?###answer:SELECT date FROM table_name_76 WHERE points < 80 AND home = "los angeles" AND visitor = "pittsburgh"###context:CREATE TABLE table_name_76 (date VARCHAR, visitor VARCHAR, points VARCHAR, home VARCHAR) |
###question:Which Week 10 Nov 2 has a Week 14 Nov 30 of penn state (11-1)?###answer:SELECT week_10_nov_2 FROM table_name_4 WHERE week_14_nov_30 = "penn state (11-1)"###context:CREATE TABLE table_name_4 (week_10_nov_2 VARCHAR, week_14_nov_30 VARCHAR) |
###question:Which Week 7 Oct 12 has a Week 11 Nov 9 of week 11 nov 9?###answer:SELECT week_7_oct_12 FROM table_name_15 WHERE week_11_nov_9 = "week 11 nov 9"###context:CREATE TABLE table_name_15 (week_7_oct_12 VARCHAR, week_11_nov_9 VARCHAR) |
###question:Which Week 7 Oct 12 has a Week 9 Oct 26 of tulsa (7-0)?###answer:SELECT week_7_oct_12 FROM table_name_79 WHERE week_9_oct_26 = "tulsa (7-0)"###context:CREATE TABLE table_name_79 (week_7_oct_12 VARCHAR, week_9_oct_26 VARCHAR) |
###question:Which Week 10 Nov 2 has a Week 9 Oct 26 of lsu (5-2)?###answer:SELECT week_10_nov_2 FROM table_name_86 WHERE week_9_oct_26 = "lsu (5-2)"###context:CREATE TABLE table_name_86 (week_10_nov_2 VARCHAR, week_9_oct_26 VARCHAR) |
###question:Which Week 14 Nov 30 has a Week 6 Oct 5 of michigan state (5-1)?###answer:SELECT week_14_nov_30 FROM table_name_1 WHERE week_6_oct_5 = "michigan state (5-1)"###context:CREATE TABLE table_name_1 (week_14_nov_30 VARCHAR, week_6_oct_5 VARCHAR) |
###question:Which Week 13 Nov 23 has a Week 6 Oct 5 of oklahoma state (5-0)?###answer:SELECT week_13_nov_23 FROM table_name_73 WHERE week_6_oct_5 = "oklahoma state (5-0)"###context:CREATE TABLE table_name_73 (week_13_nov_23 VARCHAR, week_6_oct_5 VARCHAR) |
###question:What was the displacement having a torque of n·m (lb·ft) @ 3000 rpm?###answer:SELECT displacement FROM table_name_16 WHERE torque = "n·m (lb·ft) @ 3000 rpm"###context:CREATE TABLE table_name_16 (displacement VARCHAR, torque VARCHAR) |
###question:Which engine had a 48kw (65 ps) @ 5600 rpm power?###answer:SELECT engine FROM table_name_61 WHERE power = "48kw (65 ps) @ 5600 rpm"###context:CREATE TABLE table_name_61 (engine VARCHAR, power VARCHAR) |
###question:Which model had a power of 66kw (90 ps) @ 6250 rpm?###answer:SELECT model FROM table_name_94 WHERE power = "66kw (90 ps) @ 6250 rpm"###context:CREATE TABLE table_name_94 (model VARCHAR, power VARCHAR) |
###question:Which of the engines has a displacement of 1,585 cc, with a model number of 90i?###answer:SELECT engine FROM table_name_78 WHERE displacement = "1,585 cc" AND model = "90i"###context:CREATE TABLE table_name_78 (engine VARCHAR, displacement VARCHAR, model VARCHAR) |
###question:Who was the opponent at memorial stadium?###answer:SELECT opponent FROM table_name_25 WHERE venue = "memorial stadium"###context:CREATE TABLE table_name_25 (opponent VARCHAR, venue VARCHAR) |
###question:Which Height has a Player of mike bibby?###answer:SELECT height FROM table_name_43 WHERE player = "mike bibby"###context:CREATE TABLE table_name_43 (height VARCHAR, player VARCHAR) |
###question:Which Pos has a First round smaller than 10?###answer:SELECT pos FROM table_name_11 WHERE first_round < 10###context:CREATE TABLE table_name_11 (pos VARCHAR, first_round INTEGER) |
###question:How many points have a loss less than 5, and 0 for draws?###answer:SELECT COUNT(points) FROM table_name_96 WHERE losses < 5 AND draws = 0###context:CREATE TABLE table_name_96 (points VARCHAR, losses VARCHAR, draws VARCHAR) |
###question:What is the lowest points that has w-2 (w-league) as the league, and draws greater than 2?###answer:SELECT MIN(points) FROM table_name_23 WHERE league = "w-2 (w-league)" AND draws > 2###context:CREATE TABLE table_name_23 (points INTEGER, league VARCHAR, draws VARCHAR) |
###question:What is the lowest wins that has a year prior to 1999, with draws greater than 1, and points greater than 17?###answer:SELECT MIN(wins) FROM table_name_11 WHERE year < 1999 AND draws > 1 AND points > 17###context:CREATE TABLE table_name_11 (wins INTEGER, points VARCHAR, year VARCHAR, draws VARCHAR) |
###question:How many losses have a year later than 2001?###answer:SELECT SUM(losses) FROM table_name_52 WHERE year > 2001###context:CREATE TABLE table_name_52 (losses INTEGER, year INTEGER) |
###question:Which county includes Himco Dump?###answer:SELECT county FROM table_name_80 WHERE name = "himco dump"###context:CREATE TABLE table_name_80 (county VARCHAR, name VARCHAR) |
###question:Drawn of 0, and a Games larger than 5 has what amount of highest points?###answer:SELECT MAX(points) FROM table_name_62 WHERE drawn = 0 AND games > 5###context:CREATE TABLE table_name_62 (points INTEGER, drawn VARCHAR, games VARCHAR) |
###question:Lost larger than 4 is what highest drawn?###answer:SELECT MAX(drawn) FROM table_name_75 WHERE lost > 4###context:CREATE TABLE table_name_75 (drawn INTEGER, lost INTEGER) |
###question:Points difference of 18 - 33, and a Points smaller than 4 is the total of what sum of games?###answer:SELECT SUM(games) FROM table_name_10 WHERE points_difference = "18 - 33" AND points < 4###context:CREATE TABLE table_name_10 (games INTEGER, points_difference VARCHAR, points VARCHAR) |
###question:Which First elected is the highest one that has a Party of dem, and a District larger than 24, and a Home city/town of berlin?###answer:SELECT MAX(first_elected) FROM table_name_73 WHERE party = "dem" AND district > 24 AND home_city_town = "berlin"###context:CREATE TABLE table_name_73 (first_elected INTEGER, home_city_town VARCHAR, party VARCHAR, district VARCHAR) |
###question:What record has pittsburgh as the visitor, and November 23 as the date?###answer:SELECT record FROM table_name_45 WHERE visitor = "pittsburgh" AND date = "november 23"###context:CREATE TABLE table_name_45 (record VARCHAR, visitor VARCHAR, date VARCHAR) |
###question:What record has points less than 16, and detroit as the home?###answer:SELECT record FROM table_name_13 WHERE points < 16 AND home = "detroit"###context:CREATE TABLE table_name_13 (record VARCHAR, points VARCHAR, home VARCHAR) |
###question:How many points have pittsburgh as the visitor, and philadelphia as the home?###answer:SELECT COUNT(points) FROM table_name_38 WHERE visitor = "pittsburgh" AND home = "philadelphia"###context:CREATE TABLE table_name_38 (points VARCHAR, visitor VARCHAR, home VARCHAR) |
###question:What points have pittsburgh as the home, and November 29 as the date?###answer:SELECT points FROM table_name_30 WHERE home = "pittsburgh" AND date = "november 29"###context:CREATE TABLE table_name_30 (points VARCHAR, home VARCHAR, date VARCHAR) |
###question:What was the attendance at the game on December 11, 1966?###answer:SELECT attendance FROM table_name_66 WHERE date = "december 11, 1966"###context:CREATE TABLE table_name_66 (attendance VARCHAR, date VARCHAR) |
###question:What was the latest week with a result of l 14-3?###answer:SELECT MAX(week) FROM table_name_83 WHERE result = "l 14-3"###context:CREATE TABLE table_name_83 (week INTEGER, result VARCHAR) |
###question:What was the total number of weeks with a date of bye?###answer:SELECT COUNT(week) FROM table_name_14 WHERE date = "bye"###context:CREATE TABLE table_name_14 (week VARCHAR, date VARCHAR) |
###question:Who was the opponent at the game with a result of W 26-20?###answer:SELECT opponent FROM table_name_20 WHERE result = "w 26-20"###context:CREATE TABLE table_name_20 (opponent VARCHAR, result VARCHAR) |
###question:What was the attendance at the week 2 game?###answer:SELECT attendance FROM table_name_89 WHERE week = 2###context:CREATE TABLE table_name_89 (attendance VARCHAR, week VARCHAR) |
###question:Before 1981, how many Points did Team Suzuki have with less than 0 Wins?###answer:SELECT SUM(points) FROM table_name_96 WHERE team = "suzuki" AND year < 1981 AND wins < 0###context:CREATE TABLE table_name_96 (points INTEGER, wins VARCHAR, team VARCHAR, year VARCHAR) |
###question:After 1986, how many Wins did Lucky Strike Yamaha Team with less than 6 Points have?###answer:SELECT MIN(wins) FROM table_name_51 WHERE year > 1986 AND team = "lucky strike yamaha" AND points < 6###context:CREATE TABLE table_name_51 (wins INTEGER, points VARCHAR, year VARCHAR, team VARCHAR) |
###question:In what Year did the RG500 Machine have more than 17 Points?###answer:SELECT COUNT(year) FROM table_name_84 WHERE machine = "rg500" AND points > 17###context:CREATE TABLE table_name_84 (year VARCHAR, machine VARCHAR, points VARCHAR) |
###question:What were the least Wins in 1988?###answer:SELECT MIN(wins) FROM table_name_19 WHERE year = 1988###context:CREATE TABLE table_name_19 (wins INTEGER, year VARCHAR) |
###question:How many points did the Flyers have against the New York Islanders with a February bigger than 12, and a game smaller than 60?###answer:SELECT COUNT(points) FROM table_name_79 WHERE february > 12 AND game < 60 AND opponent = "new york islanders"###context:CREATE TABLE table_name_79 (points VARCHAR, opponent VARCHAR, february VARCHAR, game VARCHAR) |
###question:What is the location of the tournament on Feb 10?###answer:SELECT location FROM table_name_68 WHERE date = "feb 10"###context:CREATE TABLE table_name_68 (location VARCHAR, date VARCHAR) |
###question:What is the date of the Kmart greater greensboro open in North Carolina?###answer:SELECT date FROM table_name_65 WHERE location = "north carolina" AND tournament = "kmart greater greensboro open"###context:CREATE TABLE table_name_65 (date VARCHAR, location VARCHAR, tournament VARCHAR) |
###question:Who is the winner of the H.E.B. Texas open?###answer:SELECT winner FROM table_name_76 WHERE tournament = "h.e.b. texas open"###context:CREATE TABLE table_name_76 (winner VARCHAR, tournament VARCHAR) |
###question:What is the average weight of Jeremy Case, who plays guard?###answer:SELECT AVG(weight) FROM table_name_63 WHERE position = "guard" AND name = "jeremy case"###context:CREATE TABLE table_name_63 (weight INTEGER, position VARCHAR, name VARCHAR) |
###question:What is the position of the player from New York City, NY?###answer:SELECT position FROM table_name_56 WHERE home_town = "new york city, ny"###context:CREATE TABLE table_name_56 (position VARCHAR, home_town VARCHAR) |
###question:What year is guard Mario Chalmers?###answer:SELECT year FROM table_name_53 WHERE position = "guard" AND name = "mario chalmers"###context:CREATE TABLE table_name_53 (year VARCHAR, position VARCHAR, name VARCHAR) |
###question:What was japan's score?###answer:SELECT score FROM table_name_51 WHERE country = "japan"###context:CREATE TABLE table_name_51 (score VARCHAR, country VARCHAR) |
###question:Which Venue has a Country of england, and a Champion of alison nicholas?###answer:SELECT venue FROM table_name_66 WHERE country = "england" AND champion = "alison nicholas"###context:CREATE TABLE table_name_66 (venue VARCHAR, country VARCHAR, champion VARCHAR) |
###question:Which Country has a Year larger than 1978, and a Score of 295, and a Venue of lindrick golf club?###answer:SELECT country FROM table_name_16 WHERE year > 1978 AND score = "295" AND venue = "lindrick golf club"###context:CREATE TABLE table_name_16 (country VARCHAR, venue VARCHAR, year VARCHAR, score VARCHAR) |
###question:what player scored 9/1###answer:SELECT jockey FROM table_name_35 WHERE odds = "9/1"###context:CREATE TABLE table_name_35 (jockey VARCHAR, odds VARCHAR) |
###question:On what date was the score 6–4, 7–5?###answer:SELECT date FROM table_name_69 WHERE score = "6–4, 7–5"###context:CREATE TABLE table_name_69 (date VARCHAR, score VARCHAR) |
###question:Who was the opponent with an outcome runner-up on November 15, 2010?###answer:SELECT opponent FROM table_name_79 WHERE outcome = "runner-up" AND date = "november 15, 2010"###context:CREATE TABLE table_name_79 (opponent VARCHAR, outcome VARCHAR, date VARCHAR) |
###question:What was the outcome for Rik de Voest as opponent?###answer:SELECT outcome FROM table_name_98 WHERE opponent = "rik de voest"###context:CREATE TABLE table_name_98 (outcome VARCHAR, opponent VARCHAR) |
###question:What was the score on October 24, 2005?###answer:SELECT score FROM table_name_55 WHERE date = "october 24, 2005"###context:CREATE TABLE table_name_55 (score VARCHAR, date VARCHAR) |
###question:What is the sum of state champions with more tan 9 MRC Championships, more than 4 co-champions, and a record of 192-189-3?###answer:SELECT SUM(state_champions) FROM table_name_72 WHERE mrc_championships > 9 AND records = "192-189-3" AND co_champions > 4###context:CREATE TABLE table_name_72 (state_champions INTEGER, co_champions VARCHAR, mrc_championships VARCHAR, records VARCHAR) |
###question:What was the co-champions value when solo was 3 and MRC Championships is greater than 3?###answer:SELECT co_champions FROM table_name_49 WHERE solo = 3 AND mrc_championships > 3###context:CREATE TABLE table_name_49 (co_champions VARCHAR, solo VARCHAR, mrc_championships VARCHAR) |
###question:What is the highest value for co-champions when the PCT is less than 0.786 and MRC championships is 6 with records of 88-45-6?###answer:SELECT MAX(co_champions) FROM table_name_51 WHERE pct < 0.786 AND mrc_championships = 6 AND records = "88-45-6"###context:CREATE TABLE table_name_51 (co_champions INTEGER, records VARCHAR, pct VARCHAR, mrc_championships VARCHAR) |
###question:What is the average value of MRC Championships with more than 0.685 PCT., more than 1 for co-champions, and less than 5 solo?###answer:SELECT AVG(mrc_championships) FROM table_name_31 WHERE pct > 0.685 AND co_champions > 1 AND solo < 5###context:CREATE TABLE table_name_31 (mrc_championships INTEGER, solo VARCHAR, pct VARCHAR, co_champions VARCHAR) |
###question:What is the average Pct value when state champions is less than 1, MRC Championships is 10, and co-champions are greater than 4?###answer:SELECT AVG(pct) FROM table_name_51 WHERE state_champions < 1 AND mrc_championships = 10 AND co_champions > 4###context:CREATE TABLE table_name_51 (pct INTEGER, co_champions VARCHAR, state_champions VARCHAR, mrc_championships VARCHAR) |
###question:Street Address of 980 n. michigan avenue is what name?###answer:SELECT name FROM table_name_46 WHERE street_address = "980 n. michigan avenue"###context:CREATE TABLE table_name_46 (name VARCHAR, street_address VARCHAR) |
###question:Name of 900 north michigan, and a Year smaller than 1989 involves what lowest floors?###answer:SELECT MIN(floors) FROM table_name_39 WHERE name = "900 north michigan" AND year < 1989###context:CREATE TABLE table_name_39 (floors INTEGER, name VARCHAR, year VARCHAR) |
###question:Street Address of 401 n. wabash avenue involves what name?###answer:SELECT name FROM table_name_32 WHERE street_address = "401 n. wabash avenue"###context:CREATE TABLE table_name_32 (name VARCHAR, street_address VARCHAR) |
###question:Pick larger than 229, and a Round smaller than 12, and a Position of defensive back is what school/club team?###answer:SELECT school_club_team FROM table_name_66 WHERE pick > 229 AND round < 12 AND position = "defensive back"###context:CREATE TABLE table_name_66 (school_club_team VARCHAR, position VARCHAR, pick VARCHAR, round VARCHAR) |
###question:Player of mike o'quinn, and a Round smaller than 15 had what lowest pick?###answer:SELECT MIN(pick) FROM table_name_30 WHERE player = "mike o'quinn" AND round < 15###context:CREATE TABLE table_name_30 (pick INTEGER, player VARCHAR, round VARCHAR) |
###question:Round of 11 had waht sum of pick?###answer:SELECT SUM(pick) FROM table_name_24 WHERE round = 11###context:CREATE TABLE table_name_24 (pick INTEGER, round VARCHAR) |
###question:Which Division has a Position of 6th?###answer:SELECT division FROM table_name_26 WHERE position = "6th"###context:CREATE TABLE table_name_26 (division VARCHAR, position VARCHAR) |
###question:Which Season has a Level of tier 4, and a Position of 11th?###answer:SELECT SUM(season) FROM table_name_18 WHERE level = "tier 4" AND position = "11th"###context:CREATE TABLE table_name_18 (season INTEGER, level VARCHAR, position VARCHAR) |
###question:Which Season has a Level of tier 2 and a Position of 1st?###answer:SELECT COUNT(season) FROM table_name_82 WHERE level = "tier 2" AND position = "1st"###context:CREATE TABLE table_name_82 (season VARCHAR, level VARCHAR, position VARCHAR) |
###question:Which Position has a Level of tier 3 and a Season smaller than 1999?###answer:SELECT position FROM table_name_38 WHERE level = "tier 3" AND season < 1999###context:CREATE TABLE table_name_38 (position VARCHAR, level VARCHAR, season VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.