question
stringlengths 17
201
| answer
stringlengths 21
400
| context
stringlengths 32
286
|
---|---|---|
Frequency of 1.2 ghz, and a Release price ( USD ) of $70 is what socket?
|
SELECT socket FROM table_name_91 WHERE frequency = "1.2 ghz" AND release_price___usd__ = "$70"
|
CREATE TABLE table_name_91 (socket VARCHAR, frequency VARCHAR, release_price___usd__ VARCHAR)
|
Who had a finish of t16?
|
SELECT player FROM table_name_81 WHERE finish = "t16"
|
CREATE TABLE table_name_81 (player VARCHAR, finish VARCHAR)
|
What match had 240 points for?
|
SELECT matches FROM table_name_81 WHERE points_for = "240"
|
CREATE TABLE table_name_81 (matches VARCHAR, points_for VARCHAR)
|
What is the result for the match that was only 2:48 long?
|
SELECT res FROM table_name_63 WHERE time = "2:48"
|
CREATE TABLE table_name_63 (res VARCHAR, time VARCHAR)
|
On how many locations is there a church named Askrova Bedehuskapell, built in 1957?
|
SELECT COUNT(location_of_the_church) FROM table_178381_1 WHERE year_built = "1957" AND church_name = "Askrova bedehuskapell"
|
CREATE TABLE table_178381_1 (location_of_the_church VARCHAR, year_built VARCHAR, church_name VARCHAR)
|
In which city was the berlin marathon?
|
SELECT location FROM table_26166836_1 WHERE road_race = "Berlin Marathon"
|
CREATE TABLE table_26166836_1 (location VARCHAR, road_race VARCHAR)
|
Please show the nominee who has been nominated the greatest number of times.
|
SELECT Nominee FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC LIMIT 1
|
CREATE TABLE musical (Nominee VARCHAR)
|
Which weightlifter with a snatch larger than 117.5 had the lowest bodyweight?
|
SELECT MIN(bodyweight) FROM table_name_35 WHERE snatch > 117.5
|
CREATE TABLE table_name_35 (bodyweight INTEGER, snatch INTEGER)
|
Name the incumbent for first elected 1958
|
SELECT incumbent FROM table_1341577_22 WHERE first_elected = 1958
|
CREATE TABLE table_1341577_22 (incumbent VARCHAR, first_elected VARCHAR)
|
Report the name of all campuses in Los Angeles county.
|
SELECT campus FROM campuses WHERE county = "Los Angeles"
|
CREATE TABLE campuses (campus VARCHAR, county VARCHAR)
|
What score to par won in 1998?
|
SELECT to_par FROM table_18862490_2 WHERE year = 1998
|
CREATE TABLE table_18862490_2 (to_par VARCHAR, year VARCHAR)
|
Show the ministers and the time they took and left office, listed by the time they left office.
|
SELECT minister, took_office, left_office FROM party ORDER BY left_office
|
CREATE TABLE party (minister VARCHAR, took_office VARCHAR, left_office VARCHAR)
|
What are the colors for the enrollment of 2020?
|
SELECT colors FROM table_27653955_1 WHERE enrollment = 2020
|
CREATE TABLE table_27653955_1 (colors VARCHAR, enrollment VARCHAR)
|
Name the Winning driver of mercedes on 22 august?
|
SELECT winning_driver FROM table_name_91 WHERE winning_constructor = "mercedes" AND date = "22 august"
|
CREATE TABLE table_name_91 (winning_driver VARCHAR, winning_constructor VARCHAR, date VARCHAR)
|
What Competition in Main Article of Bradford Bulls 1997 have Robbie Paul as Captain with less than 5 Lost?
|
SELECT competition FROM table_name_54 WHERE captain = "robbie paul" AND lost < 5 AND main_article = "bradford bulls 1997"
|
CREATE TABLE table_name_54 (competition VARCHAR, main_article VARCHAR, captain VARCHAR, lost VARCHAR)
|
Which Nation has a Second of tomas pitonak?
|
SELECT nation FROM table_name_72 WHERE second = "tomas pitonak"
|
CREATE TABLE table_name_72 (nation VARCHAR, second VARCHAR)
|
How many votes did Wales cast when Northern England cast 6?
|
SELECT MIN(wales) FROM table_10128185_2 WHERE northern_england = 6
|
CREATE TABLE table_10128185_2 (wales INTEGER, northern_england VARCHAR)
|
What engine was used when Aguri Suzuki drove the FA13B FA14 Chassis?
|
SELECT engine FROM table_name_31 WHERE chassis = "fa13b fa14" AND driver = "aguri suzuki"
|
CREATE TABLE table_name_31 (engine VARCHAR, chassis VARCHAR, driver VARCHAR)
|
Which office has 1 New Hampshire as a third place state?
|
SELECT office FROM table_20246201_9 WHERE states___third_place = "1 New Hampshire"
|
CREATE TABLE table_20246201_9 (office VARCHAR, states___third_place VARCHAR)
|
What is the yes percentage in the measure that had 35270 yes votes?
|
SELECT _percentage_yes FROM table_256286_5 WHERE yes_votes = 35270
|
CREATE TABLE table_256286_5 (_percentage_yes VARCHAR, yes_votes VARCHAR)
|
Who are the away teams when subiaco oval was the grounds?
|
SELECT away_team FROM table_16388506_1 WHERE ground = "Subiaco Oval"
|
CREATE TABLE table_16388506_1 (away_team VARCHAR, ground VARCHAR)
|
Which result has a recipients and nominees of outstanding achievement in drama with 1995 as the year?
|
SELECT result FROM table_name_87 WHERE recipients_and_nominees = "outstanding achievement in drama" AND year = 1995
|
CREATE TABLE table_name_87 (result VARCHAR, recipients_and_nominees VARCHAR, year VARCHAR)
|
What games have more than 1 draw?
|
SELECT AVG(games) FROM table_name_22 WHERE drawn > 1
|
CREATE TABLE table_name_22 (games INTEGER, drawn INTEGER)
|
Name Event of wc milan and a Total of 23?
|
SELECT score_points FROM table_name_27 WHERE event = "wc milan" AND total = "23"
|
CREATE TABLE table_name_27 (score_points VARCHAR, event VARCHAR, total VARCHAR)
|
Which Current Club has a Player of bassem balaa?
|
SELECT current_club FROM table_name_97 WHERE player = "bassem balaa"
|
CREATE TABLE table_name_97 (current_club VARCHAR, player VARCHAR)
|
What total number of Overalls has a round that was smaller than 1?
|
SELECT COUNT(overall) FROM table_name_86 WHERE round < 1
|
CREATE TABLE table_name_86 (overall VARCHAR, round INTEGER)
|
Which winning song had a debut album in progress?
|
SELECT winning_song FROM table_name_32 WHERE debut_album = "in progress"
|
CREATE TABLE table_name_32 (winning_song VARCHAR, debut_album VARCHAR)
|
Spain with a total of more than 4 medals is in what rank?
|
SELECT rank FROM table_name_15 WHERE total > 4 AND nation = "spain"
|
CREATE TABLE table_name_15 (rank VARCHAR, total VARCHAR, nation VARCHAR)
|
How many episodes aired Saturday, July 11, 2009
|
SELECT COUNT(episode__number) FROM table_17525955_2 WHERE us_air_date = "Saturday, July 11, 2009"
|
CREATE TABLE table_17525955_2 (episode__number VARCHAR, us_air_date VARCHAR)
|
Show the names of pilots from team "Bradley" or "Fordham".
|
SELECT Pilot_name FROM pilot WHERE Team = "Bradley" OR Team = "Fordham"
|
CREATE TABLE pilot (Pilot_name VARCHAR, Team VARCHAR)
|
What song is it that artist morena camilleri does and has more than 38 points
|
SELECT song FROM table_name_46 WHERE points > 38 AND artist = "morena camilleri"
|
CREATE TABLE table_name_46 (song VARCHAR, points VARCHAR, artist VARCHAR)
|
Which From club has a Date of 20 oct. 2008?
|
SELECT from_club FROM table_name_49 WHERE date = "20 oct. 2008"
|
CREATE TABLE table_name_49 (from_club VARCHAR, date VARCHAR)
|
What is the first year of the European Championships competition?
|
SELECT MIN(year) FROM table_name_52 WHERE competition = "european championships"
|
CREATE TABLE table_name_52 (year INTEGER, competition VARCHAR)
|
What Score has a Place of t6, a Country of united states, and a Player of fred couples?
|
SELECT score FROM table_name_7 WHERE place = "t6" AND country = "united states" AND player = "fred couples"
|
CREATE TABLE table_name_7 (score VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)
|
How many Dwellings does Beverly Heights have that have a change percent larger than -5.2?
|
SELECT SUM(dwellings) FROM table_name_37 WHERE neighbourhood = "beverly heights" AND change___percentage_ > -5.2
|
CREATE TABLE table_name_37 (dwellings INTEGER, neighbourhood VARCHAR, change___percentage_ VARCHAR)
|
What is the Score with a Home of colorado, and a Date with may 11?
|
SELECT score FROM table_name_72 WHERE home = "colorado" AND date = "may 11"
|
CREATE TABLE table_name_72 (score VARCHAR, home VARCHAR, date VARCHAR)
|
What is the Founded year of the school located in Paul Smiths, New York?
|
SELECT founded FROM table_name_99 WHERE location = "paul smiths, new york"
|
CREATE TABLE table_name_99 (founded VARCHAR, location VARCHAR)
|
Who was the away team when 6 was the tie no?
|
SELECT away_team FROM table_name_69 WHERE tie_no = "6"
|
CREATE TABLE table_name_69 (away_team VARCHAR, tie_no VARCHAR)
|
What is the highest episode of Wood Flutes segment c?
|
SELECT MAX(episode) FROM table_name_65 WHERE segment_c = "wood flutes"
|
CREATE TABLE table_name_65 (episode INTEGER, segment_c VARCHAR)
|
In which position did Steve play first?
|
SELECT position FROM table_name_26 WHERE first = "steve"
|
CREATE TABLE table_name_26 (position VARCHAR, first VARCHAR)
|
Name the tournament for dominican republic
|
SELECT tournament FROM table_25938117_1 WHERE location = "Dominican Republic"
|
CREATE TABLE table_25938117_1 (tournament VARCHAR, location VARCHAR)
|
when was the episode premiere if the production code is 11.19?
|
SELECT COUNT(original_air_date) FROM table_2226817_12 WHERE production_code = "11.19"
|
CREATE TABLE table_2226817_12 (original_air_date VARCHAR, production_code VARCHAR)
|
Which Opposing Teams is on 06/02/1988?
|
SELECT opposing_teams FROM table_name_18 WHERE date = "06/02/1988"
|
CREATE TABLE table_name_18 (opposing_teams VARCHAR, date VARCHAR)
|
What was the lowest attendance was the opponent was chelsea?
|
SELECT MIN(attendance) FROM table_name_68 WHERE opponent = "chelsea"
|
CREATE TABLE table_name_68 (attendance INTEGER, opponent VARCHAR)
|
What is the acronym used for Beirut Arab University?
|
SELECT acronym FROM table_1160660_1 WHERE university_name = "Beirut Arab University"
|
CREATE TABLE table_1160660_1 (acronym VARCHAR, university_name VARCHAR)
|
List the name of ships in ascending order of tonnage.
|
SELECT Name FROM ship ORDER BY Tonnage
|
CREATE TABLE ship (Name VARCHAR, Tonnage VARCHAR)
|
Who has a reported death of 6 march 1998?
|
SELECT name FROM table_name_63 WHERE reported_death_date = "6 march 1998"
|
CREATE TABLE table_name_63 (name VARCHAR, reported_death_date VARCHAR)
|
How many were in attendance with a loss of Prokopec (2-7)?
|
SELECT attendance FROM table_name_21 WHERE loss = "prokopec (2-7)"
|
CREATE TABLE table_name_21 (attendance VARCHAR, loss VARCHAR)
|
Who drove a race car with a Mercedes IC 108e engine and has an 8-10 record?
|
SELECT drivers FROM table_name_28 WHERE engine = "mercedes ic 108e" AND races = "8-10"
|
CREATE TABLE table_name_28 (drivers VARCHAR, engine VARCHAR, races VARCHAR)
|
Who has a license of proprietary (available on inquiry)?
|
SELECT name FROM table_name_67 WHERE license = "proprietary (available on inquiry)"
|
CREATE TABLE table_name_67 (name VARCHAR, license VARCHAR)
|
Which entrant has Ferrari 038 3.5 v12 engine?
|
SELECT entrant FROM table_name_72 WHERE engine = "ferrari 038 3.5 v12"
|
CREATE TABLE table_name_72 (entrant VARCHAR, engine VARCHAR)
|
How many clubs were remaining in the preliminary round?
|
SELECT clubs_remaining FROM table_28039032_1 WHERE round = "Preliminary round"
|
CREATE TABLE table_28039032_1 (clubs_remaining VARCHAR, round VARCHAR)
|
What is the genre for the hot fm station?
|
SELECT genre FROM table_1601792_3 WHERE station = "Hot FM"
|
CREATE TABLE table_1601792_3 (genre VARCHAR, station VARCHAR)
|
Name the total number of played when points of is 31-7, position is 16 and goals for is less than 35
|
SELECT COUNT(played) FROM table_name_67 WHERE points = "31-7" AND position = 16 AND goals_for < 35
|
CREATE TABLE table_name_67 (played VARCHAR, goals_for VARCHAR, points VARCHAR, position VARCHAR)
|
What is the Name of the power station in the Field of Mokai?
|
SELECT name FROM table_name_22 WHERE field = "mokai"
|
CREATE TABLE table_name_22 (name VARCHAR, field VARCHAR)
|
Which circuit did alfa romeo win?
|
SELECT circuit FROM table_name_41 WHERE winning_constructor = "alfa romeo"
|
CREATE TABLE table_name_41 (circuit VARCHAR, winning_constructor VARCHAR)
|
Which Particle has a Makeup of d s s and a Spin (Parity) J P of 3⁄2 +?
|
SELECT particle FROM table_name_85 WHERE makeup = "d s s" AND spin___parity___j_p = "3⁄2 +"
|
CREATE TABLE table_name_85 (particle VARCHAR, makeup VARCHAR, spin___parity___j_p VARCHAR)
|
How many economy stats for the player with 2/19 BBI?
|
SELECT COUNT(economy) FROM table_28846752_13 WHERE bbi = "2/19"
|
CREATE TABLE table_28846752_13 (economy VARCHAR, bbi VARCHAR)
|
What is the operator for peak 90, in startup year 2010 for the project named Aosp expansion 1 (jackpine ph 1a)?
|
SELECT operator FROM table_name_89 WHERE peak = "90" AND year_startup = "2010" AND project_name = "aosp expansion 1 (jackpine ph 1a)"
|
CREATE TABLE table_name_89 (operator VARCHAR, project_name VARCHAR, peak VARCHAR, year_startup VARCHAR)
|
How many cuts did he make at the PGA championship in 3 events?
|
SELECT MAX(cuts_made) FROM table_name_36 WHERE tournament = "pga championship" AND events > 3
|
CREATE TABLE table_name_36 (cuts_made INTEGER, tournament VARCHAR, events VARCHAR)
|
How many parks is Zippin Pippin located in
|
SELECT COUNT(park) FROM table_2665085_1 WHERE name = "Zippin Pippin"
|
CREATE TABLE table_2665085_1 (park VARCHAR, name VARCHAR)
|
What was the number of Laps with a Grid of more than 3 and Time of 39:24.967?
|
SELECT MIN(laps) FROM table_name_8 WHERE grid > 3 AND time = "39:24.967"
|
CREATE TABLE table_name_8 (laps INTEGER, grid VARCHAR, time VARCHAR)
|
What is the episode number for episode title Leave Takers?
|
SELECT episode__number FROM table_2570269_2 WHERE episode_title = "Leave Takers"
|
CREATE TABLE table_2570269_2 (episode__number VARCHAR, episode_title VARCHAR)
|
Name the team for november 9
|
SELECT team FROM table_15872814_3 WHERE date = "November 9"
|
CREATE TABLE table_15872814_3 (team VARCHAR, date VARCHAR)
|
What is the sum of To par when the Finish is t11?
|
SELECT SUM(to_par) FROM table_name_59 WHERE finish = "t11"
|
CREATE TABLE table_name_59 (to_par INTEGER, finish VARCHAR)
|
What is the total when gold is 1, and rank is more than 4, and bronze is 0?
|
SELECT COUNT(total) FROM table_name_1 WHERE gold = 1 AND rank > 4 AND bronze = 0
|
CREATE TABLE table_name_1 (total VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR)
|
Name the heat rank for senegal
|
SELECT heat_rank FROM table_name_22 WHERE country = "senegal"
|
CREATE TABLE table_name_22 (heat_rank VARCHAR, country VARCHAR)
|
Name the report for philip fotheringham-parker
|
SELECT report FROM table_name_74 WHERE winning_driver = "philip fotheringham-parker"
|
CREATE TABLE table_name_74 (report VARCHAR, winning_driver VARCHAR)
|
What is the lowest round with a place of t15 in a year earlier than 1998?
|
SELECT MIN(round_1) FROM table_name_15 WHERE place = "t15" AND year < 1998
|
CREATE TABLE table_name_15 (round_1 INTEGER, place VARCHAR, year VARCHAR)
|
Which date has a round more than 9?
|
SELECT date FROM table_name_85 WHERE round > 9
|
CREATE TABLE table_name_85 (date VARCHAR, round INTEGER)
|
What is the seat of the county that has a density of 14.1?
|
SELECT seat_of_rcm FROM table_214920_1 WHERE density__pop_per_km2_ = "14.1"
|
CREATE TABLE table_214920_1 (seat_of_rcm VARCHAR, density__pop_per_km2_ VARCHAR)
|
Name the fa cup apps for george green
|
SELECT fa_cup_apps FROM table_19730892_1 WHERE name = "George Green"
|
CREATE TABLE table_19730892_1 (fa_cup_apps VARCHAR, name VARCHAR)
|
Which Alliance Constituency has Seamus Close, position 2 and an election smaller than 1997?
|
SELECT constituency FROM table_name_41 WHERE party = "alliance" AND election < 1997 AND position = 2 AND candidate = "seamus close"
|
CREATE TABLE table_name_41 (constituency VARCHAR, candidate VARCHAR, position VARCHAR, party VARCHAR, election VARCHAR)
|
Which song released on heavenly (hvn152)?
|
SELECT song FROM table_name_86 WHERE release_info = "heavenly (hvn152)"
|
CREATE TABLE table_name_86 (song VARCHAR, release_info VARCHAR)
|
Who directed episodes that had 2.61 million U.S. viewers?
|
SELECT directed_by FROM table_11111116_7 WHERE us_viewers__million_ = "2.61"
|
CREATE TABLE table_11111116_7 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
|
What grid is associated with 67 laps?
|
SELECT grid FROM table_name_45 WHERE laps = 67
|
CREATE TABLE table_name_45 (grid VARCHAR, laps VARCHAR)
|
What NHL team does Denis Desgagnes play for?
|
SELECT nhl_team FROM table_1965650_8 WHERE player = "Denis Desgagnes"
|
CREATE TABLE table_1965650_8 (nhl_team VARCHAR, player VARCHAR)
|
What is the total number of losses of the player that has drawn 1 and played smaller than 12?
|
SELECT COUNT(lost) FROM table_name_73 WHERE drawn = 1 AND played < 12
|
CREATE TABLE table_name_73 (lost VARCHAR, drawn VARCHAR, played VARCHAR)
|
What is the lowest overall number of hurricanes?
|
SELECT MIN(number_of_hurricanes) FROM table_2930244_3
|
CREATE TABLE table_2930244_3 (number_of_hurricanes INTEGER)
|
What city in Svalbard has a longitude of 15°39′e?
|
SELECT city FROM table_name_77 WHERE state = "svalbard" AND longitude = "15°39′e"
|
CREATE TABLE table_name_77 (city VARCHAR, state VARCHAR, longitude VARCHAR)
|
Name the least amount of int yards
|
SELECT MIN(int) AS yards FROM table_15581223_8
|
CREATE TABLE table_15581223_8 (int INTEGER)
|
What is the smallest shot % with ends won larger than 29 and ends lost smaller than 26?
|
SELECT MIN(shot_pct) FROM table_name_1 WHERE ends_won > 29 AND ends_lost < 26
|
CREATE TABLE table_name_1 (shot_pct INTEGER, ends_won VARCHAR, ends_lost VARCHAR)
|
What is the average grid that has a Constructor of brm, tony maggs, and a Laps larger than 102?
|
SELECT AVG(grid) FROM table_name_16 WHERE constructor = "brm" AND driver = "tony maggs" AND laps > 102
|
CREATE TABLE table_name_16 (grid INTEGER, laps VARCHAR, constructor VARCHAR, driver VARCHAR)
|
What is the location attendance of the game on February 25?
|
SELECT location_attendance FROM table_name_52 WHERE date = "february 25"
|
CREATE TABLE table_name_52 (location_attendance VARCHAR, date VARCHAR)
|
what is the location where the record is 1-0
|
SELECT ahli FROM table_26173058_2 WHERE ramtha = "1-0"
|
CREATE TABLE table_26173058_2 (ahli VARCHAR, ramtha VARCHAR)
|
Which home team played on January 5, 2008?
|
SELECT home_team FROM table_name_79 WHERE date = "january 5, 2008"
|
CREATE TABLE table_name_79 (home_team VARCHAR, date VARCHAR)
|
What is the total of Bronze with a total smaller than 3, and a nation of Poland, and a rank larger than 4?
|
SELECT COUNT(bronze) FROM table_name_52 WHERE total < 3 AND nation = "poland" AND rank > 4
|
CREATE TABLE table_name_52 (bronze VARCHAR, rank VARCHAR, total VARCHAR, nation VARCHAR)
|
When did Alan Hutcheson won Class B on round 1?
|
SELECT date FROM table_24853015_1 WHERE class_b_winner = "Alan Hutcheson" AND round = 1
|
CREATE TABLE table_24853015_1 (date VARCHAR, class_b_winner VARCHAR, round VARCHAR)
|
which part on the team does rick schuhwerk play
|
SELECT position FROM table_2781227_10 WHERE player = "Rick Schuhwerk"
|
CREATE TABLE table_2781227_10 (position VARCHAR, player VARCHAR)
|
How many laps were driven in 2:54:23.8?
|
SELECT SUM(laps) FROM table_name_45 WHERE time_retired = "2:54:23.8"
|
CREATE TABLE table_name_45 (laps INTEGER, time_retired VARCHAR)
|
what's the date of birth with # being 2
|
SELECT date_of_birth FROM table_12134383_1 WHERE _number = 2
|
CREATE TABLE table_12134383_1 (date_of_birth VARCHAR, _number VARCHAR)
|
Oklahoma State produced a player in which position in the draft?
|
SELECT position FROM table_name_26 WHERE school_club_team = "oklahoma state"
|
CREATE TABLE table_name_26 (position VARCHAR, school_club_team VARCHAR)
|
What place had a ribbon below 9.8 and a 19.2 total?
|
SELECT MAX(place) FROM table_name_23 WHERE ribbon < 9.8 AND total = 19.2
|
CREATE TABLE table_name_23 (place INTEGER, ribbon VARCHAR, total VARCHAR)
|
Who was the home team in the game with more than 1675, and Olimpia was the away side?
|
SELECT home FROM table_name_28 WHERE attendance > 1675 AND away = "olimpia"
|
CREATE TABLE table_name_28 (home VARCHAR, attendance VARCHAR, away VARCHAR)
|
Which Pick has a Round larger than 8, a Name of kenny fells, and an Overall larger than 297?
|
SELECT SUM(pick) FROM table_name_64 WHERE round > 8 AND name = "kenny fells" AND overall > 297
|
CREATE TABLE table_name_64 (pick INTEGER, overall VARCHAR, round VARCHAR, name VARCHAR)
|
Leopold VI, Duke of Austria is the father-in-law of which person?
|
SELECT spouse FROM table_name_26 WHERE father = "leopold vi, duke of austria"
|
CREATE TABLE table_name_26 (spouse VARCHAR, father VARCHAR)
|
Ram Vaswani was a winner on what date?
|
SELECT date FROM table_name_91 WHERE winner = "ram vaswani"
|
CREATE TABLE table_name_91 (date VARCHAR, winner VARCHAR)
|
If the poverty rate is 12.9%, what is the county?
|
SELECT county FROM table_22815568_6 WHERE poverty_rate = "12.9%"
|
CREATE TABLE table_22815568_6 (county VARCHAR, poverty_rate VARCHAR)
|
What is the lowest expenditures on R&D for Poland after 2011?
|
SELECT MIN(expenditures_on_r) & d__billions_of_us$_, _ppp__ FROM table_name_94 WHERE country_region = "poland" AND year > 2011
|
CREATE TABLE table_name_94 (_ppp__ VARCHAR, d__billions_of_us$_ VARCHAR, expenditures_on_r INTEGER, country_region VARCHAR, year VARCHAR)
|
What is the average Game, when Team is "Milwaukee"?
|
SELECT AVG(game) FROM table_name_78 WHERE team = "milwaukee"
|
CREATE TABLE table_name_78 (game INTEGER, team VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.