text
stringlengths 114
1.06k
|
---|
### question: What Report has the Date September 3, 2005? ### answer: SELECT report FROM table_name_8 WHERE date = "september 3, 2005" ### context: CREATE TABLE table_name_8 (report VARCHAR, date VARCHAR)
|
### question: What was the 3’UTR sequence when Coding was 6a 3 and the GenBank id is nm_001093770.2? ### answer: SELECT 3 AS ’utr_sequence FROM table_name_64 WHERE coding = "6a 3" AND genbank_id = "nm_001093770.2" ### context: CREATE TABLE table_name_64 (coding VARCHAR, genbank_id VARCHAR)
|
### question: Which Variant id has the GenBank id of nm_005411.4? ### answer: SELECT variant_id FROM table_name_40 WHERE genbank_id = "nm_005411.4" ### context: CREATE TABLE table_name_40 (variant_id VARCHAR, genbank_id VARCHAR)
|
### question: Which 5’UTR splice has a Variant ID at sftpa1 variant 2? ### answer: SELECT 5 AS ’utr_splice FROM table_name_46 WHERE variant_id = "sftpa1 variant 2" ### context: CREATE TABLE table_name_46 (variant_id VARCHAR)
|
### question: Which 3’UTR sequence has the GenBank ID at hq021440? ### answer: SELECT 3 AS ’utr_sequence FROM table_name_87 WHERE genbank_id = "hq021440" ### context: CREATE TABLE table_name_87 (genbank_id VARCHAR)
|
### question: Which Copa Libertadores 1992 has a Supercopa Sudamericana 1992 of round of 16, and a Team of grêmio? ### answer: SELECT copa_libertadores_1992 FROM table_name_59 WHERE supercopa_sudamericana_1992 = "round of 16" AND team = "grêmio" ### context: CREATE TABLE table_name_59 (copa_libertadores_1992 VARCHAR, supercopa_sudamericana_1992 VARCHAR, team VARCHAR)
|
### question: Which Team has a Recopa Sudamericana 1992 of runner-up? ### answer: SELECT team FROM table_name_28 WHERE recopa_sudamericana_1992 = "runner-up" ### context: CREATE TABLE table_name_28 (team VARCHAR, recopa_sudamericana_1992 VARCHAR)
|
### question: Which Supercopa Sudamericana 1992 has a Team of santos? ### answer: SELECT supercopa_sudamericana_1992 FROM table_name_83 WHERE team = "santos" ### context: CREATE TABLE table_name_83 (supercopa_sudamericana_1992 VARCHAR, team VARCHAR)
|
### question: When was the game with a record of 54-69? ### answer: SELECT date FROM table_name_28 WHERE record = "54-69" ### context: CREATE TABLE table_name_28 (date VARCHAR, record VARCHAR)
|
### question: What is the total number of tiers for the postseason of semifinalist? ### answer: SELECT SUM(tier) FROM table_name_45 WHERE postseason = "semifinalist" ### context: CREATE TABLE table_name_45 (tier INTEGER, postseason VARCHAR)
|
### question: For a year earlier than 1991 and a reynard 91d chassis, what's the highest points? ### answer: SELECT MAX(points) FROM table_name_7 WHERE chassis = "reynard 91d" AND year < 1991 ### context: CREATE TABLE table_name_7 (points INTEGER, chassis VARCHAR, year VARCHAR)
|
### question: Total points for a bs automotive entrant? ### answer: SELECT COUNT(points) FROM table_name_7 WHERE entrant = "bs automotive" ### context: CREATE TABLE table_name_7 (points VARCHAR, entrant VARCHAR)
|
### question: What is a colt racing entrant engine? ### answer: SELECT engine FROM table_name_17 WHERE entrant = "colt racing" ### context: CREATE TABLE table_name_17 (engine VARCHAR, entrant VARCHAR)
|
### question: How many Passengers that have an Airport in indonesia, denpasar? ### answer: SELECT AVG(passengers) FROM table_name_31 WHERE airport = "indonesia, denpasar" ### context: CREATE TABLE table_name_31 (passengers INTEGER, airport VARCHAR)
|
### question: Which Airport has a Carrier of malaysia airlines? ### answer: SELECT airport FROM table_name_52 WHERE carriers = "malaysia airlines" ### context: CREATE TABLE table_name_52 (airport VARCHAR, carriers VARCHAR)
|
### question: Which tier has a division of LEB 2 and Cup Competitions of Copa LEB Plata runner-up? ### answer: SELECT tier FROM table_name_91 WHERE division = "leb 2" AND cup_competitions = "copa leb plata runner-up" ### context: CREATE TABLE table_name_91 (tier VARCHAR, division VARCHAR, cup_competitions VARCHAR)
|
### question: How many positions have a Postseason of relegation playoffs and a tier of 3? ### answer: SELECT COUNT(pos) FROM table_name_11 WHERE postseason = "relegation playoffs" AND tier = 3 ### context: CREATE TABLE table_name_11 (pos VARCHAR, postseason VARCHAR, tier VARCHAR)
|
### question: What is the lowest tier for a postseason result of quarterfinalist? ### answer: SELECT MIN(tier) FROM table_name_68 WHERE postseason = "quarterfinalist" ### context: CREATE TABLE table_name_68 (tier INTEGER, postseason VARCHAR)
|
### question: What format has 080 360-2 as the catalog? ### answer: SELECT format FROM table_name_84 WHERE catalog = "080 360-2" ### context: CREATE TABLE table_name_84 (format VARCHAR, catalog VARCHAR)
|
### question: What label has 887 448-2 as the catalog? ### answer: SELECT label FROM table_name_4 WHERE catalog = "887 448-2" ### context: CREATE TABLE table_name_4 (label VARCHAR, catalog VARCHAR)
|
### question: What label has cd single as the format? ### answer: SELECT label FROM table_name_20 WHERE format = "cd single" ### context: CREATE TABLE table_name_20 (label VARCHAR, format VARCHAR)
|
### question: What catalog has june 1990 as the date? ### answer: SELECT catalog FROM table_name_73 WHERE date = "june 1990" ### context: CREATE TABLE table_name_73 (catalog VARCHAR, date VARCHAR)
|
### question: Which building has 26 storeys? ### answer: SELECT building FROM table_name_42 WHERE storeys = 26 ### context: CREATE TABLE table_name_42 (building VARCHAR, storeys VARCHAR)
|
### question: What is the height for less than 45 storeys in Scotia Centre? ### answer: SELECT height FROM table_name_34 WHERE storeys < 45 AND building = "scotia centre" ### context: CREATE TABLE table_name_34 (height VARCHAR, storeys VARCHAR, building VARCHAR)
|
### question: How many storeys in Calgary during 1975-1976? ### answer: SELECT storeys FROM table_name_46 WHERE city = "calgary" AND years = "1975-1976" ### context: CREATE TABLE table_name_46 (storeys VARCHAR, city VARCHAR, years VARCHAR)
|
### question: Which city had years 1971-1974? ### answer: SELECT city FROM table_name_97 WHERE years = "1971-1974" ### context: CREATE TABLE table_name_97 (city VARCHAR, years VARCHAR)
|
### question: Which city contains Telus Plaza South? ### answer: SELECT city FROM table_name_66 WHERE building = "telus plaza south" ### context: CREATE TABLE table_name_66 (city VARCHAR, building VARCHAR)
|
### question: What is the lowest number played with 2 losses and more than 13 points? ### answer: SELECT MIN(played) FROM table_name_30 WHERE lost = 2 AND points > 13 ### context: CREATE TABLE table_name_30 (played INTEGER, lost VARCHAR, points VARCHAR)
|
### question: What is the smallest positioned with more than 9 played? ### answer: SELECT MIN(position) FROM table_name_4 WHERE played > 9 ### context: CREATE TABLE table_name_4 (position INTEGER, played INTEGER)
|
### question: How many draws took place for team Corinthians with more than 5 losses? ### answer: SELECT COUNT(drawn) FROM table_name_81 WHERE team = "corinthians" AND lost > 5 ### context: CREATE TABLE table_name_81 (drawn VARCHAR, team VARCHAR, lost VARCHAR)
|
### question: Which 2007 is the lowest one that has a 2004 of 78, and a 2006 smaller than 80? ### answer: SELECT MIN(2007) FROM table_name_91 WHERE 2004 = 78 AND 2006 < 80 ### context: CREATE TABLE table_name_91 (Id VARCHAR)
|
### question: Which 2005 is the lowest one that has a Grade smaller than 6, and a 2008 smaller than 80, and a 2006 larger than 72? ### answer: SELECT MIN(2005) FROM table_name_32 WHERE grade < 6 AND 2008 < 80 AND 2006 > 72 ### context: CREATE TABLE table_name_32 (grade VARCHAR)
|
### question: Position of member, and a Nationality of india is what sum of term ending? ### answer: SELECT SUM(term_ending) FROM table_name_67 WHERE position = "member" AND nationality = "india" ### context: CREATE TABLE table_name_67 (term_ending INTEGER, position VARCHAR, nationality VARCHAR)
|
### question: Name of xue hanqin has what highest term ending? ### answer: SELECT MAX(term_ending) FROM table_name_89 WHERE name = "xue hanqin" ### context: CREATE TABLE table_name_89 (term_ending INTEGER, name VARCHAR)
|
### question: Position of member, and a Tenure Began of 2010, and a Name of xue hanqin has what lowest term ending? ### answer: SELECT MIN(term_ending) FROM table_name_54 WHERE position = "member" AND tenure_began = 2010 AND name = "xue hanqin" ### context: CREATE TABLE table_name_54 (term_ending INTEGER, name VARCHAR, position VARCHAR, tenure_began VARCHAR)
|
### question: Term Ending smaller than 2018, and a Nationality of new zealand what is the name? ### answer: SELECT name FROM table_name_85 WHERE term_ending < 2018 AND nationality = "new zealand" ### context: CREATE TABLE table_name_85 (name VARCHAR, term_ending VARCHAR, nationality VARCHAR)
|
### question: Which episode aired in the USA on 20 May 2005? ### answer: SELECT episode FROM table_name_75 WHERE airdate__usa_ = "20 may 2005" ### context: CREATE TABLE table_name_75 (episode VARCHAR, airdate__usa_ VARCHAR)
|
### question: What is the total number of episodes aired in Canada on 22 October 2004? ### answer: SELECT COUNT(episode) FROM table_name_18 WHERE airdate__canada_ = "22 october 2004" ### context: CREATE TABLE table_name_18 (episode VARCHAR, airdate__canada_ VARCHAR)
|
### question: What is the CBS airdate of the episode with a number under 70 with a USA airdate of 1 April 2005? ### answer: SELECT cbs_airdate FROM table_name_26 WHERE episode < 70 AND airdate__usa_ = "1 april 2005" ### context: CREATE TABLE table_name_26 (cbs_airdate VARCHAR, episode VARCHAR, airdate__usa_ VARCHAR)
|
### question: what song is a genre of glam ### answer: SELECT song_title FROM table_name_26 WHERE genre = "glam" ### context: CREATE TABLE table_name_26 (song_title VARCHAR, genre VARCHAR)
|
### question: Which score is the Seattle team? ### answer: SELECT score FROM table_name_38 WHERE team = "seattle" ### context: CREATE TABLE table_name_38 (score VARCHAR, team VARCHAR)
|
### question: What is the number with the f position in Dallas, Texas? ### answer: SELECT COUNT(number) FROM table_name_57 WHERE position = "f" AND hometown = "dallas, texas" ### context: CREATE TABLE table_name_57 (number VARCHAR, position VARCHAR, hometown VARCHAR)
|
### question: Which competition took place in Bangkok? ### answer: SELECT competition FROM table_name_94 WHERE venue = "bangkok" ### context: CREATE TABLE table_name_94 (competition VARCHAR, venue VARCHAR)
|
### question: What was the score in Kathmandu? ### answer: SELECT score FROM table_name_96 WHERE venue = "kathmandu" ### context: CREATE TABLE table_name_96 (score VARCHAR, venue VARCHAR)
|
### question: Where was the location for the August 29, 1980 game? ### answer: SELECT venue FROM table_name_68 WHERE date = "august 29, 1980" ### context: CREATE TABLE table_name_68 (venue VARCHAR, date VARCHAR)
|
### question: What is the notes distance for 2nd position earlier than 1986? ### answer: SELECT notes FROM table_name_31 WHERE position = "2nd" AND year < 1986 ### context: CREATE TABLE table_name_31 (notes VARCHAR, position VARCHAR, year VARCHAR)
|
### question: Which venue hosts the Olympic Games for DNQ position? ### answer: SELECT venue FROM table_name_24 WHERE competition = "olympic games" AND position = "dnq" ### context: CREATE TABLE table_name_24 (venue VARCHAR, competition VARCHAR, position VARCHAR)
|
### question: In what year is the notes distance 1.83m? ### answer: SELECT year FROM table_name_82 WHERE notes = "1.83m" ### context: CREATE TABLE table_name_82 (year VARCHAR, notes VARCHAR)
|
### question: what is the race number of bob wollek ### answer: SELECT race_number FROM table_name_95 WHERE driver = "bob wollek" ### context: CREATE TABLE table_name_95 (race_number VARCHAR, driver VARCHAR)
|
### question: what country is john nielsen from ### answer: SELECT country FROM table_name_10 WHERE driver = "john nielsen" ### context: CREATE TABLE table_name_10 (country VARCHAR, driver VARCHAR)
|
### question: Which Model has hybrid propulsion? ### answer: SELECT model FROM table_name_59 WHERE propulsion = "hybrid" ### context: CREATE TABLE table_name_59 (model VARCHAR, propulsion VARCHAR)
|
### question: What is the Propulsion for the model offered in 2003-2004 by neoplan usa? ### answer: SELECT propulsion FROM table_name_68 WHERE order_year = "2003-2004" AND manufacturer = "neoplan usa" ### context: CREATE TABLE table_name_68 (propulsion VARCHAR, order_year VARCHAR, manufacturer VARCHAR)
|
### question: What is the Length (ft.) for a 2008 nfi d40lf? ### answer: SELECT length__ft_ FROM table_name_67 WHERE manufacturer = "nfi" AND model = "d40lf" AND order_year = "2008" ### context: CREATE TABLE table_name_67 (length__ft_ VARCHAR, order_year VARCHAR, manufacturer VARCHAR, model VARCHAR)
|
### question: Which Founded has a Club of tri-city storm and a Titles larger than 1? ### answer: SELECT SUM(founded) FROM table_name_68 WHERE club = "tri-city storm" AND titles > 1 ### context: CREATE TABLE table_name_68 (founded INTEGER, club VARCHAR, titles VARCHAR)
|
### question: Which Founded that has a Club of no coast derby girls? ### answer: SELECT founded FROM table_name_97 WHERE club = "no coast derby girls" ### context: CREATE TABLE table_name_97 (founded VARCHAR, club VARCHAR)
|
### question: Which Founded has a League of women's flat track derby association, and a Club of omaha rollergirls? ### answer: SELECT AVG(founded) FROM table_name_14 WHERE league = "women's flat track derby association" AND club = "omaha rollergirls" ### context: CREATE TABLE table_name_14 (founded INTEGER, league VARCHAR, club VARCHAR)
|
### question: On what date was there an International Friendly competition? ### answer: SELECT date FROM table_name_2 WHERE competition = "international friendly" ### context: CREATE TABLE table_name_2 (date VARCHAR, competition VARCHAR)
|
### question: What was the score at Bernardo O'Higgins Cup on May 7, 1961? ### answer: SELECT score FROM table_name_94 WHERE competition = "bernardo o'higgins cup" AND date = "may 7, 1961" ### context: CREATE TABLE table_name_94 (score VARCHAR, competition VARCHAR, date VARCHAR)
|
### question: What grid has an average time of +22.505 and laps larger than 23? ### answer: SELECT AVG(grid) FROM table_name_7 WHERE time = "+22.505" AND laps > 23 ### context: CREATE TABLE table_name_7 (grid INTEGER, time VARCHAR, laps VARCHAR)
|
### question: Which suzuki gsx-r1000 k7 has the highest time of retirement? ### answer: SELECT MAX(grid) FROM table_name_8 WHERE time = "retirement" AND bike = "suzuki gsx-r1000 k7" ### context: CREATE TABLE table_name_8 (grid INTEGER, time VARCHAR, bike VARCHAR)
|
### question: What is the average lap for suzuki gsx-r1000 k7 and at grid 6? ### answer: SELECT AVG(laps) FROM table_name_39 WHERE bike = "suzuki gsx-r1000 k7" AND grid = 6 ### context: CREATE TABLE table_name_39 (laps INTEGER, bike VARCHAR, grid VARCHAR)
|
### question: Which rider has a lap of 23, grid smaller than 18, and time +44.333? ### answer: SELECT rider FROM table_name_29 WHERE laps = 23 AND grid < 18 AND time = "+44.333" ### context: CREATE TABLE table_name_29 (rider VARCHAR, time VARCHAR, laps VARCHAR, grid VARCHAR)
|
### question: what is the lowest grid with laps larger than 23? ### answer: SELECT MIN(grid) FROM table_name_85 WHERE laps > 23 ### context: CREATE TABLE table_name_85 (grid INTEGER, laps INTEGER)
|
### question: Where did the Bruins play Iowa State? ### answer: SELECT location FROM table_name_58 WHERE opponent = "iowa state" ### context: CREATE TABLE table_name_58 (location VARCHAR, opponent VARCHAR)
|
### question: What Conference was during the NCAA Tournament? ### answer: SELECT conf FROM table_name_24 WHERE date = "ncaa tournament" ### context: CREATE TABLE table_name_24 (conf VARCHAR, date VARCHAR)
|
### question: What is the amount of Avg that has Yards more 265 and a Car more 105? ### answer: SELECT COUNT(avg) FROM table_name_34 WHERE yards > 265 AND car > 105 ### context: CREATE TABLE table_name_34 (avg VARCHAR, yards VARCHAR, car VARCHAR)
|
### question: Which player is ranked number 3? ### answer: SELECT player FROM table_name_83 WHERE rank = 3 ### context: CREATE TABLE table_name_83 (player VARCHAR, rank VARCHAR)
|
### question: What season has the champion of Nicolas Kiesa? ### answer: SELECT season FROM table_name_84 WHERE champion = "nicolas kiesa" ### context: CREATE TABLE table_name_84 (season VARCHAR, champion VARCHAR)
|
### question: Who won the gold medal in 1998? ### answer: SELECT gold FROM table_name_15 WHERE year = 1998 ### context: CREATE TABLE table_name_15 (gold VARCHAR, year VARCHAR)
|
### question: What is the total number of years when Mika Miyazato won the silver? ### answer: SELECT COUNT(year) FROM table_name_11 WHERE silver = "mika miyazato" ### context: CREATE TABLE table_name_11 (year VARCHAR, silver VARCHAR)
|
### question: What is the location of the Asian Games after 2002 when Kim Hyun-soo won the gold? ### answer: SELECT location FROM table_name_57 WHERE year > 2002 AND gold = "kim hyun-soo" ### context: CREATE TABLE table_name_57 (location VARCHAR, year VARCHAR, gold VARCHAR)
|
### question: What is the earliest year that kim hyun-soo won the gold? ### answer: SELECT MIN(year) FROM table_name_51 WHERE gold = "kim hyun-soo" ### context: CREATE TABLE table_name_51 (year INTEGER, gold VARCHAR)
|
### question: What was the broadcast date of the episode that visited South Africa? ### answer: SELECT uk_broadcast_date FROM table_name_68 WHERE countries_visited = "south africa" ### context: CREATE TABLE table_name_68 (uk_broadcast_date VARCHAR, countries_visited VARCHAR)
|
### question: Which country did Natalia Makarova visit? ### answer: SELECT countries_visited FROM table_name_96 WHERE presenter = "natalia makarova" ### context: CREATE TABLE table_name_96 (countries_visited VARCHAR, presenter VARCHAR)
|
### question: How many people attended the game on May 31? ### answer: SELECT SUM(attendance) FROM table_name_25 WHERE date = "may 31" ### context: CREATE TABLE table_name_25 (attendance INTEGER, date VARCHAR)
|
### question: How many people attended the game on May 10? ### answer: SELECT COUNT(attendance) FROM table_name_44 WHERE date = "may 10" ### context: CREATE TABLE table_name_44 (attendance VARCHAR, date VARCHAR)
|
### question: Which Overall is the lowest one that has a Round of 3? ### answer: SELECT MIN(overall) FROM table_name_87 WHERE round = 3 ### context: CREATE TABLE table_name_87 (overall INTEGER, round VARCHAR)
|
### question: Which college did kevin landolt attend? ### answer: SELECT college FROM table_name_10 WHERE name = "kevin landolt" ### context: CREATE TABLE table_name_10 (college VARCHAR, name VARCHAR)
|
### question: Which Round is the average one that has a Pick # larger than 26, and a Position of defensive back? ### answer: SELECT AVG(round) FROM table_name_52 WHERE pick__number > 26 AND position = "defensive back" ### context: CREATE TABLE table_name_52 (round INTEGER, pick__number VARCHAR, position VARCHAR)
|
### question: Which College has a Pick # larger than 25, and a Round of 7, and a Name of chris white? ### answer: SELECT college FROM table_name_13 WHERE pick__number > 25 AND round = 7 AND name = "chris white" ### context: CREATE TABLE table_name_13 (college VARCHAR, name VARCHAR, pick__number VARCHAR, round VARCHAR)
|
### question: what was the average game when record was 16-63? ### answer: SELECT AVG(game) FROM table_name_30 WHERE record = "16-63" ### context: CREATE TABLE table_name_30 (game INTEGER, record VARCHAR)
|
### question: Median household income of $40,340, and a Number of households smaller than 64,767 is what average population? ### answer: SELECT AVG(population) FROM table_name_54 WHERE median_household_income = "$40,340" AND number_of_households < 64 OFFSET 767 ### context: CREATE TABLE table_name_54 (population INTEGER, median_household_income VARCHAR, number_of_households VARCHAR)
|
### question: What party was re-elected as an incumbent of robert p. Kennedy? ### answer: SELECT party FROM table_name_69 WHERE result = "re-elected" AND incumbent = "robert p. kennedy" ### context: CREATE TABLE table_name_69 (party VARCHAR, result VARCHAR, incumbent VARCHAR)
|
### question: Which democratic incumbent is from the district of ohio 7? ### answer: SELECT incumbent FROM table_name_93 WHERE party = "democratic" AND district = "ohio 7" ### context: CREATE TABLE table_name_93 (incumbent VARCHAR, party VARCHAR, district VARCHAR)
|
### question: Which republican was first elected in 1886 in the district of ohio 17? ### answer: SELECT result FROM table_name_16 WHERE party = "republican" AND first_elected = "1886" AND district = "ohio 17" ### context: CREATE TABLE table_name_16 (result VARCHAR, district VARCHAR, party VARCHAR, first_elected VARCHAR)
|
### question: Which result was in the district of ohio 6? ### answer: SELECT result FROM table_name_15 WHERE district = "ohio 6" ### context: CREATE TABLE table_name_15 (result VARCHAR, district VARCHAR)
|
### question: Who was first elected as the result of a retired republican gain in the district of ohio 21? ### answer: SELECT first_elected FROM table_name_45 WHERE result = "retired republican gain" AND district = "ohio 21" ### context: CREATE TABLE table_name_45 (first_elected VARCHAR, result VARCHAR, district VARCHAR)
|
### question: On May 9 after Game 3, what was the Opponent? ### answer: SELECT opponent FROM table_name_66 WHERE game > 3 AND date = "may 9" ### context: CREATE TABLE table_name_66 (opponent VARCHAR, game VARCHAR, date VARCHAR)
|
### question: Which Player has a Position of number 8, and a Club/province of scarlets? ### answer: SELECT player FROM table_name_92 WHERE position = "number 8" AND club_province = "scarlets" ### context: CREATE TABLE table_name_92 (player VARCHAR, position VARCHAR, club_province VARCHAR)
|
### question: Which Club/province has a Position of centre, and Caps of 27? ### answer: SELECT club_province FROM table_name_75 WHERE position = "centre" AND caps = 27 ### context: CREATE TABLE table_name_75 (club_province VARCHAR, position VARCHAR, caps VARCHAR)
|
### question: What position does alun wyn jones play? ### answer: SELECT position FROM table_name_59 WHERE player = "alun wyn jones" ### context: CREATE TABLE table_name_59 (position VARCHAR, player VARCHAR)
|
### question: Which Date of Birth (Age) has a Club/province of blues, and Caps larger than 0, and a Player of tom james? ### answer: SELECT date_of_birth__age_ FROM table_name_47 WHERE club_province = "blues" AND caps > 0 AND player = "tom james" ### context: CREATE TABLE table_name_47 (date_of_birth__age_ VARCHAR, player VARCHAR, club_province VARCHAR, caps VARCHAR)
|
### question: Which Caps is the lowest one that has a Club/province of ospreys, and a Date of Birth (Age) of 19 september 1985? ### answer: SELECT MIN(caps) FROM table_name_70 WHERE club_province = "ospreys" AND date_of_birth__age_ = "19 september 1985" ### context: CREATE TABLE table_name_70 (caps INTEGER, club_province VARCHAR, date_of_birth__age_ VARCHAR)
|
### question: What is the average attendance of the game where the home team was the Blues? ### answer: SELECT AVG(attendance) FROM table_name_40 WHERE home = "blues" ### context: CREATE TABLE table_name_40 (attendance INTEGER, home VARCHAR)
|
### question: Which 8.23 g (127 gr) is the highest one that has a Bullet weight gram (grain) of 8x64mm s, and a Case capacity (%) smaller than 110.3? ### answer: SELECT MAX(823 AS _g__127_gr_) FROM table_name_80 WHERE bullet_weight_gram__grain_ = "8x64mm s" AND case_capacity___percentage_ < 110.3 ### context: CREATE TABLE table_name_80 (bullet_weight_gram__grain_ VARCHAR, case_capacity___percentage_ VARCHAR)
|
### question: What is the Position of the Level 3 winner from Saint Kitts and Nevis? ### answer: SELECT position FROM table_name_51 WHERE level = 3 AND nationality = "saint kitts and nevis" ### context: CREATE TABLE table_name_51 (position VARCHAR, level VARCHAR, nationality VARCHAR)
|
### question: What Goals with a Level of 5 or greater is the lowest? ### answer: SELECT MIN(goals) FROM table_name_95 WHERE level > 5 ### context: CREATE TABLE table_name_95 (goals INTEGER, level INTEGER)
|
### question: What is the Position of the winner with 18 Goals and Level of 5? ### answer: SELECT position FROM table_name_23 WHERE goals = 18 AND level = 5 ### context: CREATE TABLE table_name_23 (position VARCHAR, goals VARCHAR, level VARCHAR)
|
### question: Which University students and adults have minimum diameter of Sakigawa for female gender? ### answer: SELECT university_students_and_adults__18yrs + _ FROM table_name_86 WHERE specification = "minimum diameter of sakigawa" AND gender = "female" ### context: CREATE TABLE table_name_86 (university_students_and_adults__18yrs VARCHAR, _ VARCHAR, specification VARCHAR, gender VARCHAR)
|
### question: Which junior high school has male and female genders? ### answer: SELECT junior_high_school__12_15_yrs_ FROM table_name_97 WHERE gender = "male and female" ### context: CREATE TABLE table_name_97 (junior_high_school__12_15_yrs_ VARCHAR, gender VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.