combined_text
stringlengths 106
1.05k
|
---|
###question:How many results were there for the Stan Fox Stakes race?###answer:SELECT COUNT(result) FROM table_1360997_2 WHERE race = "Stan Fox Stakes"###context:CREATE TABLE table_1360997_2 (result VARCHAR, race VARCHAR) |
###question:Was the rosehill venue a win or loss?###answer:SELECT result FROM table_1360997_2 WHERE venue = "Rosehill"###context:CREATE TABLE table_1360997_2 (result VARCHAR, venue VARCHAR) |
###question:what is the minimum total with kerry % being 16.71%###answer:SELECT MIN(total) FROM table_13606924_1 WHERE kerry__percentage = "16.71%"###context:CREATE TABLE table_13606924_1 (total INTEGER, kerry__percentage VARCHAR) |
###question:what is the minimum kerry # with bush % being 78.40%###answer:SELECT MIN(kerry__number) FROM table_13606924_1 WHERE bush__percentage = "78.40%"###context:CREATE TABLE table_13606924_1 (kerry__number INTEGER, bush__percentage VARCHAR) |
###question:what's the kerry # with county being ness county, kansas###answer:SELECT kerry__number FROM table_13606924_1 WHERE county = "Ness county, Kansas"###context:CREATE TABLE table_13606924_1 (kerry__number VARCHAR, county VARCHAR) |
###question: how many total with bush # being 1552###answer:SELECT COUNT(total) FROM table_13606924_1 WHERE bush__number = 1552###context:CREATE TABLE table_13606924_1 (total VARCHAR, bush__number VARCHAR) |
###question:what is the minimum bush # with kerry # being 3938###answer:SELECT MIN(bush__number) FROM table_13606924_1 WHERE kerry__number = 3938###context:CREATE TABLE table_13606924_1 (bush__number INTEGER, kerry__number VARCHAR) |
###question: how many total with county being rooks county, kansas###answer:SELECT COUNT(total) FROM table_13606924_1 WHERE county = "Rooks county, Kansas"###context:CREATE TABLE table_13606924_1 (total VARCHAR, county VARCHAR) |
###question:In which district was the incumbent Dick Saslaw? ###answer:SELECT district FROM table_13618584_1 WHERE incumbent = "Dick Saslaw"###context:CREATE TABLE table_13618584_1 (district VARCHAR, incumbent VARCHAR) |
###question:What was the 2007 result in the district where the incumbent was elected in 1996? ###answer:SELECT 2007 AS _result FROM table_13618584_1 WHERE elected = 1996###context:CREATE TABLE table_13618584_1 (elected VARCHAR) |
###question:What was the 2007 result in the 28th district? ###answer:SELECT 2007 AS _result FROM table_13618584_1 WHERE district = "28th"###context:CREATE TABLE table_13618584_1 (district VARCHAR) |
###question:In what district was the incumbent Charles Hawkins? ###answer:SELECT district FROM table_13618584_1 WHERE incumbent = "Charles Hawkins"###context:CREATE TABLE table_13618584_1 (district VARCHAR, incumbent VARCHAR) |
###question:What's the number of the game played on March 26?###answer:SELECT MAX(game) FROM table_13619027_9 WHERE date = "March 26"###context:CREATE TABLE table_13619027_9 (game INTEGER, date VARCHAR) |
###question:How many different values if the number is high rebounds can be found for the game on March 13?###answer:SELECT COUNT(high_rebounds) FROM table_13619027_9 WHERE date = "March 13"###context:CREATE TABLE table_13619027_9 (high_rebounds VARCHAR, date VARCHAR) |
###question:Who ihad the highest points and what was the number when the record was 11-40?###answer:SELECT high_points FROM table_13619053_7 WHERE record = "11-40"###context:CREATE TABLE table_13619053_7 (high_points VARCHAR, record VARCHAR) |
###question:Who did the Raptors play when their record was 45-36? ###answer:SELECT team FROM table_13619135_8 WHERE record = "45-36"###context:CREATE TABLE table_13619135_8 (team VARCHAR, record VARCHAR) |
###question:What number game of the season was played on April 12? ###answer:SELECT MAX(game) FROM table_13619135_8 WHERE date = "April 12"###context:CREATE TABLE table_13619135_8 (game INTEGER, date VARCHAR) |
###question:How many votes were cast in Wayne county?###answer:SELECT MAX(total__number) FROM table_13625792_1 WHERE county = "Wayne"###context:CREATE TABLE table_13625792_1 (total__number INTEGER, county VARCHAR) |
###question:In the county where Bush won 77.76%, how many total votes were cast?###answer:SELECT total__number FROM table_13625792_1 WHERE bush__percentage = "77.76%"###context:CREATE TABLE table_13625792_1 (total__number VARCHAR, bush__percentage VARCHAR) |
###question:In the country where Bush won 4333 votes, what percentage did other receive?###answer:SELECT other__percentage FROM table_13625792_1 WHERE bush__number = 4333###context:CREATE TABLE table_13625792_1 (other__percentage VARCHAR, bush__number VARCHAR) |
###question:Who was the TO winning team when the TU winning team was Joe Richardson? ###answer:SELECT to_winning_team FROM table_13642023_2 WHERE tu_winning_team = "Joe Richardson"###context:CREATE TABLE table_13642023_2 (to_winning_team VARCHAR, tu_winning_team VARCHAR) |
###question:On what circuit was the GTU winning team #59 Brumos Porsche - Audi in round 5? ###answer:SELECT circuit FROM table_13642023_2 WHERE rnd = 5 AND gtu_winning_team = "#59 Brumos Porsche - Audi"###context:CREATE TABLE table_13642023_2 (circuit VARCHAR, rnd VARCHAR, gtu_winning_team VARCHAR) |
###question:Who was the GTU winning team when the TO winning team was #3 Camaro? ###answer:SELECT gtu_winning_team FROM table_13642023_2 WHERE to_winning_team = "#3 Camaro"###context:CREATE TABLE table_13642023_2 (gtu_winning_team VARCHAR, to_winning_team VARCHAR) |
###question:Who was the GTU winning team when the TO winning team was Steve Ross? ###answer:SELECT gtu_winning_team FROM table_13642023_2 WHERE to_winning_team = "Steve Ross"###context:CREATE TABLE table_13642023_2 (gtu_winning_team VARCHAR, to_winning_team VARCHAR) |
###question:Who was the GTO winning team in round 5 when the GTU winning team was #59 Brumos Porsche - Audi? ###answer:SELECT gto_winning_team FROM table_13642023_2 WHERE rnd = 5 AND gtu_winning_team = "#59 Brumos Porsche - Audi"###context:CREATE TABLE table_13642023_2 (gto_winning_team VARCHAR, rnd VARCHAR, gtu_winning_team VARCHAR) |
###question:Who was the GTO winning team when the TO winning team was #84 Camaro? ###answer:SELECT gto_winning_team FROM table_13642023_2 WHERE to_winning_team = "#84 Camaro"###context:CREATE TABLE table_13642023_2 (gto_winning_team VARCHAR, to_winning_team VARCHAR) |
###question:Name the results for steve millen###answer:SELECT results FROM table_13643154_2 WHERE gto_winning_team = "Steve Millen"###context:CREATE TABLE table_13643154_2 (results VARCHAR, gto_winning_team VARCHAR) |
###question:What is the most rnd for watkins glen?###answer:SELECT MIN(rnd) FROM table_13643154_2 WHERE circuit = "Watkins Glen"###context:CREATE TABLE table_13643154_2 (rnd INTEGER, circuit VARCHAR) |
###question:What was the GTP winning team in the round in Portland during which Jack Baldwin become part of the GTU winning team? ###answer:SELECT gtp_winning_team FROM table_13643320_2 WHERE circuit = "Portland" AND gtu_winning_team = "Jack Baldwin"###context:CREATE TABLE table_13643320_2 (gtp_winning_team VARCHAR, circuit VARCHAR, gtu_winning_team VARCHAR) |
###question:What us the number of the round during which #56 Blue Thunder Racing become the GTP winning team and #38 Mandeville Auto Tech became the GTO winning team? ###answer:SELECT rnd FROM table_13643320_2 WHERE gtp_winning_team = "#56 Blue Thunder Racing" AND gto_winning_team = "#38 Mandeville Auto Tech"###context:CREATE TABLE table_13643320_2 (rnd VARCHAR, gtp_winning_team VARCHAR, gto_winning_team VARCHAR) |
###question:How many different results came out of the round in which #98 All American Racers became the GTU winning team? ###answer:SELECT COUNT(results) FROM table_13643320_2 WHERE gtu_winning_team = "#98 All American Racers"###context:CREATE TABLE table_13643320_2 (results VARCHAR, gtu_winning_team VARCHAR) |
###question:Who was the GTO winner of the round that ended with Chris Cord becoming the GTU winner? ###answer:SELECT gto_winning_team FROM table_13643320_2 WHERE gtu_winning_team = "Chris Cord"###context:CREATE TABLE table_13643320_2 (gto_winning_team VARCHAR, gtu_winning_team VARCHAR) |
###question:what are all the uu-usu score with winner is #5 brigham young (2–0)###answer:SELECT uu_usu_score FROM table_13665809_2 WHERE winner = "#5 Brigham Young (2–0)"###context:CREATE TABLE table_13665809_2 (uu_usu_score VARCHAR, winner VARCHAR) |
###question:what is the maximum season with byu-usu score being 29–7###answer:SELECT MAX(season) FROM table_13665809_2 WHERE byu_usu_score = "29–7"###context:CREATE TABLE table_13665809_2 (season INTEGER, byu_usu_score VARCHAR) |
###question:what is the maximum season with byu-uu score being 20–17 byu #19###answer:SELECT MAX(season) FROM table_13665809_2 WHERE byu_uu_score = "20–17 BYU #19"###context:CREATE TABLE table_13665809_2 (season INTEGER, byu_uu_score VARCHAR) |
###question: how many byu-uu score with winner being utah state (2–1) won over byu by media vote###answer:SELECT COUNT(byu_uu_score) FROM table_13665809_2 WHERE winner = "Utah State (2–1) Won over BYU by media vote"###context:CREATE TABLE table_13665809_2 (byu_uu_score VARCHAR, winner VARCHAR) |
###question:what's the byu-uu score with uu-usu score being 44–16###answer:SELECT byu_uu_score FROM table_13665809_2 WHERE uu_usu_score = "44–16"###context:CREATE TABLE table_13665809_2 (byu_uu_score VARCHAR, uu_usu_score VARCHAR) |
###question:What are all the languages for tsotsi?###answer:SELECT language_s_ FROM table_13700749_1 WHERE film_title = "Tsotsi"###context:CREATE TABLE table_13700749_1 (language_s_ VARCHAR, film_title VARCHAR) |
###question:What year featured the film tsotsi?###answer:SELECT year__ceremony_ FROM table_13700749_1 WHERE film_title = "Tsotsi"###context:CREATE TABLE table_13700749_1 (year__ceremony_ VARCHAR, film_title VARCHAR) |
###question:What was the result for the film life, above all?###answer:SELECT result FROM table_13700749_1 WHERE film_title = "Life, Above All"###context:CREATE TABLE table_13700749_1 (result VARCHAR, film_title VARCHAR) |
###question:What numer pick in the draft for jerry hill?###answer:SELECT COUNT(overall) FROM table_13758243_1 WHERE player = "Jerry Hill"###context:CREATE TABLE table_13758243_1 (overall VARCHAR, player VARCHAR) |
###question:What kicker was drafted?###answer:SELECT player FROM table_13758243_1 WHERE position = "Kicker"###context:CREATE TABLE table_13758243_1 (player VARCHAR, position VARCHAR) |
###question:What team drafted steve scifres?###answer:SELECT nfl_team FROM table_13758243_1 WHERE player = "Steve Scifres"###context:CREATE TABLE table_13758243_1 (nfl_team VARCHAR, player VARCHAR) |
###question:What year was jerry marion drafted?###answer:SELECT MAX(draft_year) FROM table_13758243_1 WHERE player = "Jerry Marion"###context:CREATE TABLE table_13758243_1 (draft_year INTEGER, player VARCHAR) |
###question:What numer pick in the draft for jerry marion###answer:SELECT MAX(overall) FROM table_13758243_1 WHERE player = "Jerry Marion"###context:CREATE TABLE table_13758243_1 (overall INTEGER, player VARCHAR) |
###question:what's the record with high points being dwyane wade (27) and location attendance being arco arena###answer:SELECT record FROM table_13762472_4 WHERE high_points = "Dwyane Wade (27)" AND location_attendance = "ARCO Arena"###context:CREATE TABLE table_13762472_4 (record VARCHAR, high_points VARCHAR, location_attendance VARCHAR) |
###question: how many high assists with record being 15-11###answer:SELECT COUNT(high_assists) FROM table_13762472_4 WHERE record = "15-11"###context:CREATE TABLE table_13762472_4 (high_assists VARCHAR, record VARCHAR) |
###question:who had high points on december 3###answer:SELECT high_points FROM table_13762472_4 WHERE date = "December 3"###context:CREATE TABLE table_13762472_4 (high_points VARCHAR, date VARCHAR) |
###question:who had high rebounds when score is w 111–92 (ot)###answer:SELECT high_rebounds FROM table_13762472_4 WHERE score = "W 111–92 (OT)"###context:CREATE TABLE table_13762472_4 (high_rebounds VARCHAR, score VARCHAR) |
###question:who had all the high rebounds when high assists is by dwyane wade (9)###answer:SELECT high_rebounds FROM table_13762472_4 WHERE high_assists = "Dwyane Wade (9)"###context:CREATE TABLE table_13762472_4 (high_rebounds VARCHAR, high_assists VARCHAR) |
###question:what's the record with date being december 29###answer:SELECT record FROM table_13762472_4 WHERE date = "December 29"###context:CREATE TABLE table_13762472_4 (record VARCHAR, date VARCHAR) |
###question:What is the smallest population recorded back in 2002?###answer:SELECT MIN(2002 AS _population) FROM table_13764346_1###context:CREATE TABLE table_13764346_1 (Id VARCHAR) |
###question:what's the position with artbeingt being jim reeves###answer:SELECT position FROM table_13805432_2 WHERE artist = "Jim Reeves"###context:CREATE TABLE table_13805432_2 (position VARCHAR, artist VARCHAR) |
###question:what's the highest position with artbeingt being frankie avalon###answer:SELECT highest_position FROM table_13805432_2 WHERE artist = "Frankie Avalon"###context:CREATE TABLE table_13805432_2 (highest_position VARCHAR, artist VARCHAR) |
###question:what's the song title with artbeingt being pat boone###answer:SELECT song_title FROM table_13805432_2 WHERE artist = "Pat Boone"###context:CREATE TABLE table_13805432_2 (song_title VARCHAR, artist VARCHAR) |
###question:what is the minimum highest position with artbeingt being paul evans###answer:SELECT MIN(highest_position) FROM table_13805432_2 WHERE artist = "Paul Evans"###context:CREATE TABLE table_13805432_2 (highest_position INTEGER, artist VARCHAR) |
###question:Who was responsible and what was the number for the high rebounds on December 22?###answer:SELECT high_rebounds FROM table_13812785_5 WHERE date = "December 22"###context:CREATE TABLE table_13812785_5 (high_rebounds VARCHAR, date VARCHAR) |
###question:What is the record where the score is w 102–81 (ot)?###answer:SELECT record FROM table_13812785_8 WHERE score = "W 102–81 (OT)"###context:CREATE TABLE table_13812785_8 (record VARCHAR, score VARCHAR) |
###question:Who had the high points dated march 13?###answer:SELECT high_points FROM table_13812785_8 WHERE date = "March 13"###context:CREATE TABLE table_13812785_8 (high_points VARCHAR, date VARCHAR) |
###question:Who had the most high points and rebounds than charles oakley (9)?###answer:SELECT high_points FROM table_13812785_8 WHERE high_rebounds = "Charles Oakley (9)"###context:CREATE TABLE table_13812785_8 (high_points VARCHAR, high_rebounds VARCHAR) |
###question:who is the the incumbent with opponent being anthony weiner (d) unopposed###answer:SELECT incumbent FROM table_13833770_3 WHERE opponent = "Anthony Weiner (D) unopposed"###context:CREATE TABLE table_13833770_3 (incumbent VARCHAR, opponent VARCHAR) |
###question:who is the the incumbent with opponent being peter king (r) 56.0% david mejias (d) 44.0%###answer:SELECT incumbent FROM table_13833770_3 WHERE opponent = "Peter King (R) 56.0% David Mejias (D) 44.0%"###context:CREATE TABLE table_13833770_3 (incumbent VARCHAR, opponent VARCHAR) |
###question:what's the district with party being republican and elected being 1998###answer:SELECT district FROM table_13833770_3 WHERE party = "Republican" AND elected = 1998###context:CREATE TABLE table_13833770_3 (district VARCHAR, party VARCHAR, elected VARCHAR) |
###question:what is the minimum district with incumbent being tom reynolds###answer:SELECT MIN(district) FROM table_13833770_3 WHERE incumbent = "Tom Reynolds"###context:CREATE TABLE table_13833770_3 (district INTEGER, incumbent VARCHAR) |
###question:what's the status with incumbent being eliot engel###answer:SELECT status FROM table_13833770_3 WHERE incumbent = "Eliot Engel"###context:CREATE TABLE table_13833770_3 (status VARCHAR, incumbent VARCHAR) |
###question:Name the number of women's doubles for 1986###answer:SELECT COUNT(womens_doubles) FROM table_13845918_3 WHERE year = "1986"###context:CREATE TABLE table_13845918_3 (womens_doubles VARCHAR, year VARCHAR) |
###question:what was the lowest numbers for the winner gregory w. meeks###answer:SELECT MIN(elected) FROM table_13870048_3 WHERE incumbent = "Gregory W. Meeks"###context:CREATE TABLE table_13870048_3 (elected INTEGER, incumbent VARCHAR) |
###question:What is the frequency of the model whose part number is ado520biaa5do? ###answer:SELECT frequency FROM table_13869651_3 WHERE part_number_s_ = "ADO520BIAA5DO"###context:CREATE TABLE table_13869651_3 (frequency VARCHAR, part_number_s_ VARCHAR) |
###question:When's the release date of the model with part number adh485biaa5do? ###answer:SELECT release_date FROM table_13869651_3 WHERE part_number_s_ = "ADH485BIAA5DO"###context:CREATE TABLE table_13869651_3 (release_date VARCHAR, part_number_s_ VARCHAR) |
###question:What is the HT value of threw Athlon x2 5200b model? ###answer:SELECT ht FROM table_13869651_3 WHERE model_number = "Athlon X2 5200B"###context:CREATE TABLE table_13869651_3 (ht VARCHAR, model_number VARCHAR) |
###question:How many different frequencies does the model with part number ado540biaa5do? ###answer:SELECT COUNT(frequency) FROM table_13869651_3 WHERE part_number_s_ = "ADO540BIAA5DO"###context:CREATE TABLE table_13869651_3 (frequency VARCHAR, part_number_s_ VARCHAR) |
###question:What is the entire inhabitants in Southeast Asia?###answer:SELECT MIN(total_population) FROM table_1389609_3 WHERE region = "Southeast Asia"###context:CREATE TABLE table_1389609_3 (total_population INTEGER, region VARCHAR) |
###question:what is the minimum average with highest being 2363###answer:SELECT MIN(average) FROM table_14003020_5 WHERE highest = 2363###context:CREATE TABLE table_14003020_5 (average INTEGER, highest VARCHAR) |
###question:what is the minimum lowest with highest being 2363###answer:SELECT MIN(lowest) FROM table_14003020_5 WHERE highest = 2363###context:CREATE TABLE table_14003020_5 (lowest INTEGER, highest VARCHAR) |
###question:what's the team with stadium being glebe park###answer:SELECT team FROM table_14003020_5 WHERE stadium = "Glebe Park"###context:CREATE TABLE table_14003020_5 (team VARCHAR, stadium VARCHAR) |
###question:What's the production code of the episode with a series number 37b? ###answer:SELECT production_code FROM table_14035132_3 WHERE no_in_series = "37b"###context:CREATE TABLE table_14035132_3 (production_code VARCHAR, no_in_series VARCHAR) |
###question:On what date did the episode with a series number 31, with a story written by William Reiss, air for the first time? ###answer:SELECT original_air_date FROM table_14035132_3 WHERE storyboarded_by = "William Reiss" AND no_in_series = "31"###context:CREATE TABLE table_14035132_3 (original_air_date VARCHAR, storyboarded_by VARCHAR, no_in_series VARCHAR) |
###question:When did the episode with season number 10b air for the first time? ###answer:SELECT original_air_date FROM table_14035132_3 WHERE no_in_season = "10b"###context:CREATE TABLE table_14035132_3 (original_air_date VARCHAR, no_in_season VARCHAR) |
###question:When did the episode with series number 29a originally air? ###answer:SELECT original_air_date FROM table_14035132_3 WHERE no_in_series = "29a"###context:CREATE TABLE table_14035132_3 (original_air_date VARCHAR, no_in_series VARCHAR) |
###question:How many episodes have been directed and written by Darrick Bachman and Brett Varon? ###answer:SELECT COUNT(directed_by) FROM table_14035132_3 WHERE written_by = "Darrick Bachman and Brett Varon"###context:CREATE TABLE table_14035132_3 (directed_by VARCHAR, written_by VARCHAR) |
###question:What is the population density in the Brighton area?###answer:SELECT density FROM table_140297_1 WHERE principal_town = "Brighton"###context:CREATE TABLE table_140297_1 (density VARCHAR, principal_town VARCHAR) |
###question:How many people live in the area of Sorell according to the Census of 2011?###answer:SELECT population_2011_census FROM table_140297_1 WHERE local_government_area = "Sorell"###context:CREATE TABLE table_140297_1 (population_2011_census VARCHAR, local_government_area VARCHAR) |
###question:what is the number of area where the county is marsabit?###answer:SELECT COUNT(area__km_2__) FROM table_1404486_1 WHERE county = "Marsabit"###context:CREATE TABLE table_1404486_1 (area__km_2__ VARCHAR, county VARCHAR) |
###question:what is the code of population census 2009 is 1356301?###answer:SELECT code FROM table_1404486_1 WHERE population_census_2009 = 1356301###context:CREATE TABLE table_1404486_1 (code VARCHAR, population_census_2009 VARCHAR) |
###question:What's the tries against count of the team with 396 points against? ###answer:SELECT COUNT(tries_against) FROM table_14070062_3 WHERE points_against = "396"###context:CREATE TABLE table_14070062_3 (tries_against VARCHAR, points_against VARCHAR) |
###question:How many points does the club with a try bonus of 10 have? ###answer:SELECT points FROM table_14070062_3 WHERE try_bonus = "10"###context:CREATE TABLE table_14070062_3 (points VARCHAR, try_bonus VARCHAR) |
###question:What's the tries for count for the team with 70 points? ###answer:SELECT tries_for FROM table_14070062_3 WHERE points = "70"###context:CREATE TABLE table_14070062_3 (tries_for VARCHAR, points VARCHAR) |
###question:How many clubs have a try bonus value of 5?###answer:SELECT COUNT(club) FROM table_14070062_3 WHERE try_bonus = "5"###context:CREATE TABLE table_14070062_3 (club VARCHAR, try_bonus VARCHAR) |
###question:What's the losing bonus count for the club with 9 won games? ###answer:SELECT losing_bonus FROM table_14070062_3 WHERE won = "9"###context:CREATE TABLE table_14070062_3 (losing_bonus VARCHAR, won VARCHAR) |
###question:How many tries for does Pontardawe RFC have? ###answer:SELECT tries_for FROM table_14070062_3 WHERE club = "Pontardawe RFC"###context:CREATE TABLE table_14070062_3 (tries_for VARCHAR, club VARCHAR) |
###question:How many home losses occured when PF 13?###answer:SELECT COUNT(home_losses) FROM table_1409106_2 WHERE pf = 13###context:CREATE TABLE table_1409106_2 (home_losses VARCHAR, pf VARCHAR) |
###question:How many copoes per particle are created in the segment that forms inner shell of the core?###answer:SELECT copies_per_particle FROM table_140968_1 WHERE location = "Forms inner shell of the core"###context:CREATE TABLE table_140968_1 (copies_per_particle VARCHAR, location VARCHAR) |
###question:How many copies per particle are created by the enterotoxin?###answer:SELECT copies_per_particle FROM table_140968_1 WHERE function = "Enterotoxin"###context:CREATE TABLE table_140968_1 (copies_per_particle VARCHAR, function VARCHAR) |
###question:How many base pairs are there if the molecular weight is 102?###answer:SELECT COUNT(size___s_base_pair__) FROM table_140968_1 WHERE molecular_weight_kda = "102"###context:CREATE TABLE table_140968_1 (size___s_base_pair__ VARCHAR, molecular_weight_kda VARCHAR) |
###question:How many copies per particle are there for the base pair that is size 1059?###answer:SELECT COUNT(copies_per_particle) FROM table_140968_1 WHERE size___s_base_pair__ = 1059###context:CREATE TABLE table_140968_1 (copies_per_particle VARCHAR, size___s_base_pair__ VARCHAR) |
###question:what is the minimum attendance with stadium being cotton bowl###answer:SELECT MIN(attendance) FROM table_14102379_4 WHERE stadium = "Cotton Bowl"###context:CREATE TABLE table_14102379_4 (attendance INTEGER, stadium VARCHAR) |
###question:what's the opponent with stadium being jeppesen stadium###answer:SELECT opponent FROM table_14102379_4 WHERE stadium = "Jeppesen stadium"###context:CREATE TABLE table_14102379_4 (opponent VARCHAR, stadium VARCHAR) |
###question:what's the stadium with record being 1–1###answer:SELECT stadium FROM table_14102379_4 WHERE record = "1–1"###context:CREATE TABLE table_14102379_4 (stadium VARCHAR, record VARCHAR) |
###question: how many attendance with stadium being cotton bowl###answer:SELECT COUNT(attendance) FROM table_14102379_4 WHERE stadium = "Cotton Bowl"###context:CREATE TABLE table_14102379_4 (attendance VARCHAR, stadium VARCHAR) |
###question:what's the result with opponent being at oakland raiders###answer:SELECT result FROM table_14102379_4 WHERE opponent = "at Oakland Raiders"###context:CREATE TABLE table_14102379_4 (result VARCHAR, opponent VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.