question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What is total amount of points of entrants with a ford cosworth engine and a year later than 1991? | CREATE TABLE table_name_21 (points VARCHAR, engine VARCHAR, year VARCHAR) | SELECT COUNT(points) FROM table_name_21 WHERE engine = "ford cosworth" AND year > 1991 |
When has a Venue of Adelaide Oval? | CREATE TABLE table_name_94 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_94 WHERE venue = "adelaide oval" |
What is the Home Captain which has Waca Ground as a Venue | CREATE TABLE table_name_81 (home_captain VARCHAR, venue VARCHAR) | SELECT home_captain FROM table_name_81 WHERE venue = "waca ground" |
Name the venue for score of 1-3 | CREATE TABLE table_name_75 (venue VARCHAR, score VARCHAR) | SELECT venue FROM table_name_75 WHERE score = "1-3" |
Name the points with chassis of march 751 | CREATE TABLE table_name_21 (points VARCHAR, chassis VARCHAR) | SELECT points FROM table_name_21 WHERE chassis = "march 751" |
Name the most points for years before 1979 and chassis of alfa romeo 177 | CREATE TABLE table_name_33 (points INTEGER, chassis VARCHAR, year VARCHAR) | SELECT MAX(points) FROM table_name_33 WHERE chassis = "alfa romeo 177" AND year < 1979 |
Name the total number of points for beta team march 1975 and chassis of march 751 | CREATE TABLE table_name_86 (points VARCHAR, chassis VARCHAR, entrant VARCHAR, year VARCHAR) | SELECT COUNT(points) FROM table_name_86 WHERE entrant = "beta team march" AND year = 1975 AND chassis = "march 751" |
What Persian word(s) has the same meaning as the Romani word duj? | CREATE TABLE table_name_92 (persian VARCHAR, romani VARCHAR) | SELECT persian FROM table_name_92 WHERE romani = "duj" |
What Domari word has the same meaning as the Hindi word pāñc? | CREATE TABLE table_name_40 (domari VARCHAR, hindi VARCHAR) | SELECT domari FROM table_name_40 WHERE hindi = "pāñc" |
What word in Hindi has the same meaning as the Lomavren word saj? | CREATE TABLE table_name_99 (hindi VARCHAR, lomavren VARCHAR) | SELECT hindi FROM table_name_99 WHERE lomavren = "saj" |
What Persian word has the same meaning as the Domari word na? | CREATE TABLE table_name_84 (persian VARCHAR, domari VARCHAR) | SELECT persian FROM table_name_84 WHERE domari = "na" |
What Romani word has the same meaning as the Persian word dah? | CREATE TABLE table_name_56 (romani VARCHAR, persian VARCHAR) | SELECT romani FROM table_name_56 WHERE persian = "dah" |
What Lomavren word has the same meaning as the Hindi word do? | CREATE TABLE table_name_97 (lomavren VARCHAR, hindi VARCHAR) | SELECT lomavren FROM table_name_97 WHERE hindi = "do" |
Which type of surface do Amer Delic Robert Kendrick's opponents have? | CREATE TABLE table_name_53 (surface VARCHAR, opponents VARCHAR) | SELECT surface FROM table_name_53 WHERE opponents = "amer delic robert kendrick" |
On which surface was the score w/o? | CREATE TABLE table_name_82 (surface VARCHAR, score VARCHAR) | SELECT surface FROM table_name_82 WHERE score = "w/o" |
What is Diego Junqueira Gabriel Trujillo-Soler's opponent's score? | CREATE TABLE table_name_35 (score VARCHAR, opponents VARCHAR) | SELECT score FROM table_name_35 WHERE opponents = "diego junqueira gabriel trujillo-soler" |
Which surface do opponents of Thomas Oger Nicolas Tourte have? | CREATE TABLE table_name_18 (surface VARCHAR, opponents VARCHAR) | SELECT surface FROM table_name_18 WHERE opponents = "thomas oger nicolas tourte" |
In the circuit of Madonie, what was the date that had the winning constructor Bugatti? | CREATE TABLE table_name_17 (date VARCHAR, circuit VARCHAR, winning_constructor VARCHAR) | SELECT date FROM table_name_17 WHERE circuit = "madonie" AND winning_constructor = "bugatti" |
Who was the winning driver of the Savio Circuit with the constructor Itala? | CREATE TABLE table_name_5 (winning_driver VARCHAR, winning_constructor VARCHAR, name VARCHAR) | SELECT winning_driver FROM table_name_5 WHERE winning_constructor = "itala" AND name = "savio circuit" |
What is the date of death of the Countess of Flanders who was born in 1309? | CREATE TABLE table_name_75 (death VARCHAR, birth VARCHAR) | SELECT death FROM table_name_75 WHERE birth = "1309" |
What is the date of death of the Countess of Flanders who was born in 1309? | CREATE TABLE table_name_69 (death VARCHAR, birth VARCHAR) | SELECT death FROM table_name_69 WHERE birth = "1309" |
Who was Margaret of Brabant's spouse? | CREATE TABLE table_name_71 (spouse VARCHAR, name VARCHAR) | SELECT spouse FROM table_name_71 WHERE name = "margaret of brabant" |
What is the average year for Wallenstein with 1a1 design? | CREATE TABLE table_name_49 (acquired INTEGER, design VARCHAR, name VARCHAR) | SELECT AVG(acquired) FROM table_name_49 WHERE design = "1a1" AND name = "wallenstein" |
What design was acquired in 1875? | CREATE TABLE table_name_32 (design VARCHAR, acquired VARCHAR) | SELECT design FROM table_name_32 WHERE acquired = 1875 |
Who was the incumbent when Arthur Osborne won the election? | CREATE TABLE table_name_55 (incumbent VARCHAR, winner VARCHAR) | SELECT incumbent FROM table_name_55 WHERE winner = "arthur osborne" |
How many saves did the player with a 92.3% save rate and 217 goals have? | CREATE TABLE table_name_10 (saves INTEGER, save__percentage VARCHAR, goals_against VARCHAR) | SELECT SUM(saves) FROM table_name_10 WHERE save__percentage = "92.3%" AND goals_against > 217 |
Who is the opponent of the match with a H/A of h, Beguiristain Iceta as the referee, and a kick off at 1993-04-18 17:00? | CREATE TABLE table_name_50 (opponents VARCHAR, kick_off VARCHAR, h___a VARCHAR, referee VARCHAR) | SELECT opponents FROM table_name_50 WHERE h___a = "h" AND referee = "beguiristain iceta" AND kick_off = "1993-04-18 17:00" |
What is the result of the match with a H/A of A and a kick off at 1992-10-31 16:00? | CREATE TABLE table_name_14 (result VARCHAR, h___a VARCHAR, kick_off VARCHAR) | SELECT result FROM table_name_14 WHERE h___a = "a" AND kick_off = "1992-10-31 16:00" |
How many Laps were there in 2010? | CREATE TABLE table_name_46 (laps INTEGER, year VARCHAR) | SELECT SUM(laps) FROM table_name_46 WHERE year = 2010 |
Who was the co-driver for Toyota Racing after the year 2012? | CREATE TABLE table_name_59 (co_drivers VARCHAR, team VARCHAR, year VARCHAR) | SELECT co_drivers FROM table_name_59 WHERE team = "toyota racing" AND year > 2012 |
How many laps were driven by the racer who earned 4th place in 2013? | CREATE TABLE table_name_47 (laps VARCHAR, pos VARCHAR, year VARCHAR) | SELECT COUNT(laps) FROM table_name_47 WHERE pos = "4th" AND year > 2013 |
Which opponent has a record of 78-60? | CREATE TABLE table_name_62 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_62 WHERE record = "78-60" |
Which opponent has a loss of erickson (8-19)? | CREATE TABLE table_name_46 (opponent VARCHAR, loss VARCHAR) | SELECT opponent FROM table_name_46 WHERE loss = "erickson (8-19)" |
Which Attendance has a Game score less than 3, and a Score of 2 – 5? | CREATE TABLE table_name_58 (attendance INTEGER, game VARCHAR, score VARCHAR) | SELECT AVG(attendance) FROM table_name_58 WHERE game < 3 AND score = "2 – 5" |
Who has Series of 2 – 3? | CREATE TABLE table_name_77 (visitor VARCHAR, series VARCHAR) | SELECT visitor FROM table_name_77 WHERE series = "2 – 3" |
Who has a Home of detroit on april 22? | CREATE TABLE table_name_95 (visitor VARCHAR, home VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_95 WHERE home = "detroit" AND date = "april 22" |
Leading Scorer that has a Goal smaller than 23, and a League of football league division 3, and a Year of 1997–98 is who? | CREATE TABLE table_name_24 (leading_scorer VARCHAR, year VARCHAR, goals VARCHAR, league VARCHAR) | SELECT leading_scorer FROM table_name_24 WHERE goals < 23 AND league = "football league division 3" AND year = "1997–98" |
Leading Scorer of Ian rush is what lowest # of goals? | CREATE TABLE table_name_45 (goals INTEGER, leading_scorer VARCHAR) | SELECT MIN(goals) FROM table_name_45 WHERE leading_scorer = "ian rush" |
Goals that has a Position of 14th of 24, and a League of football conference has what sum? | CREATE TABLE table_name_63 (goals INTEGER, position VARCHAR, league VARCHAR) | SELECT SUM(goals) FROM table_name_63 WHERE position = "14th of 24" AND league = "football conference" |
Position of 7th of 24, and a Goals smaller than 24 is what league? | CREATE TABLE table_name_13 (league VARCHAR, position VARCHAR, goals VARCHAR) | SELECT league FROM table_name_13 WHERE position = "7th of 24" AND goals < 24 |
Which entrant scored less than 2 points? | CREATE TABLE table_name_96 (entrant VARCHAR, points INTEGER) | SELECT entrant FROM table_name_96 WHERE points < 2 |
Which entrant used the chassis de tomaso 505? | CREATE TABLE table_name_9 (entrant VARCHAR, chassis VARCHAR) | SELECT entrant FROM table_name_9 WHERE chassis = "de tomaso 505" |
What is the Presentation of Credentials has a Termination of Mission listed as August 15, 2000? | CREATE TABLE table_name_91 (presentation_of_credentials VARCHAR, termination_of_mission VARCHAR) | SELECT presentation_of_credentials FROM table_name_91 WHERE termination_of_mission = "august 15, 2000" |
Which Presentation of Credentials is listed for the Appointed by Benjamin Harrison? | CREATE TABLE table_name_55 (presentation_of_credentials VARCHAR, appointed_by VARCHAR) | SELECT presentation_of_credentials FROM table_name_55 WHERE appointed_by = "benjamin harrison" |
What is the Termination of Mission with a Title of Ambassador Extraordinary and Plenipotentiary with a Representative of Reynold E. Carlson? | CREATE TABLE table_name_37 (termination_of_mission VARCHAR, title VARCHAR, representative VARCHAR) | SELECT termination_of_mission FROM table_name_37 WHERE title = "ambassador extraordinary and plenipotentiary" AND representative = "reynold e. carlson" |
Which Representative has a Termination of Mission as May 24, 1905? | CREATE TABLE table_name_10 (representative VARCHAR, termination_of_mission VARCHAR) | SELECT representative FROM table_name_10 WHERE termination_of_mission = "may 24, 1905" |
What Title has a Presentation of Credentials of October 4, 1988? | CREATE TABLE table_name_90 (title VARCHAR, presentation_of_credentials VARCHAR) | SELECT title FROM table_name_90 WHERE presentation_of_credentials = "october 4, 1988" |
What is the Appointed by that has the Title of Ambassador Extraordinary and Plenipotentiary and has a Representative of Spruille Braden? | CREATE TABLE table_name_55 (appointed_by VARCHAR, title VARCHAR, representative VARCHAR) | SELECT appointed_by FROM table_name_55 WHERE title = "ambassador extraordinary and plenipotentiary" AND representative = "spruille braden" |
Who's the race leader of Cuneo to Turin? | CREATE TABLE table_name_90 (race_leader VARCHAR, course VARCHAR) | SELECT race_leader FROM table_name_90 WHERE course = "cuneo to turin" |
What course are they running on stage 1? | CREATE TABLE table_name_5 (course VARCHAR, stage VARCHAR) | SELECT course FROM table_name_5 WHERE stage = "1" |
What's the distance of the course of stage 4? | CREATE TABLE table_name_73 (distance VARCHAR, stage VARCHAR) | SELECT distance FROM table_name_73 WHERE stage = "4" |
What was the distance of the course for stage 4? | CREATE TABLE table_name_13 (distance VARCHAR, stage VARCHAR) | SELECT distance FROM table_name_13 WHERE stage = "4" |
Who was the race leader for stage 5? | CREATE TABLE table_name_66 (race_leader VARCHAR, stage VARCHAR) | SELECT race_leader FROM table_name_66 WHERE stage = "5" |
Name the result for 2000 afc asian cup qualification | CREATE TABLE table_name_14 (result VARCHAR, competition VARCHAR) | SELECT result FROM table_name_14 WHERE competition = "2000 afc asian cup qualification" |
Name the least total when bronze is less than 2 and rank is more than 2 with silver less than 1 | CREATE TABLE table_name_24 (total INTEGER, silver VARCHAR, bronze VARCHAR, rank VARCHAR) | SELECT MIN(total) FROM table_name_24 WHERE bronze < 2 AND rank > 2 AND silver < 1 |
What is the largest gold with a Total of 2, and a Rank smaller than 2? | CREATE TABLE table_name_91 (gold INTEGER, total VARCHAR, rank VARCHAR) | SELECT MAX(gold) FROM table_name_91 WHERE total = 2 AND rank < 2 |
What is the lowest total from United States with a Rank smaller than 2? | CREATE TABLE table_name_17 (total INTEGER, nation VARCHAR, rank VARCHAR) | SELECT MIN(total) FROM table_name_17 WHERE nation = "united states" AND rank < 2 |
What is the average silver with a Rank smaller than 2 and more than 1 gold? | CREATE TABLE table_name_61 (silver INTEGER, rank VARCHAR, gold VARCHAR) | SELECT AVG(silver) FROM table_name_61 WHERE rank < 2 AND gold > 1 |
What is the smallest rank with a Total smaller than 1? | CREATE TABLE table_name_69 (rank INTEGER, total INTEGER) | SELECT MIN(rank) FROM table_name_69 WHERE total < 1 |
What was the average year that Xuxa 3 earned the certification 2x platinum, and that the sales were higher than 750,000? | CREATE TABLE table_name_60 (year INTEGER, sales VARCHAR, certification VARCHAR, álbum VARCHAR) | SELECT AVG(year) FROM table_name_60 WHERE certification = "2x platinum" AND álbum = "xuxa 3" AND sales > 750 OFFSET 000 |
What were the number of sales before 1991? | CREATE TABLE table_name_59 (sales VARCHAR, year INTEGER) | SELECT sales FROM table_name_59 WHERE year < 1991 |
What álbum was in the year 1996? | CREATE TABLE table_name_65 (álbum VARCHAR, year VARCHAR) | SELECT álbum FROM table_name_65 WHERE year = 1996 |
What is the high Population (total) from 1976 with a (Barcaldine) smaller than 1,780? | CREATE TABLE table_name_96 (population__total_ INTEGER, year VARCHAR, _barcaldine_ VARCHAR) | SELECT MAX(population__total_) FROM table_name_96 WHERE year = 1976 AND _barcaldine_ < 1 OFFSET 780 |
What Year has an (Aramac) of 832 and a Population (Total) less than 3,762? | CREATE TABLE table_name_42 (year INTEGER, _aramac_ VARCHAR, population__total_ VARCHAR) | SELECT SUM(year) FROM table_name_42 WHERE _aramac_ = 832 AND population__total_ < 3 OFFSET 762 |
What was the engine of the Hoover Motor Express after 1955 with greater than 0 points? | CREATE TABLE table_name_42 (engine VARCHAR, entrant VARCHAR, year VARCHAR, points VARCHAR) | SELECT engine FROM table_name_42 WHERE year > 1955 AND points > 0 AND entrant = "hoover motor express" |
What is the average year that the Belanger Motors had an Offenhauser l4 engine? | CREATE TABLE table_name_8 (year INTEGER, engine VARCHAR, entrant VARCHAR) | SELECT AVG(year) FROM table_name_8 WHERE engine = "offenhauser l4" AND entrant = "belanger motors" |
Who is the prisoner that is older than 45 and has served less than 22 years on death row? | CREATE TABLE table_name_39 (name VARCHAR, current_age VARCHAR, years_on_death_row VARCHAR) | SELECT name FROM table_name_39 WHERE current_age > 45 AND years_on_death_row < 22 |
What is the prisoner's name that is currently 29 years old? | CREATE TABLE table_name_35 (name VARCHAR, current_age VARCHAR) | SELECT name FROM table_name_35 WHERE current_age = 29 |
Name the 2010 for 2007 of a and 2012 of a | CREATE TABLE table_name_77 (Id VARCHAR) | SELECT 2010 FROM table_name_77 WHERE 2007 = "a" AND 2012 = "a" |
Name the 2008 for 2012 being a and tournament of australian open | CREATE TABLE table_name_20 (tournament VARCHAR) | SELECT 2008 FROM table_name_20 WHERE 2012 = "a" AND tournament = "australian open" |
Name the tournament for 2012 grand slam tournaments | CREATE TABLE table_name_32 (tournament VARCHAR) | SELECT tournament FROM table_name_32 WHERE 2012 = "grand slam tournaments" |
What is the earliest year that has a Bristol engine? | CREATE TABLE table_name_98 (year INTEGER, engine VARCHAR) | SELECT MIN(year) FROM table_name_98 WHERE engine = "bristol" |
What was the record at the game that had a loss of Brandon (4–8)? | CREATE TABLE table_name_86 (record VARCHAR, loss VARCHAR) | SELECT record FROM table_name_86 WHERE loss = "brandon (4–8)" |
What was the loss of the game with a record of 54–42? | CREATE TABLE table_name_63 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_63 WHERE record = "54–42" |
Who was the opponent at the game that had a loss of Bell (6–9)? | CREATE TABLE table_name_96 (opponent VARCHAR, loss VARCHAR) | SELECT opponent FROM table_name_96 WHERE loss = "bell (6–9)" |
What was the record at the game that had a loss of Wyatt (4–4)? | CREATE TABLE table_name_41 (record VARCHAR, loss VARCHAR) | SELECT record FROM table_name_41 WHERE loss = "wyatt (4–4)" |
In 1985, how many points were earned by the entrant with the March 85B chassis? | CREATE TABLE table_name_77 (points INTEGER, year VARCHAR, chassis VARCHAR) | SELECT MAX(points) FROM table_name_77 WHERE year = 1985 AND chassis = "march 85b" |
How many points did Corbari Italia earn in 1985? | CREATE TABLE table_name_90 (points VARCHAR, entrant VARCHAR, year VARCHAR) | SELECT points FROM table_name_90 WHERE entrant = "corbari italia" AND year = 1985 |
Record of 18–15–6 belongs to what lowest attendance? | CREATE TABLE table_name_32 (attendance INTEGER, record VARCHAR) | SELECT MIN(attendance) FROM table_name_32 WHERE record = "18–15–6" |
Decision of parent, and a Home of philadelphia, and a Record of 20–16–7 is on what date? | CREATE TABLE table_name_23 (date VARCHAR, record VARCHAR, decision VARCHAR, home VARCHAR) | SELECT date FROM table_name_23 WHERE decision = "parent" AND home = "philadelphia" AND record = "20–16–7" |
Decision of parent, and a Visitor of Philadelphia, and a Date of January 27 had what score? | CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR, decision VARCHAR, visitor VARCHAR) | SELECT score FROM table_name_26 WHERE decision = "parent" AND visitor = "philadelphia" AND date = "january 27" |
What was the average Game, when the attendance was higher than 56,040? | CREATE TABLE table_name_46 (game INTEGER, attendance INTEGER) | SELECT AVG(game) FROM table_name_46 WHERE attendance > 56 OFFSET 040 |
What was date when the time was 2:26 and the location was Riverfront Stadium? | CREATE TABLE table_name_62 (date VARCHAR, time VARCHAR, location VARCHAR) | SELECT date FROM table_name_62 WHERE time = "2:26" AND location = "riverfront stadium" |
Who is the visitor on May 9? | CREATE TABLE table_name_14 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_14 WHERE date = "may 9" |
Which Discoveryhas an Operator(s) of lundin? | CREATE TABLE table_name_4 (discovery VARCHAR, operator_s_ VARCHAR) | SELECT discovery FROM table_name_4 WHERE operator_s_ = "lundin" |
Which Geological Trend has an Operator(s) of woc? | CREATE TABLE table_name_41 (geological_trend VARCHAR, operator_s_ VARCHAR) | SELECT geological_trend FROM table_name_41 WHERE operator_s_ = "woc" |
Which operator has a Reserve of 100 bbbl? | CREATE TABLE table_name_96 (operator_s_ VARCHAR, reserves VARCHAR) | SELECT operator_s_ FROM table_name_96 WHERE reserves = "100 bbbl" |
Which Field has a Discovery of na, and an Operator(s) of woc, and a Geological Trend of western | CREATE TABLE table_name_15 (field VARCHAR, geological_trend VARCHAR, discovery VARCHAR, operator_s_ VARCHAR) | SELECT field FROM table_name_15 WHERE discovery = "na" AND operator_s_ = "woc" AND geological_trend = "western" |
What primary sponsor(s) owns ford fusion car(s) and the crew chief is Drew Blickensderfer? | CREATE TABLE table_name_34 (primary_sponsor_s_ VARCHAR, car_s_ VARCHAR, crew_chief VARCHAR) | SELECT primary_sponsor_s_ FROM table_name_34 WHERE car_s_ = "ford fusion" AND crew_chief = "drew blickensderfer" |
What crew chief has an owner name Jack Roush and driver Greg Biffle? | CREATE TABLE table_name_12 (crew_chief VARCHAR, owner_s_ VARCHAR, driver_s_ VARCHAR) | SELECT crew_chief FROM table_name_12 WHERE owner_s_ = "jack roush" AND driver_s_ = "greg biffle" |
What primary sponsor has the owner Rick Hendrick and their crew chief is Alan Gustafson? | CREATE TABLE table_name_50 (primary_sponsor_s_ VARCHAR, owner_s_ VARCHAR, crew_chief VARCHAR) | SELECT primary_sponsor_s_ FROM table_name_50 WHERE owner_s_ = "rick hendrick" AND crew_chief = "alan gustafson" |
What is the value for Bahia when the Northeast total was 6747013? | CREATE TABLE table_name_97 (bahia VARCHAR, northeast_total VARCHAR) | SELECT bahia FROM table_name_97 WHERE northeast_total = "6747013" |
What was the lowest number in Pernambuco where the Northeast had a total of 119978? | CREATE TABLE table_name_55 (pernambuco INTEGER, northeast_total VARCHAR) | SELECT MIN(pernambuco) FROM table_name_55 WHERE northeast_total = "119978" |
Who was the winner from the United States the year Kimberly Kim was runner-up? | CREATE TABLE table_name_59 (winner VARCHAR, runner_up VARCHAR, country VARCHAR) | SELECT winner FROM table_name_59 WHERE runner_up = "kimberly kim" AND country = "united states" |
What number pick was the player for the Oakland Athletics who plays the 1B position? | CREATE TABLE table_name_11 (pick VARCHAR, position VARCHAR, team VARCHAR) | SELECT pick FROM table_name_11 WHERE position = "1b" AND team = "oakland athletics" |
What tournament was at the 2007 Olympic Games? | CREATE TABLE table_name_91 (tournament VARCHAR) | SELECT tournament FROM table_name_91 WHERE 2007 = "olympic games" |
What tournament was at the 2011 Cincinnati Masters? | CREATE TABLE table_name_5 (tournament VARCHAR) | SELECT 2011 FROM table_name_5 WHERE tournament = "cincinnati masters" |
In what heat did the swimmer in Lane 6 rank higher than 7 with a time of 4:08.27? | CREATE TABLE table_name_17 (heat INTEGER, rank VARCHAR, lane VARCHAR, time VARCHAR) | SELECT SUM(heat) FROM table_name_17 WHERE lane = 6 AND time = "4:08.27" AND rank > 7 |
What was the Comp on 2007-08-06? | CREATE TABLE table_name_16 (comp VARCHAR, date VARCHAR) | SELECT comp FROM table_name_16 WHERE date = "2007-08-06" |
How many Apogee sis Ops-8285 with more than 1500 kg? | CREATE TABLE table_name_74 (apogee__km_ VARCHAR, alt_name VARCHAR, mass__kg_ VARCHAR) | SELECT COUNT(apogee__km_) FROM table_name_74 WHERE alt_name = "ops-8285" AND mass__kg_ > 1500 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.