combined_text stringlengths 106 1.05k |
|---|
###question:Which Team Name has Poles of 0, and a Final Placing of 29th?###answer:SELECT team_name FROM table_name_25 WHERE poles = "0" AND final_placing = "29th"###context:CREATE TABLE table_name_25 (team_name VARCHAR, poles VARCHAR, final_placing VARCHAR) |
###question:Which Series has a Final Placing of 9th, and Podiums of 2?###answer:SELECT series FROM table_name_31 WHERE final_placing = "9th" AND podiums = "2"###context:CREATE TABLE table_name_31 (series VARCHAR, final_placing VARCHAR, podiums VARCHAR) |
###question:Which Series has a Team Name of sunred engineering?###answer:SELECT series FROM table_name_34 WHERE team_name = "sunred engineering"###context:CREATE TABLE table_name_34 (series VARCHAR, team_name VARCHAR) |
###question:Which Points have Wins of 0, and a Final Placing of 21st?###answer:SELECT points FROM table_name_38 WHERE wins = "0" AND final_placing = "21st"###context:CREATE TABLE table_name_38 (points VARCHAR, wins VARCHAR, final_placing VARCHAR) |
###question:Name the bronze for lahti###answer:SELECT bronze FROM table_name_46 WHERE place = "lahti"###context:CREATE TABLE table_name_46 (bronze VARCHAR, place VARCHAR) |
###question:Which Rank has Goals larger than 10, and a Scorer of choi sang-kuk?###answer:SELECT rank FROM table_name_35 WHERE goals > 10 AND scorer = "choi sang-kuk"###context:CREATE TABLE table_name_35 (rank VARCHAR, goals VARCHAR, scorer VARCHAR) |
###question:Which Rank has a Scorer of lee sang-cheol?###answer:SELECT rank FROM table_name_69 WHERE scorer = "lee sang-cheol"###context:CREATE TABLE table_name_69 (rank VARCHAR, scorer VARCHAR) |
###question:Which Club has a Rank of 5?###answer:SELECT club FROM table_name_40 WHERE rank = "5"###context:CREATE TABLE table_name_40 (club VARCHAR, rank VARCHAR) |
###question:How many original bills amendments cosponsored lower than 64,with the bill support withdrawn lower than 0?###answer:SELECT MIN(original_amendments_cosponsored) FROM table_name_50 WHERE all_bills_sponsored < 64 AND bill_support_withdrawn < 0###context:CREATE TABLE table_name_50 (original_amendments_cosponsor... |
###question:Who is the democratic incumbent that was re-elected?###answer:SELECT incumbent FROM table_name_55 WHERE status = "re-elected" AND party = "democratic"###context:CREATE TABLE table_name_55 (incumbent VARCHAR, status VARCHAR, party VARCHAR) |
###question:What year was republican, re-elected incumbent John all barham elected?###answer:SELECT elected FROM table_name_92 WHERE party = "republican" AND status = "re-elected" AND incumbent = "john all barham"###context:CREATE TABLE table_name_92 (elected VARCHAR, incumbent VARCHAR, party VARCHAR, status VARCHAR) |
###question:What day in october was game number 4 with under 3 points?###answer:SELECT COUNT(october) FROM table_name_18 WHERE game = 4 AND points < 3###context:CREATE TABLE table_name_18 (october VARCHAR, game VARCHAR, points VARCHAR) |
###question:Which school was the drafted player from in a pick larger than 181?###answer:SELECT school FROM table_name_27 WHERE pick > 181###context:CREATE TABLE table_name_27 (school VARCHAR, pick INTEGER) |
###question:Which points against has 17 as the lost?###answer:SELECT points_against FROM table_name_61 WHERE lost = "17"###context:CREATE TABLE table_name_61 (points_against VARCHAR, lost VARCHAR) |
###question:What lost has 528 as the points?###answer:SELECT lost FROM table_name_78 WHERE points_for = "528"###context:CREATE TABLE table_name_78 (lost VARCHAR, points_for VARCHAR) |
###question:What is the drawn that has 16 as the trys bonus?###answer:SELECT drawn FROM table_name_31 WHERE try_bonus = "16"###context:CREATE TABLE table_name_31 (drawn VARCHAR, try_bonus VARCHAR) |
###question:What club has tries for in the category tries for?###answer:SELECT club FROM table_name_64 WHERE tries_for = "tries for"###context:CREATE TABLE table_name_64 (club VARCHAR, tries_for VARCHAR) |
###question:What is the drawn that has 22 for played, and 96 for points?###answer:SELECT drawn FROM table_name_96 WHERE played = "22" AND points = "96"###context:CREATE TABLE table_name_96 (drawn VARCHAR, played VARCHAR, points VARCHAR) |
###question:What points have 1 for drawn, and 16 as a try bonus?###answer:SELECT points_for FROM table_name_22 WHERE drawn = "1" AND try_bonus = "16"###context:CREATE TABLE table_name_22 (points_for VARCHAR, drawn VARCHAR, try_bonus VARCHAR) |
###question:What is team 1 in group h?###answer:SELECT team__number1 FROM table_name_45 WHERE round = "group h"###context:CREATE TABLE table_name_45 (team__number1 VARCHAR, round VARCHAR) |
###question:What was the score on 15 march 2006?###answer:SELECT score FROM table_name_85 WHERE date = "15 march 2006"###context:CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR) |
###question:Which winning team has a winning pitcher of Chris Young and was played in Arlington?###answer:SELECT winning_team FROM table_name_46 WHERE winning_pitcher = "chris young" AND location = "arlington"###context:CREATE TABLE table_name_46 (winning_team VARCHAR, winning_pitcher VARCHAR, location VARCHAR) |
###question:What winning team has a losing pitcher of Juan Dominguez?###answer:SELECT winning_team FROM table_name_31 WHERE losing_pitcher = "juan dominguez"###context:CREATE TABLE table_name_31 (winning_team VARCHAR, losing_pitcher VARCHAR) |
###question:Who was the opponent on August 14?###answer:SELECT opponent FROM table_name_91 WHERE date = "august 14"###context:CREATE TABLE table_name_91 (opponent VARCHAR, date VARCHAR) |
###question:Which loss had a record of 79-49?###answer:SELECT loss FROM table_name_7 WHERE record = "79-49"###context:CREATE TABLE table_name_7 (loss VARCHAR, record VARCHAR) |
###question:What is the semi-final dual television commentator status of the year with Pierre Tchernia as the grand final television commentator and an unknown spokesperson?###answer:SELECT semi_final_dual_television_commentator FROM table_name_96 WHERE grand_final_television_commentator = "pierre tchernia" AND spokesp... |
###question:What is the semi-final television commentator status in 1962 with an unknown spokesperson?###answer:SELECT semi_final_television_commentator FROM table_name_54 WHERE spokesperson = "unknown" AND year_s_ = 1962###context:CREATE TABLE table_name_54 (semi_final_television_commentator VARCHAR, spokesperson VARC... |
###question:What is the grand final television commentator status after 1959 when Dave was the grand final dual television commentator and Marie Myriam was the spokesperson?###answer:SELECT grand_final_television_commentator FROM table_name_20 WHERE year_s_ > 1959 AND grand_final_dual_television_commentator = "dave" AN... |
###question:What is the grand final dual television commentator status of the year when Amaury Vassili was the spokesperson?###answer:SELECT grand_final_dual_television_commentator FROM table_name_52 WHERE spokesperson = "amaury vassili"###context:CREATE TABLE table_name_52 (grand_final_dual_television_commentator VARC... |
###question:What state has lincoln, de as the hometown?###answer:SELECT state FROM table_name_73 WHERE hometown = "lincoln, de"###context:CREATE TABLE table_name_73 (state VARCHAR, hometown VARCHAR) |
###question:Name the ship with hull number of aor-6###answer:SELECT ship FROM table_name_89 WHERE hull_no = "aor-6"###context:CREATE TABLE table_name_89 (ship VARCHAR, hull_no VARCHAR) |
###question:Name the hull number of Commissioned– Decommissioned of 1973–1996###answer:SELECT hull_no FROM table_name_29 WHERE commissioned__decommissioned = "1973–1996"###context:CREATE TABLE table_name_29 (hull_no VARCHAR, commissioned__decommissioned VARCHAR) |
###question:Name the commissioned-decommissioned for oakland and NVR page of aor-1###answer:SELECT commissioned__decommissioned FROM table_name_62 WHERE home_port = "oakland" AND nvr_page = "aor-1"###context:CREATE TABLE table_name_62 (commissioned__decommissioned VARCHAR, home_port VARCHAR, nvr_page VARCHAR) |
###question:Name the home port for kansas city###answer:SELECT home_port FROM table_name_15 WHERE ship = "kansas city"###context:CREATE TABLE table_name_15 (home_port VARCHAR, ship VARCHAR) |
###question:Name the commissioned-decommissioned for NVR page of aor-7###answer:SELECT commissioned__decommissioned FROM table_name_17 WHERE nvr_page = "aor-7"###context:CREATE TABLE table_name_17 (commissioned__decommissioned VARCHAR, nvr_page VARCHAR) |
###question:Name the ship for oakland home port and NVR page of aor-3###answer:SELECT ship FROM table_name_28 WHERE home_port = "oakland" AND nvr_page = "aor-3"###context:CREATE TABLE table_name_28 (ship VARCHAR, home_port VARCHAR, nvr_page VARCHAR) |
###question:What is the name of the location and ship type in the Gulf of Mexico that entered service in 1999?###answer:SELECT name FROM table_name_43 WHERE location = "gulf of mexico" AND type = "ship" AND entered_service = "1999"###context:CREATE TABLE table_name_43 (name VARCHAR, entered_service VARCHAR, location VA... |
###question:What was the water depth that entered service in 2001 named Cajun Express?###answer:SELECT water_depth FROM table_name_11 WHERE entered_service = "2001" AND name = "cajun express"###context:CREATE TABLE table_name_11 (water_depth VARCHAR, entered_service VARCHAR, name VARCHAR) |
###question:What was the water depth in the Gulf of Mexico named Discoverer Clear Leader?###answer:SELECT water_depth FROM table_name_87 WHERE location = "gulf of mexico" AND name = "discoverer clear leader"###context:CREATE TABLE table_name_87 (water_depth VARCHAR, location VARCHAR, name VARCHAR) |
###question:What is the name of a location in Nigeria?###answer:SELECT name FROM table_name_28 WHERE location = "nigeria"###context:CREATE TABLE table_name_28 (name VARCHAR, location VARCHAR) |
###question:What location entered service in 1999 and had a customer of Anadarko?###answer:SELECT location FROM table_name_5 WHERE entered_service = "1999" AND customer = "anadarko"###context:CREATE TABLE table_name_5 (location VARCHAR, entered_service VARCHAR, customer VARCHAR) |
###question:What was the Score on January 30?###answer:SELECT score FROM table_name_93 WHERE date = "january 30"###context:CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR) |
###question:Who were the Visitor of the Toronto Maple Leafs Home game on December 22?###answer:SELECT visitor FROM table_name_11 WHERE home = "toronto maple leafs" AND date = "december 22"###context:CREATE TABLE table_name_11 (visitor VARCHAR, home VARCHAR, date VARCHAR) |
###question:On what Date was the Record 9–6–4?###answer:SELECT date FROM table_name_62 WHERE record = "9–6–4"###context:CREATE TABLE table_name_62 (date VARCHAR, record VARCHAR) |
###question:What was the Score on March 1?###answer:SELECT score FROM table_name_18 WHERE date = "march 1"###context:CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR) |
###question:What is the primary conference that was founded before 1866 and has an affiliation of private/catholic?###answer:SELECT primary_conference FROM table_name_58 WHERE founded < 1866 AND affiliation = "private/catholic"###context:CREATE TABLE table_name_58 (primary_conference VARCHAR, founded VARCHAR, affiliati... |
###question:What is the total enrollment for an affiliation of public, and was founded before 1866?###answer:SELECT COUNT(enrollment) FROM table_name_43 WHERE affiliation = "public" AND founded < 1866###context:CREATE TABLE table_name_43 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR) |
###question:What is the affiliation for towson, md?###answer:SELECT affiliation FROM table_name_37 WHERE location = "towson, md"###context:CREATE TABLE table_name_37 (affiliation VARCHAR, location VARCHAR) |
###question:What is the total enrollment for a private/catholic affiliation and founded after 1842?###answer:SELECT COUNT(enrollment) FROM table_name_1 WHERE affiliation = "private/catholic" AND founded > 1842###context:CREATE TABLE table_name_1 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR) |
###question:What is the number founded for the nickname mountain hawks?###answer:SELECT COUNT(founded) FROM table_name_68 WHERE nickname = "mountain hawks"###context:CREATE TABLE table_name_68 (founded VARCHAR, nickname VARCHAR) |
###question:What is the score of the season in the host city kėdainiai?###answer:SELECT score FROM table_name_59 WHERE host_city = "kėdainiai"###context:CREATE TABLE table_name_59 (score VARCHAR, host_city VARCHAR) |
###question:Who was the winner of the season before 2010 with Lietuvos Rytas as a finalist?###answer:SELECT winner FROM table_name_39 WHERE finalist = "lietuvos rytas" AND season < 2010###context:CREATE TABLE table_name_39 (winner VARCHAR, finalist VARCHAR, season VARCHAR) |
###question:Who was the finalist in the 2010 season in the host city tartu?###answer:SELECT finalist FROM table_name_57 WHERE host_city = "tartu" AND season = 2010###context:CREATE TABLE table_name_57 (finalist VARCHAR, host_city VARCHAR, season VARCHAR) |
###question:Who was the winner during the 2009 season?###answer:SELECT winner FROM table_name_42 WHERE season = 2009###context:CREATE TABLE table_name_42 (winner VARCHAR, season VARCHAR) |
###question:What is the host city during the 2012 season?###answer:SELECT host_city FROM table_name_47 WHERE season = 2012###context:CREATE TABLE table_name_47 (host_city VARCHAR, season VARCHAR) |
###question:what game had a score of 4–6, 6–3, 7–6(10)?###answer:SELECT tournament FROM table_name_54 WHERE score = "4–6, 6–3, 7–6(10)"###context:CREATE TABLE table_name_54 (tournament VARCHAR, score VARCHAR) |
###question:When did eleonor magdalene of the palatinate-neuburg become duchess?###answer:SELECT became_duchess FROM table_name_77 WHERE name = "eleonor magdalene of the palatinate-neuburg"###context:CREATE TABLE table_name_77 (became_duchess VARCHAR, name VARCHAR) |
###question:Which Marriage has a Became Duchess of 12 december 1666?###answer:SELECT marriage FROM table_name_68 WHERE became_duchess = "12 december 1666"###context:CREATE TABLE table_name_68 (marriage VARCHAR, became_duchess VARCHAR) |
###question:When did the person die who was born on 18 november 1630?###answer:SELECT death FROM table_name_3 WHERE birth = "18 november 1630"###context:CREATE TABLE table_name_3 (death VARCHAR, birth VARCHAR) |
###question:Which Birth has a Became Duchess of 17 april 1711 husband's ascension?###answer:SELECT birth FROM table_name_65 WHERE became_duchess = "17 april 1711 husband's ascension"###context:CREATE TABLE table_name_65 (birth VARCHAR, became_duchess VARCHAR) |
###question:Which Spouse has a Birth of 30 may 1653?###answer:SELECT spouse FROM table_name_38 WHERE birth = "30 may 1653"###context:CREATE TABLE table_name_38 (spouse VARCHAR, birth VARCHAR) |
###question:When did the person born on 6 january 1655 die?###answer:SELECT death FROM table_name_34 WHERE birth = "6 january 1655"###context:CREATE TABLE table_name_34 (death VARCHAR, birth VARCHAR) |
###question:Which Club or province has a caps larger than 15 and has Chris Cusiter playing for them?###answer:SELECT club_province FROM table_name_88 WHERE caps > 15 AND player = "chris cusiter"###context:CREATE TABLE table_name_88 (club_province VARCHAR, caps VARCHAR, player VARCHAR) |
###question:What is the date of birth for the player from Ulster and plays at Centre position?###answer:SELECT date_of_birth__age_ FROM table_name_26 WHERE club_province = "ulster" AND position = "centre"###context:CREATE TABLE table_name_26 (date_of_birth__age_ VARCHAR, club_province VARCHAR, position VARCHAR) |
###question:What type of disaster is rms atlantic categorized in that was located in Nova Scotia?###answer:SELECT type FROM table_name_62 WHERE location = "nova scotia" AND disaster = "rms atlantic"###context:CREATE TABLE table_name_62 (type VARCHAR, location VARCHAR, disaster VARCHAR) |
###question:What is the type of disaster that the Arrow Air Flight 1285 categorized in?###answer:SELECT type FROM table_name_55 WHERE disaster = "arrow air flight 1285"###context:CREATE TABLE table_name_55 (type VARCHAR, disaster VARCHAR) |
###question:What is the disaster that was located in Ontario with 223 deaths?###answer:SELECT disaster FROM table_name_39 WHERE location = "ontario" AND deaths = "223"###context:CREATE TABLE table_name_39 (disaster VARCHAR, location VARCHAR, deaths VARCHAR) |
###question:How many deaths were there during the shipwreck in 1873?###answer:SELECT deaths FROM table_name_56 WHERE type = "shipwreck" AND date = "1873"###context:CREATE TABLE table_name_56 (deaths VARCHAR, type VARCHAR, date VARCHAR) |
###question:Where was the disaster located that took place on 1916?###answer:SELECT location FROM table_name_49 WHERE date = "1916"###context:CREATE TABLE table_name_49 (location VARCHAR, date VARCHAR) |
###question:Which Laps is the highest one that has a Time/Retired of +3.370 secs?###answer:SELECT MAX(laps) FROM table_name_52 WHERE time_retired = "+3.370 secs"###context:CREATE TABLE table_name_52 (laps INTEGER, time_retired VARCHAR) |
###question:Which Grid has a Team of rusport, and Laps larger than 221?###answer:SELECT SUM(grid) FROM table_name_62 WHERE team = "rusport" AND laps > 221###context:CREATE TABLE table_name_62 (grid INTEGER, team VARCHAR, laps VARCHAR) |
###question:What title has a producer of MAQ and Anna as a role?###answer:SELECT title FROM table_name_18 WHERE producer = "maq" AND role = "anna"###context:CREATE TABLE table_name_18 (title VARCHAR, producer VARCHAR, role VARCHAR) |
###question:How many years was Kay Tagal Kang Hinintay directed by Rory Quintos and produced by Star Cinema?###answer:SELECT COUNT(year) FROM table_name_94 WHERE producer = "star cinema" AND director = "rory quintos" AND title = "kay tagal kang hinintay"###context:CREATE TABLE table_name_94 (year VARCHAR, title VARCHAR... |
###question:Which title was directed by Joyce Bernal?###answer:SELECT title FROM table_name_76 WHERE director = "joyce bernal"###context:CREATE TABLE table_name_76 (title VARCHAR, director VARCHAR) |
###question:What song is it that artist morena camilleri does and has more than 38 points###answer:SELECT song FROM table_name_46 WHERE points > 38 AND artist = "morena camilleri"###context:CREATE TABLE table_name_46 (song VARCHAR, points VARCHAR, artist VARCHAR) |
###question:What is the total number of points for ray agius###answer:SELECT SUM(points) FROM table_name_15 WHERE lyricist = "ray agius"###context:CREATE TABLE table_name_15 (points INTEGER, lyricist VARCHAR) |
###question:What play did henry s. uber / betty uber (eng) finish in?###answer:SELECT COUNT(place) FROM table_name_99 WHERE name = "henry s. uber / betty uber (eng)"###context:CREATE TABLE table_name_99 (place VARCHAR, name VARCHAR) |
###question:When Baltimore County, Howard are represented, what's the first elected when the committee is environmental matters (vice-chair)?###answer:SELECT MAX(first_elected) FROM table_name_37 WHERE counties_represented = "baltimore county, howard" AND committee = "environmental matters (vice-chair)"###context:CREAT... |
###question:What party is the delegate of Turner, Frank S. Frank S. Turner of Howard County?###answer:SELECT party FROM table_name_50 WHERE counties_represented = "howard" AND delegate = "turner, frank s. frank s. turner"###context:CREATE TABLE table_name_50 (party VARCHAR, counties_represented VARCHAR, delegate VARCHA... |
###question:What is the damage of storm three?###answer:SELECT damage__millions_usd__ FROM table_name_58 WHERE storm_name = "three"###context:CREATE TABLE table_name_58 (damage__millions_usd__ VARCHAR, storm_name VARCHAR) |
###question:Which Round is the lowest one that has a Circuit of donington?###answer:SELECT MIN(round) FROM table_name_18 WHERE circuit = "donington"###context:CREATE TABLE table_name_18 (round INTEGER, circuit VARCHAR) |
###question:Which 250cc winner has a Round larger than 6, and a Date of 26 july?###answer:SELECT 250 AS cc_winner FROM table_name_5 WHERE round > 6 AND date = "26 july"###context:CREATE TABLE table_name_5 (round VARCHAR, date VARCHAR) |
###question:Attendance of 48,510 had what highest week?###answer:SELECT MAX(week) FROM table_name_30 WHERE attendance = 48 OFFSET 510###context:CREATE TABLE table_name_30 (week INTEGER, attendance VARCHAR) |
###question:Opponent of at san francisco 49ers had what lowest week?###answer:SELECT MIN(week) FROM table_name_43 WHERE opponent = "at san francisco 49ers"###context:CREATE TABLE table_name_43 (week INTEGER, opponent VARCHAR) |
###question:On what Date is the Minnesota Vikings the Opponent?###answer:SELECT date FROM table_name_71 WHERE opponent = "minnesota vikings"###context:CREATE TABLE table_name_71 (date VARCHAR, opponent VARCHAR) |
###question:What is the Date of Week 5?###answer:SELECT date FROM table_name_3 WHERE week = 5###context:CREATE TABLE table_name_3 (date VARCHAR, week VARCHAR) |
###question:What is the Date of Week 2?###answer:SELECT date FROM table_name_47 WHERE week = 2###context:CREATE TABLE table_name_47 (date VARCHAR, week VARCHAR) |
###question:What was the score when the game has a loss of Lary (10-12)?###answer:SELECT score FROM table_name_18 WHERE loss = "lary (10-12)"###context:CREATE TABLE table_name_18 (score VARCHAR, loss VARCHAR) |
###question:What is the result of the friendly match?###answer:SELECT result FROM table_name_37 WHERE competition = "friendly"###context:CREATE TABLE table_name_37 (result VARCHAR, competition VARCHAR) |
###question:What is the score of the match on June 4, 2008?###answer:SELECT score FROM table_name_76 WHERE date = "june 4, 2008"###context:CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR) |
###question:Which Year is the lowest one that has a Length of 3:50?###answer:SELECT MIN(year) FROM table_name_17 WHERE length = "3:50"###context:CREATE TABLE table_name_17 (year INTEGER, length VARCHAR) |
###question:Which Length has a Year of 2000?###answer:SELECT length FROM table_name_13 WHERE year = 2000###context:CREATE TABLE table_name_13 (length VARCHAR, year VARCHAR) |
###question:In what place is the artist Midnight Band with a draw larger than 2 and less than 139 points.###answer:SELECT place FROM table_name_7 WHERE draw > 2 AND points < 139 AND artist = "midnight band"###context:CREATE TABLE table_name_7 (place VARCHAR, artist VARCHAR, draw VARCHAR, points VARCHAR) |
###question:what player matched up with 9###answer:SELECT player FROM table_name_78 WHERE matches = "9"###context:CREATE TABLE table_name_78 (player VARCHAR, matches VARCHAR) |
###question:What is the 2nd leg of the Internacional Team 1?###answer:SELECT 2 AS nd_leg FROM table_name_48 WHERE team_1 = "internacional"###context:CREATE TABLE table_name_48 (team_1 VARCHAR) |
###question:Which City has a Country of spain, and a Stadium of palacio de deportes de santander?###answer:SELECT city FROM table_name_57 WHERE country = "spain" AND stadium = "palacio de deportes de santander"###context:CREATE TABLE table_name_57 (city VARCHAR, country VARCHAR, stadium VARCHAR) |
###question:Which Capacity is the lowest one that has a Rank smaller than 15, and a City of belgrade?###answer:SELECT MIN(capacity) FROM table_name_76 WHERE rank < 15 AND city = "belgrade"###context:CREATE TABLE table_name_76 (capacity INTEGER, rank VARCHAR, city VARCHAR) |
###question:Which Capacity is the lowest one that has a City of brisbane, and a Rank smaller than 1?###answer:SELECT MIN(capacity) FROM table_name_96 WHERE city = "brisbane" AND rank < 1###context:CREATE TABLE table_name_96 (capacity INTEGER, city VARCHAR, rank VARCHAR) |
###question:What are the total points that had 68 match points, 9 bonus points and 30 games?###answer:SELECT total_points FROM table_name_29 WHERE games = "30" AND bonus_points = "9" AND match_points = "68"###context:CREATE TABLE table_name_29 (total_points VARCHAR, match_points VARCHAR, games VARCHAR, bonus_points VAR... |
###question:What's the shortest length from north klondike highway that has a length less than 326?###answer:SELECT MIN(length__km_) FROM table_name_38 WHERE name = "north klondike highway" AND length__mi_ < 326###context:CREATE TABLE table_name_38 (length__km_ INTEGER, name VARCHAR, length__mi_ VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.