answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT television_service FROM table_name_11 WHERE hdtv = "no" AND language = "italian" | CREATE TABLE table_name_11 (television_service VARCHAR, hdtv VARCHAR, language VARCHAR) | What is Television Service, when HDTV is No, and when Language is Italian? |
SELECT television_service FROM table_name_54 WHERE package_option = "sky famiglia" AND language = "italian" | CREATE TABLE table_name_54 (television_service VARCHAR, package_option VARCHAR, language VARCHAR) | What is Television Service, when Package/Option is Sky Famiglia, and when Language is Italian? |
SELECT hdtv FROM table_name_82 WHERE language = "english" AND television_service = "mtv dance" | CREATE TABLE table_name_82 (hdtv VARCHAR, language VARCHAR, television_service VARCHAR) | What is HDTV, when Language is English, and when Television Service is MTV Dance? |
SELECT AVG(100 AS s) FROM table_name_51 WHERE player = "tim bresnan" | CREATE TABLE table_name_51 (player VARCHAR) | How many average 100s were there for Tim Bresnan? |
SELECT COUNT(platform) FROM table_name_60 WHERE frequency__per_hour_ < 2 | CREATE TABLE table_name_60 (platform VARCHAR, frequency__per_hour_ INTEGER) | How many Platforms have a Frequency of less than 2? |
SELECT 1999 AS _2000_team FROM table_name_93 WHERE height__cm_ < 187 AND birthplace = "cloquet, minnesota" | CREATE TABLE table_name_93 (height__cm_ VARCHAR, birthplace VARCHAR) | What is the 1999-2000 team, when the Height (cm) is less than 187, and when the Birthplace is Cloquet, Minnesota? |
SELECT SUM(height__cm_) FROM table_name_13 WHERE weight__kg_ = 90 | CREATE TABLE table_name_13 (height__cm_ INTEGER, weight__kg_ VARCHAR) | What is the sum of Height (cm), when the Weight (kg) is 90? |
SELECT losses FROM table_name_92 WHERE pct = ".451" AND finish = "6th" | CREATE TABLE table_name_92 (losses VARCHAR, pct VARCHAR, finish VARCHAR) | Which Losses have a Pct of .451 and Finished 6th? |
SELECT season FROM table_name_65 WHERE losses = "30" | CREATE TABLE table_name_65 (season VARCHAR, losses VARCHAR) | Which season has Losses of 30? |
SELECT season FROM table_name_4 WHERE division = "washington bullets" | CREATE TABLE table_name_4 (season VARCHAR, division VARCHAR) | In which Season was the Division Washington Bullets? |
SELECT season FROM table_name_10 WHERE wins = "29" AND finish = "3rd" | CREATE TABLE table_name_10 (season VARCHAR, wins VARCHAR, finish VARCHAR) | In which season were there Wins of 29 and a Finished place of 3rd? |
SELECT easa__eu_ FROM table_name_76 WHERE notes = "aoc 135" | CREATE TABLE table_name_76 (easa__eu_ VARCHAR, notes VARCHAR) | What is the EASA (EU) when the notes show aoc 135? |
SELECT notes FROM table_name_39 WHERE fleet_size = 3 | CREATE TABLE table_name_39 (notes VARCHAR, fleet_size VARCHAR) | What is the Notes when the fleet size is 3? |
SELECT fleet_size FROM table_name_27 WHERE easa__eu_ = "no" | CREATE TABLE table_name_27 (fleet_size VARCHAR, easa__eu_ VARCHAR) | What is the Fleet Size when the EASA (EU) is no? |
SELECT airline FROM table_name_55 WHERE easa__eu_ = "yes" | CREATE TABLE table_name_55 (airline VARCHAR, easa__eu_ VARCHAR) | hat is the Airline when the EASA (EU) is yes? |
SELECT airline FROM table_name_51 WHERE notes = "aoc 135" | CREATE TABLE table_name_51 (airline VARCHAR, notes VARCHAR) | What is the Airline when the notes show aoc 135? |
SELECT MAX(year) FROM table_name_10 WHERE competition = "new york city marathon" | CREATE TABLE table_name_10 (year INTEGER, competition VARCHAR) | What is the highest Year with a Competition that is new york city marathon? |
SELECT notes FROM table_name_23 WHERE venue = "venice, italy" | CREATE TABLE table_name_23 (notes VARCHAR, venue VARCHAR) | What is the Notes with a Venue that is venice, italy? |
SELECT 1994 FROM table_name_76 WHERE 2002 = "atp masters series" | CREATE TABLE table_name_76 (Id VARCHAR) | What is 1994, when 2002 is ATP Masters Series? |
SELECT 2001 FROM table_name_50 WHERE 1987 = "n/a" AND career_sr = "n/a" | CREATE TABLE table_name_50 (career_sr VARCHAR) | What is 2001, when 1987 is N/A, and when Career SR is N/A? |
SELECT 1989 FROM table_name_39 WHERE 1999 = "f" AND 1994 = "2r" | CREATE TABLE table_name_39 (Id VARCHAR) | What is 1989, when 1999 is F, and when 1994 is 2R? |
SELECT 2001 FROM table_name_33 WHERE 1990 = "a" AND 1987 = "nme" AND 1997 = "1r" | CREATE TABLE table_name_33 (Id VARCHAR) | What is 2001, when 1990 is A, when 1987 is NME, and when 1997 is 1R? |
SELECT 1997 FROM table_name_22 WHERE 2003 = "0 / 4" | CREATE TABLE table_name_22 (Id VARCHAR) | What is 1997, when 2003 is 0 / 4? |
SELECT AVG(total) FROM table_name_38 WHERE nominated_by_the_taoiseach = 0 AND agricultural_panel > 5 | CREATE TABLE table_name_38 (total INTEGER, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR) | What is the average total 0 are nominated by the Taoiseach and the agricultural panel is greater than 5? |
SELECT SUM(cultural_and_educational_panel) FROM table_name_90 WHERE industrial_and_commercial_panel = 0 AND agricultural_panel > 0 | CREATE TABLE table_name_90 (cultural_and_educational_panel INTEGER, industrial_and_commercial_panel VARCHAR, agricultural_panel VARCHAR) | What is the total of the cultural and educational panel when the industrial and commercial panel is 0 and the agricultural panel is greater than 0? |
SELECT SUM(university_of_dublin) FROM table_name_71 WHERE nominated_by_the_taoiseach = 2 AND industrial_and_commercial_panel > 0 | CREATE TABLE table_name_71 (university_of_dublin INTEGER, nominated_by_the_taoiseach VARCHAR, industrial_and_commercial_panel VARCHAR) | What is the total for the University of Dublin when 2 are nominated by Taoiseach and the industrial and commercial panel is greater than 0? |
SELECT MAX(labour_panel) FROM table_name_46 WHERE university_of_dublin < 2 AND agricultural_panel > 5 | CREATE TABLE table_name_46 (labour_panel INTEGER, university_of_dublin VARCHAR, agricultural_panel VARCHAR) | What is the highest labour panel when the university of dublin is less than 2 and the agricultural panel is greater than 5? |
SELECT AVG(university_of_dublin) FROM table_name_75 WHERE industrial_and_commercial_panel > 4 AND national_university_of_ireland > 3 | CREATE TABLE table_name_75 (university_of_dublin INTEGER, industrial_and_commercial_panel VARCHAR, national_university_of_ireland VARCHAR) | What is the average for the university of dublin when the industrial and commercial panel is greater than 4 and the total of the national university of ireland is larger than 3? |
SELECT year FROM table_name_21 WHERE site = "tainan city" AND score = "8–6" | CREATE TABLE table_name_21 (year VARCHAR, site VARCHAR, score VARCHAR) | When has a Site of tainan city and a Score of 8–6? |
SELECT score FROM table_name_35 WHERE winning_team = "wei chuan dragons" | CREATE TABLE table_name_35 (score VARCHAR, winning_team VARCHAR) | Which Score that has a Winning team of wei chuan dragons? |
SELECT 2011 AS _passengers__in_millions_ FROM table_name_37 WHERE distance = "1271km" | CREATE TABLE table_name_37 (distance VARCHAR) | What is the number of 2011 passengers in millions that have traveled a distance of 1271km? |
SELECT COUNT(2012 AS _passengers__in_millions_) FROM table_name_56 WHERE distance = "1075km" | CREATE TABLE table_name_56 (distance VARCHAR) | What is the number of 2012 passengers in millions that have traveled a distance of 1075km? |
SELECT second FROM table_name_18 WHERE sixth = "victoria" | CREATE TABLE table_name_18 (second VARCHAR, sixth VARCHAR) | What is SECOND, when SIXTH is Victoria? |
SELECT second FROM table_name_64 WHERE first = "western australia" | CREATE TABLE table_name_64 (second VARCHAR, first VARCHAR) | What is SECOND, when FIRST is Western Australia? |
SELECT COUNT(lost) FROM table_name_21 WHERE team = "corinthians" AND points > 22 | CREATE TABLE table_name_21 (lost VARCHAR, team VARCHAR, points VARCHAR) | How many losses does corinthians have when they scored over 22 points? |
SELECT termination FROM table_name_2 WHERE earpads = "comfort pads" AND us_msrp = "$150" | CREATE TABLE table_name_2 (termination VARCHAR, earpads VARCHAR, us_msrp VARCHAR) | What was the termination type for the headphones with comfort pads and selling for $150? |
SELECT earpads FROM table_name_88 WHERE headphone_class = "reference" AND us_msrp = "$695" | CREATE TABLE table_name_88 (earpads VARCHAR, headphone_class VARCHAR, us_msrp VARCHAR) | What are the earpads for the headphones that are Reference class and have MSRP of $695? |
SELECT earpads FROM table_name_49 WHERE driver_matched_db > 0.05 AND us_msrp = "$79" | CREATE TABLE table_name_49 (earpads VARCHAR, driver_matched_db VARCHAR, us_msrp VARCHAR) | What earpads do the headphones with driver-matched dB over 0.05 and MSRP of $79 have? |
SELECT race_name FROM table_name_90 WHERE round = 1 | CREATE TABLE table_name_90 (race_name VARCHAR, round VARCHAR) | What is the name of the race from round 1? |
SELECT race_name FROM table_name_37 WHERE city_state = "sydney, new south wales" | CREATE TABLE table_name_37 (race_name VARCHAR, city_state VARCHAR) | Which race was in Sydney, New South Wales? |
SELECT circuit FROM table_name_30 WHERE round > 5 | CREATE TABLE table_name_30 (circuit VARCHAR, round INTEGER) | Which circuit had a round larger than 5? |
SELECT story FROM table_name_42 WHERE date = "october 19, 2011" | CREATE TABLE table_name_42 (story VARCHAR, date VARCHAR) | What is the title of the story published on October 19, 2011? |
SELECT issue FROM table_name_22 WHERE date = "august 17, 2011" | CREATE TABLE table_name_22 (issue VARCHAR, date VARCHAR) | What Issue number was released on August 17, 2011? |
SELECT story FROM table_name_47 WHERE issue = "#8" | CREATE TABLE table_name_47 (story VARCHAR, issue VARCHAR) | What story title was included in Issue #8? |
SELECT young_classification FROM table_name_26 WHERE general_classification = "christian vande velde" AND team_classification = "team columbia" AND sprint_classification = "mark cavendish" | CREATE TABLE table_name_26 (young_classification VARCHAR, sprint_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR) | Which young classification has general classification of Christian Vande Velde for Team Columbia and Mark Cavendish? |
SELECT mountains_classification FROM table_name_80 WHERE general_classification = "mark cavendish" AND team_classification = "garmin-chipotle-h30" | CREATE TABLE table_name_80 (mountains_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR) | What mountains classification corresponds to Mark Cavendish and the Garmin-Chipotle-H30? |
SELECT stage__winner_ FROM table_name_42 WHERE sprint_classification = "mark cavendish" AND team_classification = "garmin-chipotle-h30" AND young_classification = "mark cavendish" | CREATE TABLE table_name_42 (stage__winner_ VARCHAR, young_classification VARCHAR, sprint_classification VARCHAR, team_classification VARCHAR) | Who was the winner for a Sprint Classification and Young Classification to Mark Cavendish and Garmin-Chipotle-H30 for team? |
SELECT outcome FROM table_name_66 WHERE partner = "mark dickson" AND opponents_in_the_final = "hans gildemeister belus prajoux" | CREATE TABLE table_name_66 (outcome VARCHAR, partner VARCHAR, opponents_in_the_final VARCHAR) | Which outcome has a partner named Mark Dickson, with the opponents of Hans Gildemeister Belus Prajoux? |
SELECT format FROM table_name_78 WHERE catalog = "vcrd 103" | CREATE TABLE table_name_78 (format VARCHAR, catalog VARCHAR) | What is the Format with a Catalog that is vcrd 103? |
SELECT region FROM table_name_27 WHERE catalog = "vlmx 1087-3" | CREATE TABLE table_name_27 (region VARCHAR, catalog VARCHAR) | What is the Region with a Catalog that is vlmx 1087-3? |
SELECT format FROM table_name_90 WHERE label = "electropolis" AND date = "2002" | CREATE TABLE table_name_90 (format VARCHAR, label VARCHAR, date VARCHAR) | What is the Format with a Label of electropolis and a Date that is 2002? |
SELECT COUNT(cultural_and_educational_panel) FROM table_name_41 WHERE university_of_dublin = 3 AND labour_panel > 11 | CREATE TABLE table_name_41 (cultural_and_educational_panel VARCHAR, university_of_dublin VARCHAR, labour_panel VARCHAR) | How many in the cultural and educational panel have a university of Dublin of 3 & A labor panel larger than 11? |
SELECT margin FROM table_name_86 WHERE match_date = "oct 17, 2007" | CREATE TABLE table_name_86 (margin VARCHAR, match_date VARCHAR) | What is Margin, when Match Date is Oct 17, 2007? |
SELECT team__b_ FROM table_name_10 WHERE s_no > 17 | CREATE TABLE table_name_10 (team__b_ VARCHAR, s_no INTEGER) | What is Team (B), when S No is greater than 17? |
SELECT COUNT(s_no) FROM table_name_88 WHERE margin = "16 runs" | CREATE TABLE table_name_88 (s_no VARCHAR, margin VARCHAR) | What is the total number of S No(s), when the Margin is 16 runs? |
SELECT MAX(s_no) FROM table_name_8 WHERE match_date = "nov 1, 2003" | CREATE TABLE table_name_8 (s_no INTEGER, match_date VARCHAR) | What is the highest S No, when the Match Date is Nov 1, 2003? |
SELECT team__b_ FROM table_name_31 WHERE s_no < 18 AND margin = "8 wickets" AND match_date = "oct 30, 1989" | CREATE TABLE table_name_31 (team__b_ VARCHAR, match_date VARCHAR, s_no VARCHAR, margin VARCHAR) | What is Team (B), when S No is less than 18, when Margin is 8 Wickets, and when Match Date is Oct 30, 1989? |
SELECT MAX(week) FROM table_name_51 WHERE date = "december 14, 1986" AND attendance < 47 OFFSET 096 | CREATE TABLE table_name_51 (week INTEGER, date VARCHAR, attendance VARCHAR) | When was the last time, since December 14, 1986, that the attendance was lower than 47,096? |
SELECT outcome FROM table_name_33 WHERE surface = "indoor/carpet" AND date = "13 october 1996" | CREATE TABLE table_name_33 (outcome VARCHAR, surface VARCHAR, date VARCHAR) | What is the Surface of indoor/carpet Outcome on 13 October 1996 |
SELECT outcome FROM table_name_5 WHERE tournament = "johannesburg, south africa" | CREATE TABLE table_name_5 (outcome VARCHAR, tournament VARCHAR) | What the Outcome for the Tournament of Johannesburg, South Africa |
SELECT launch_site FROM table_name_26 WHERE rocket = "delta iv" | CREATE TABLE table_name_26 (launch_site VARCHAR, rocket VARCHAR) | What is the launch site of the delta iv rocket? |
SELECT type FROM table_name_13 WHERE date = "unknown" AND satellite = "gps iif-10" | CREATE TABLE table_name_13 (type VARCHAR, date VARCHAR, satellite VARCHAR) | What is the type of the gps iif-10 satellite with an unknown date? |
SELECT type FROM table_name_38 WHERE satellite = "gps iif-10" | CREATE TABLE table_name_38 (type VARCHAR, satellite VARCHAR) | What is the type of the gps iif-10 satellite? |
SELECT launch_site FROM table_name_86 WHERE date = "unknown" AND rocket = "delta iv" AND satellite = "gps iif-10" | CREATE TABLE table_name_86 (launch_site VARCHAR, satellite VARCHAR, date VARCHAR, rocket VARCHAR) | What is the launch site of the delta iv rocket with an unknown date and a gps iif-10 satellite? |
SELECT date FROM table_name_48 WHERE satellite = "gps iif-7" | CREATE TABLE table_name_48 (date VARCHAR, satellite VARCHAR) | What is the date of the gps iif-7 satellite? |
SELECT finish FROM table_name_89 WHERE year = 1992 | CREATE TABLE table_name_89 (finish VARCHAR, year VARCHAR) | What was the finish for 1992? |
SELECT finish FROM table_name_50 WHERE engine = "buick" AND start = "16th" | CREATE TABLE table_name_50 (finish VARCHAR, engine VARCHAR, start VARCHAR) | What was Andretti's finish for the year he had a Buick engine and started 16th? |
SELECT finish FROM table_name_62 WHERE engine = "buick" AND start = "16th" | CREATE TABLE table_name_62 (finish VARCHAR, engine VARCHAR, start VARCHAR) | What was Andretti's finish the year he started 16th with a Buick engine? |
SELECT SUM(drawn) FROM table_name_17 WHERE points = 6 AND against > 16 | CREATE TABLE table_name_17 (drawn INTEGER, points VARCHAR, against VARCHAR) | Which Drawn has a Points of 6, and a Against larger than 16? |
SELECT AVG(points) FROM table_name_80 WHERE difference = "3" AND played < 10 | CREATE TABLE table_name_80 (points INTEGER, difference VARCHAR, played VARCHAR) | Which Points has a Difference of 3, and a Played smaller than 10? |
SELECT SUM(points) FROM table_name_15 WHERE team = "são paulo athletic" AND position > 5 | CREATE TABLE table_name_15 (points INTEGER, team VARCHAR, position VARCHAR) | Which Points has a Team of são paulo athletic, and a Position larger than 5? |
SELECT MIN(position) FROM table_name_95 WHERE played > 9 AND points < 11 AND drawn < 0 | CREATE TABLE table_name_95 (position INTEGER, drawn VARCHAR, played VARCHAR, points VARCHAR) | Which Position has a Played larger than 9, and a Points smaller than 11, and a Drawn smaller than 0? |
SELECT SUM(track) FROM table_name_21 WHERE catalogue = "47-9465" | CREATE TABLE table_name_21 (track INTEGER, catalogue VARCHAR) | What track has a catalogue of 47-9465? |
SELECT track FROM table_name_23 WHERE time = "2:30" | CREATE TABLE table_name_23 (track VARCHAR, time VARCHAR) | What track has a time of 2:30? |
SELECT catalogue FROM table_name_77 WHERE recorded = "9/10/67" AND release_date = "1/9/68" | CREATE TABLE table_name_77 (catalogue VARCHAR, recorded VARCHAR, release_date VARCHAR) | What catalogue was recorded on 9/10/67 and a release date of 1/9/68? |
SELECT rank FROM table_name_96 WHERE bronze < 7 AND nation = "norway" | CREATE TABLE table_name_96 (rank VARCHAR, bronze VARCHAR, nation VARCHAR) | Where does Norway rank in total medals among countries with fewer than 7 bronzes? |
SELECT inns FROM table_name_80 WHERE runs = 435 | CREATE TABLE table_name_80 (inns VARCHAR, runs VARCHAR) | What is the Inns of 435 Runs? |
SELECT AVG(1 AS st_place) FROM table_name_26 WHERE rank > 10 | CREATE TABLE table_name_26 (rank INTEGER) | What is the average 1st place with a Rank that is larger than 10? |
SELECT week_of FROM table_name_70 WHERE runner_up = "lori mcneil" | CREATE TABLE table_name_70 (week_of VARCHAR, runner_up VARCHAR) | What week was the Runner-up Lori McNeil? |
SELECT winner FROM table_name_74 WHERE runner_up = "jing-qian yi" | CREATE TABLE table_name_74 (winner VARCHAR, runner_up VARCHAR) | When the runner-up was Jing-qian Yi, who was the winner? |
SELECT MAX(episode_number) FROM table_name_89 WHERE guest_host = "jamie oliver" | CREATE TABLE table_name_89 (episode_number INTEGER, guest_host VARCHAR) | What is the highest episode number in which Jamie Oliver guest-hosted? |
SELECT score FROM table_name_60 WHERE home = "cavaliers" AND leading_scorer = "lebron james (46)" | CREATE TABLE table_name_60 (score VARCHAR, home VARCHAR, leading_scorer VARCHAR) | What is the score of the home game for the Cavaliers where Lebron James (46) was the lead scorer? |
SELECT leading_scorer FROM table_name_96 WHERE visitor = "bulls" | CREATE TABLE table_name_96 (leading_scorer VARCHAR, visitor VARCHAR) | Who was the leading scorer against the visiting team Bulls? |
SELECT date FROM table_name_28 WHERE home = "rockets" | CREATE TABLE table_name_28 (date VARCHAR, home VARCHAR) | What date was the game played against the home team Rockets? |
SELECT date FROM table_name_67 WHERE penciller = "tomás giorello" AND title = "cimmeria" | CREATE TABLE table_name_67 (date VARCHAR, penciller VARCHAR, title VARCHAR) | What was the Date of the Cimmeria Issue for which the Penciller was Tomás Giorello? |
SELECT date FROM table_name_5 WHERE title = "homecoming" | CREATE TABLE table_name_5 (date VARCHAR, title VARCHAR) | When did the Issue with the Title Homecoming come out? |
SELECT AVG(match) FROM table_name_55 WHERE lost > 0 AND points > 6 AND team = "legia warszawa" AND draw < 0 | CREATE TABLE table_name_55 (match INTEGER, draw VARCHAR, team VARCHAR, lost VARCHAR, points VARCHAR) | Which average match has a lost greater than 0, points greater than 6, legia warszawa as the team, and a draw less than 0? |
SELECT draw FROM table_name_23 WHERE lost < 6 AND points = 28 | CREATE TABLE table_name_23 (draw VARCHAR, lost VARCHAR, points VARCHAR) | What draw has a lost less than 6 with 28 as the points? |
SELECT AVG(lost) FROM table_name_9 WHERE match < 14 | CREATE TABLE table_name_9 (lost INTEGER, match INTEGER) | Which average lost that has a match less than 14? |
SELECT match FROM table_name_65 WHERE team = "skra warszawa" | CREATE TABLE table_name_65 (match VARCHAR, team VARCHAR) | What is the Match for skra warszawa? |
SELECT draw FROM table_name_5 WHERE team = "skra warszawa" | CREATE TABLE table_name_5 (draw VARCHAR, team VARCHAR) | What is the Draw for skra warszawa? |
SELECT lost FROM table_name_61 WHERE points = "dissolved" | CREATE TABLE table_name_61 (lost VARCHAR, points VARCHAR) | What is the Lost when the points were dissolved? |
SELECT draw FROM table_name_76 WHERE match = "10" AND team = "skra warszawa" | CREATE TABLE table_name_76 (draw VARCHAR, match VARCHAR, team VARCHAR) | What is the Draw for match 10, and the team was skra warszawa? |
SELECT draw FROM table_name_2 WHERE team = "tramwajarz łódź" | CREATE TABLE table_name_2 (draw VARCHAR, team VARCHAR) | What is the Draw for the team of tramwajarz łódź? |
SELECT draw FROM table_name_94 WHERE team = "tramwajarz łódź" | CREATE TABLE table_name_94 (draw VARCHAR, team VARCHAR) | What is the Draw for the team tramwajarz łódź? |
SELECT location FROM table_name_12 WHERE novelty = "gen" | CREATE TABLE table_name_12 (location VARCHAR, novelty VARCHAR) | What is the Location when the novelty is gen? |
SELECT unit FROM table_name_16 WHERE status = "nomen oblitum" | CREATE TABLE table_name_16 (unit VARCHAR, status VARCHAR) | What shows for Unit with a status of nomen oblitum? |
SELECT location FROM table_name_23 WHERE name = "telmatosaurus" | CREATE TABLE table_name_23 (location VARCHAR, name VARCHAR) | What is the Location when the name is telmatosaurus? |
SELECT status FROM table_name_12 WHERE novelty = "gen et sp" AND name = "haplocanthosaurus" | CREATE TABLE table_name_12 (status VARCHAR, novelty VARCHAR, name VARCHAR) | What is the Status with a novelty of gen et sp, and the name is haplocanthosaurus? |
SELECT COUNT(league) AS Cup FROM table_name_70 WHERE total < 25 AND league > 19 | CREATE TABLE table_name_70 (league VARCHAR, total VARCHAR) | How many League cups had a total less than 25 and a league larger than 19? |
Subsets and Splits