answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
---|---|---|
SELECT MIN(year) FROM table_name_98 WHERE engine = "bristol"
|
What is the earliest year that has a Bristol engine?
|
CREATE TABLE table_name_98 (year INTEGER, engine VARCHAR)
|
SELECT location FROM table_23243769_4 WHERE record = "4-1"
|
Where was the game with a 4-1 record played?
|
CREATE TABLE table_23243769_4 (location VARCHAR, record VARCHAR)
|
SELECT loser FROM table_name_18 WHERE winner = "los angeles lakers (10)"
|
What is the Loser when the winner was los angeles lakers (10)?
|
CREATE TABLE table_name_18 (loser VARCHAR, winner VARCHAR)
|
SELECT singer_s_ FROM table_name_97 WHERE lyricist = "dev kohli" AND number = 3
|
Who was the singer for the song numbered 3, with lyricist Dev Kohli?
|
CREATE TABLE table_name_97 (singer_s_ VARCHAR, lyricist VARCHAR, number VARCHAR)
|
SELECT seats_contested FROM table_20728138_1 WHERE party = "Independents"
|
How many seats are contested for independents?
|
CREATE TABLE table_20728138_1 (seats_contested VARCHAR, party VARCHAR)
|
SELECT DISTINCT T1.LName FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.CLASS_President_VOTE
|
Find the distinct last names of the students who have class president votes.
|
CREATE TABLE STUDENT (LName VARCHAR, StuID VARCHAR); CREATE TABLE VOTING_RECORD (CLASS_President_VOTE VARCHAR)
|
SELECT nation FROM table_name_62 WHERE bronze > 0 AND total > 8 AND gold = 4
|
Tell me the nation for bronze more than 0 and total more than 8 with gold of 4
|
CREATE TABLE table_name_62 (nation VARCHAR, gold VARCHAR, bronze VARCHAR, total VARCHAR)
|
SELECT type FROM table_256286_21 WHERE meas_num = 3
|
What type of proposal is measure number 3?
|
CREATE TABLE table_256286_21 (type VARCHAR, meas_num VARCHAR)
|
SELECT pos FROM table_name_45 WHERE height = "m (ft 10in)" AND date_of_birth = "1983-05-29"
|
What is Pos., when Height is "m (ft 10in)", and when Date of Birth is "1983-05-29"?
|
CREATE TABLE table_name_45 (pos VARCHAR, height VARCHAR, date_of_birth VARCHAR)
|
SELECT SUM(year) FROM table_name_75 WHERE entrant = "elf team tyrrell" AND points = "39" AND chassis = "tyrrell 007"
|
What year did Elf Team Tyrrell have 39 points and a Tyrrell 007 Chassis?
|
CREATE TABLE table_name_75 (year INTEGER, chassis VARCHAR, entrant VARCHAR, points VARCHAR)
|
SELECT MAX(year) FROM table_name_25 WHERE formula = "grand prix"
|
What is the highest year with a formula of Grand Prix?
|
CREATE TABLE table_name_25 (year INTEGER, formula VARCHAR)
|
SELECT nationality FROM table_name_63 WHERE school_club_team = "louisiana state"
|
Which Nationality has a School/Club Team of louisiana state?
|
CREATE TABLE table_name_63 (nationality VARCHAR, school_club_team VARCHAR)
|
SELECT SUM(overall) FROM table_name_22 WHERE name = "tim smiley" AND round < 5
|
What is the sum of Overall, when Name is "Tim Smiley", and when Round is less than 5?
|
CREATE TABLE table_name_22 (overall INTEGER, name VARCHAR, round VARCHAR)
|
SELECT record FROM table_name_59 WHERE opponent = "magomedkhan gamzatkhanov" AND method = "submission"
|
What record has magomedkhan gamzatkhanov as the opponent, and submission as the method?
|
CREATE TABLE table_name_59 (record VARCHAR, opponent VARCHAR, method VARCHAR)
|
SELECT date FROM table_name_24 WHERE margin_of_victory = "1 stroke" AND tournament = "the ace group classic"
|
What was the date of the Ace Group Classic tournament with a 1 stroke margin of victory?
|
CREATE TABLE table_name_24 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
|
SELECT d_44 FROM table_name_63 WHERE d_46 = "d 31"
|
Name the D 44 when it has a D 46 of d 31
|
CREATE TABLE table_name_63 (d_44 VARCHAR, d_46 VARCHAR)
|
SELECT AVG(year) FROM table_name_35 WHERE artist = "royal canadian mint engravers" AND mintage < 200
|
What is the average Year for the Royal Canadian Mint Engravers Artist when the Mintage is under 200?
|
CREATE TABLE table_name_35 (year INTEGER, artist VARCHAR, mintage VARCHAR)
|
SELECT nation FROM table_name_76 WHERE model = "m1895 & m1897 carbine"
|
What is Nation, when Model is M1895 & M1897 Carbine?
|
CREATE TABLE table_name_76 (nation VARCHAR, model VARCHAR)
|
SELECT heat_semifinal_final FROM table_name_41 WHERE time = "48.97"
|
Which heat, semifinal or final has a time of 48.97?
|
CREATE TABLE table_name_41 (heat_semifinal_final VARCHAR, time VARCHAR)
|
SELECT home_team FROM table_name_83 WHERE away_team = "bradford city"
|
Where the away team is Bradford City, who is the home team?
|
CREATE TABLE table_name_83 (home_team VARCHAR, away_team VARCHAR)
|
SELECT chapter FROM table_name_65 WHERE location = "normal, illinois"
|
What chapter is located in Normal, Illinois?
|
CREATE TABLE table_name_65 (chapter VARCHAR, location VARCHAR)
|
SELECT primary_conference_when_joining_the_csfl FROM table_262501_1 WHERE joined = "2004-05"
|
what was the primary conference when joining the csfl for the institution that joined in 2004-05?
|
CREATE TABLE table_262501_1 (primary_conference_when_joining_the_csfl VARCHAR, joined VARCHAR)
|
SELECT COUNT(reg_gp) FROM table_name_66 WHERE player = "daniel rahimi" AND rd__number > 3
|
How many Reg GP does daniel rahimi have with a rd # greater than 3?
|
CREATE TABLE table_name_66 (reg_gp VARCHAR, player VARCHAR, rd__number VARCHAR)
|
SELECT swimsuit FROM table_name_13 WHERE evening_gown = "9.165 (3)"
|
what is the swimsuit score when evening gown score is 9.165 (3)?
|
CREATE TABLE table_name_13 (swimsuit VARCHAR, evening_gown VARCHAR)
|
SELECT MAX(seats_up_for_election) FROM table_name_96 WHERE election_result > 8 AND staying_councillors = 24
|
Which Seats up for election have an Election result larger than 8, and Staying councillors of 24?
|
CREATE TABLE table_name_96 (seats_up_for_election INTEGER, election_result VARCHAR, staying_councillors VARCHAR)
|
SELECT score FROM table_name_43 WHERE tie_no = "replay" AND away_team = "york city"
|
What is the score when the Tie no is replay, and the away team is York City?
|
CREATE TABLE table_name_43 (score VARCHAR, tie_no VARCHAR, away_team VARCHAR)
|
SELECT MIN(gold) FROM table_name_31 WHERE rank < 5 AND silver = 1 AND nation = "poland" AND total > 1
|
What is the least number of Gold for a Rank smaller than 5, and 1 silver medal for Poland with more than 1 medal in total?
|
CREATE TABLE table_name_31 (gold INTEGER, total VARCHAR, nation VARCHAR, rank VARCHAR, silver VARCHAR)
|
SELECT MIN(week) FROM table_name_12 WHERE opponent = "chicago cardinals" AND attendance < 25 OFFSET 312
|
What was the earliest week the team played the chicago cardinals in front of less than 25,312?
|
CREATE TABLE table_name_12 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
|
SELECT minimum_age_at_1st_dose FROM table_name_28 WHERE number_of_doses = "3 doses" AND dose = "2-3 drops"
|
Name the least age for the 1st dose for 3 doses of 2-3 drops
|
CREATE TABLE table_name_28 (minimum_age_at_1st_dose VARCHAR, number_of_doses VARCHAR, dose VARCHAR)
|
SELECT ending FROM table_17798093_20 WHERE examples = "Achilles, appendices, fæces"
|
what are the endings of examples achilles, appendices, fæces
|
CREATE TABLE table_17798093_20 (ending VARCHAR, examples VARCHAR)
|
SELECT original_air_date FROM table_11664625_2 WHERE no_in_season = 18
|
What is the original air date of season 18?
|
CREATE TABLE table_11664625_2 (original_air_date VARCHAR, no_in_season VARCHAR)
|
SELECT MIN(wins) FROM table_2216245_2
|
What is his lowest number of wins?
|
CREATE TABLE table_2216245_2 (wins INTEGER)
|
SELECT Official_Name FROM city WHERE Population > 1500 OR Population < 500
|
Find the official names of cities with population bigger than 1500 or smaller than 500.
|
CREATE TABLE city (Official_Name VARCHAR, Population VARCHAR)
|
SELECT MAX(to_par) FROM table_name_96 WHERE score = 76 - 70 - 76 - 76 = 298
|
What is the highest to par for the 76-70-76-76=298 score?
|
CREATE TABLE table_name_96 (to_par INTEGER, score VARCHAR)
|
SELECT hometown FROM table_name_19 WHERE player = "ray drew"
|
Which hometown has a player of Ray Drew?
|
CREATE TABLE table_name_19 (hometown VARCHAR, player VARCHAR)
|
SELECT MAX(high_10_profile) FROM table_237036_2 WHERE high_profile = 80
|
What is the high 10 profile number when the high profile is 80?
|
CREATE TABLE table_237036_2 (high_10_profile INTEGER, high_profile VARCHAR)
|
SELECT system FROM table_name_66 WHERE name = "elkjs"
|
Which system is named ELKJS?
|
CREATE TABLE table_name_66 (system VARCHAR, name VARCHAR)
|
SELECT MIN(touchdowns) FROM table_1037590_1 WHERE completion__percentage = "56.0"
|
How many touchdowns were scored in the year with a completion percentage of 56.0?
|
CREATE TABLE table_1037590_1 (touchdowns INTEGER, completion__percentage VARCHAR)
|
SELECT primary_military_speciality FROM table_name_39 WHERE code_name = "moondancer"
|
What is Moondancer's Primary Military Speciality?
|
CREATE TABLE table_name_39 (primary_military_speciality VARCHAR, code_name VARCHAR)
|
SELECT length_feet FROM table_name_28 WHERE mi_from_kingston > 84.5 AND length_meters > 55.5 AND name = "unnamed"
|
What is Lenth Feet, when Mi From Kingston is greater than 84.5, when Length Meters is greater than 55.5, and when Name is Unnamed?
|
CREATE TABLE table_name_28 (length_feet VARCHAR, name VARCHAR, mi_from_kingston VARCHAR, length_meters VARCHAR)
|
SELECT MIN(top_5) FROM table_name_62 WHERE top_25 > 4 AND cuts_made = 29 AND top_10 > 18
|
What are the lowest top-5 with a top-25 larger than 4, 29 cuts and a top-10 larger than 18?
|
CREATE TABLE table_name_62 (top_5 INTEGER, top_10 VARCHAR, top_25 VARCHAR, cuts_made VARCHAR)
|
SELECT location_s_ FROM table_2076595_1 WHERE control = "Public" AND type = "Master's university"
|
What are the public schools with a master's university?
|
CREATE TABLE table_2076595_1 (location_s_ VARCHAR, control VARCHAR, type VARCHAR)
|
SELECT COUNT(fg_pct) FROM table_name_21 WHERE asst = 59 AND off_reb < 40
|
How many FG percent values are associated with 59 assists and offensive rebounds under 40?
|
CREATE TABLE table_name_21 (fg_pct VARCHAR, asst VARCHAR, off_reb VARCHAR)
|
SELECT COUNT(snatch) FROM table_name_48 WHERE clean_ & _jerk < 142.5 AND bodyweight < 55.58 AND total__kg_ > 210
|
How many people have a Clean & jerk smaller than 142.5, a Bodyweight smaller than 55.58, and a Total (kg) larger than 210?
|
CREATE TABLE table_name_48 (snatch VARCHAR, total__kg_ VARCHAR, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR)
|
SELECT team FROM table_11960610_7 WHERE date = "December 7"
|
What team were the Bulls hosted by on December 7?
|
CREATE TABLE table_11960610_7 (team VARCHAR, date VARCHAR)
|
SELECT date FROM table_21094951_1 WHERE record = "6-2"
|
Name the date for 6-2 record
|
CREATE TABLE table_21094951_1 (date VARCHAR, record VARCHAR)
|
SELECT COUNT(opponents) FROM table_28979895_4 WHERE partner = "Anabel Medina Garrigues"
|
Name the opponents for anabel medina garrigues
|
CREATE TABLE table_28979895_4 (opponents VARCHAR, partner VARCHAR)
|
SELECT time FROM table_name_49 WHERE winner = "kentucky ii"
|
What was the winning time for the winning horse, Kentucky ii?
|
CREATE TABLE table_name_49 (time VARCHAR, winner VARCHAR)
|
SELECT winning_score FROM table_name_75 WHERE championship = "u.s. women's open" AND margin = "5 strokes"
|
What was the winning score in the u.s. women's open that was won by 5 strokes?
|
CREATE TABLE table_name_75 (winning_score VARCHAR, championship VARCHAR, margin VARCHAR)
|
SELECT T1.name, T1.salary FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid GROUP BY T1.eid ORDER BY COUNT(*) DESC LIMIT 1
|
what is the salary and name of the employee who has the most number of aircraft certificates?
|
CREATE TABLE Certificate (eid VARCHAR); CREATE TABLE Employee (name VARCHAR, salary VARCHAR, eid VARCHAR)
|
SELECT score FROM table_name_96 WHERE player = "john fought"
|
What was John Fought's score?
|
CREATE TABLE table_name_96 (score VARCHAR, player VARCHAR)
|
SELECT COUNT(directed_by) FROM table_12159115_2 WHERE us_viewers__millions_ = "11.34"
|
What's the total number of directors who've directed episodes seen by 11.34 million US viewers?
|
CREATE TABLE table_12159115_2 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT country FROM table_name_46 WHERE population_density__per_km²_ = "50.3"
|
Which country has a population density of 50.3?
|
CREATE TABLE table_name_46 (country VARCHAR, population_density__per_km²_ VARCHAR)
|
SELECT MIN(col__m_) FROM table_name_96 WHERE island = "island of molokaʻi" AND rank < 6
|
What's the lowest Col ranked less than 6 with an Island of Molokaʻi?
|
CREATE TABLE table_name_96 (col__m_ INTEGER, island VARCHAR, rank VARCHAR)
|
SELECT attendance FROM table_name_12 WHERE loss = "mercker (3-1)"
|
What was the attendance at the game that had a loss of Mercker (3-1)?
|
CREATE TABLE table_name_12 (attendance VARCHAR, loss VARCHAR)
|
SELECT COUNT(to_par) FROM table_name_37 WHERE total > 156
|
What was the score to par for 156 strokes?
|
CREATE TABLE table_name_37 (to_par VARCHAR, total INTEGER)
|
SELECT destination FROM table_20026849_1 WHERE winner = "Anwar Syed"
|
What was the destination of the season won by Anwar Syed?
|
CREATE TABLE table_20026849_1 (destination VARCHAR, winner VARCHAR)
|
SELECT MAX(population) FROM table_name_16 WHERE state = "puerto rico" AND total_congregations > 41
|
What is the highest Population, when State is Puerto Rico, and when Total Congregations is greater than 41?
|
CREATE TABLE table_name_16 (population INTEGER, state VARCHAR, total_congregations VARCHAR)
|
SELECT AVG(number_of_households) FROM table_name_70 WHERE county = "highlands"
|
How many households are in highlands county?
|
CREATE TABLE table_name_70 (number_of_households INTEGER, county VARCHAR)
|
SELECT free FROM table_name_80 WHERE total = 156.67
|
What was the free score of the skater with a total of 156.67?
|
CREATE TABLE table_name_80 (free VARCHAR, total VARCHAR)
|
SELECT womens_singles FROM table_15002265_1 WHERE mixed_doubles = "Bernd Frohnwieser Hilde Themel" AND year < 1959.0
|
who is the the womens singles with mixed doubles being bernd frohnwieser hilde themel and year being smaller than 1959.0
|
CREATE TABLE table_15002265_1 (womens_singles VARCHAR, mixed_doubles VARCHAR, year VARCHAR)
|
SELECT county FROM table_name_68 WHERE listed = "09/21/1984" AND construction_completed = "07/19/2000"
|
In what county is the entry that has a Construction Completed date of 07/19/2000 and a Listed date of 09/21/1984 located?
|
CREATE TABLE table_name_68 (county VARCHAR, listed VARCHAR, construction_completed VARCHAR)
|
SELECT MAX(attendance) FROM table_name_62 WHERE date = "19 february 2005"
|
Name the most attendance for 19 february 2005
|
CREATE TABLE table_name_62 (attendance INTEGER, date VARCHAR)
|
SELECT d_45_o FROM table_name_5 WHERE d_44_o = "majority →"
|
Name the D 45 O with D 44 O majority →
|
CREATE TABLE table_name_5 (d_45_o VARCHAR, d_44_o VARCHAR)
|
SELECT COUNT(points) FROM table_name_42 WHERE played < 30
|
What is the number of points when the played is less than 30?
|
CREATE TABLE table_name_42 (points VARCHAR, played INTEGER)
|
SELECT t2.Museum_ID, t1.name FROM museum AS t1 JOIN visit AS t2 ON t1.Museum_ID = t2.Museum_ID GROUP BY t2.Museum_ID ORDER BY COUNT(*) DESC LIMIT 1
|
What are the id and name of the museum visited most times?
|
CREATE TABLE museum (name VARCHAR, Museum_ID VARCHAR); CREATE TABLE visit (Museum_ID VARCHAR)
|
SELECT team FROM table_name_8 WHERE year = 1981 AND overall_pick = "148"
|
In 1981 which team picked overall 148?
|
CREATE TABLE table_name_8 (team VARCHAR, year VARCHAR, overall_pick VARCHAR)
|
SELECT date FROM table_name_73 WHERE event = "women's individual class 3"
|
What was the date of the Women's Individual Class 3?
|
CREATE TABLE table_name_73 (date VARCHAR, event VARCHAR)
|
SELECT college FROM table_name_46 WHERE overall = 308
|
Which College has an Overall of 308?
|
CREATE TABLE table_name_46 (college VARCHAR, overall VARCHAR)
|
SELECT MIN(silver) FROM table_name_92 WHERE rank = "1" AND bronze < 2
|
What's the silver for rank 1 with less than 2 bronze?
|
CREATE TABLE table_name_92 (silver INTEGER, rank VARCHAR, bronze VARCHAR)
|
SELECT COUNT(bronze) FROM table_name_93 WHERE gold > 1 AND nation = "total"
|
What is the total number of Bronze when gold is more than 1 and nation is total?
|
CREATE TABLE table_name_93 (bronze VARCHAR, gold VARCHAR, nation VARCHAR)
|
SELECT record FROM table_name_7 WHERE home = "hartford whalers" AND date = "april 13"
|
What is the record of the Hartford Whalers home team with the April 13 game date?
|
CREATE TABLE table_name_7 (record VARCHAR, home VARCHAR, date VARCHAR)
|
SELECT monarch FROM table_name_7 WHERE left_office = "circa 1886"
|
Who is the monarch that left office circa 1886?
|
CREATE TABLE table_name_7 (monarch VARCHAR, left_office VARCHAR)
|
SELECT record FROM table_name_68 WHERE score = "122–105"
|
Score of 122–105 had what record?
|
CREATE TABLE table_name_68 (record VARCHAR, score VARCHAR)
|
SELECT gold FROM table_name_96 WHERE event = "road race details" AND silver = "max weber germany (ger)"
|
Who received gold when the event is road race details and silver is max weber germany (ger)?
|
CREATE TABLE table_name_96 (gold VARCHAR, event VARCHAR, silver VARCHAR)
|
SELECT 2006 FROM table_name_64 WHERE 2011 = "grand slam tournaments"
|
What is the 2006 value of the 2011 grand slam tournaments?
|
CREATE TABLE table_name_64 (Id VARCHAR)
|
SELECT COUNT(pick) FROM table_name_64 WHERE round < 13 AND position = "fullback"
|
How many Pick has a Round smaller than 13, and a Position of fullback?
|
CREATE TABLE table_name_64 (pick VARCHAR, round VARCHAR, position VARCHAR)
|
SELECT team_1 FROM table_name_20 WHERE team_2 = "olympique lyonnais (d2)"
|
Which team was team 1 in the match where team 2 was olympique lyonnais (d2)?
|
CREATE TABLE table_name_20 (team_1 VARCHAR, team_2 VARCHAR)
|
SELECT AVG(Number_of_hosts) FROM party
|
What is the average number of hosts for parties?
|
CREATE TABLE party (Number_of_hosts INTEGER)
|
SELECT MAX(farmers) FROM table_17118006_2 WHERE projects = 32
|
How many farmers were included by the department with 32 projects?
|
CREATE TABLE table_17118006_2 (farmers INTEGER, projects VARCHAR)
|
SELECT profession FROM table_name_4 WHERE name = "slađana pejić"
|
What is slađana pejić's profession?
|
CREATE TABLE table_name_4 (profession VARCHAR, name VARCHAR)
|
SELECT SUM(week) FROM table_name_70 WHERE attendance = "53,147"
|
What the total of Week with attendance of 53,147
|
CREATE TABLE table_name_70 (week INTEGER, attendance VARCHAR)
|
SELECT result FROM table_19753079_13 WHERE first_elected = 2004 AND incumbent = "John Barrow"
|
What was the result when John Barrow was the incumbent first elected in 2004?
|
CREATE TABLE table_19753079_13 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
|
SELECT MAX(division) FROM table_1939235_1 WHERE regular_season = "5th"
|
When 5th is the regular season what is the highest season?
|
CREATE TABLE table_1939235_1 (division INTEGER, regular_season VARCHAR)
|
SELECT SUM(place) FROM table_name_87 WHERE average < 90.06 AND downhill = 71.6
|
Where was the place that the downhill was 71.6 and the average was less than 90.06?
|
CREATE TABLE table_name_87 (place INTEGER, average VARCHAR, downhill VARCHAR)
|
SELECT race FROM table_name_57 WHERE winning_horse = "dominican" AND distance = "1-1/16 miles"
|
what race did Dominican win with a distance of 1-1/16 miles?
|
CREATE TABLE table_name_57 (race VARCHAR, winning_horse VARCHAR, distance VARCHAR)
|
SELECT overall FROM table_name_72 WHERE position = "tight end"
|
What was the overall draft pick for the player selected for the tight end position?
|
CREATE TABLE table_name_72 (overall VARCHAR, position VARCHAR)
|
SELECT COUNT(pick__number) FROM table_name_46 WHERE position = "db"
|
What is the pick number of the DB?
|
CREATE TABLE table_name_46 (pick__number VARCHAR, position VARCHAR)
|
SELECT network FROM table_name_56 WHERE local_name = "moj tata je bolji od tvog tate"
|
Which Network has a Local name of moj tata je bolji od tvog tate?
|
CREATE TABLE table_name_56 (network VARCHAR, local_name VARCHAR)
|
SELECT opponent FROM table_name_3 WHERE round > 1 AND event = "king of the cage 31"
|
Which Opponent has a Round larger than 1, and an Event of king of the cage 31?
|
CREATE TABLE table_name_3 (opponent VARCHAR, round VARCHAR, event VARCHAR)
|
SELECT incumbent FROM table_name_21 WHERE democratic = "mike carroll"
|
Which incumbent's democratic candidate was mike carroll?
|
CREATE TABLE table_name_21 (incumbent VARCHAR, democratic VARCHAR)
|
SELECT status FROM table_26218783_7 WHERE sd = 15
|
What is the status when sd is 15?
|
CREATE TABLE table_26218783_7 (status VARCHAR, sd VARCHAR)
|
SELECT event FROM table_18646111_13 WHERE athlete = "Hans Ruep"
|
Name the event for hans ruep
|
CREATE TABLE table_18646111_13 (event VARCHAR, athlete VARCHAR)
|
SELECT treaty_of_cession FROM table_name_60 WHERE colony = "karikal"
|
When was the Treaty of Cession for Karikal Colony?
|
CREATE TABLE table_name_60 (treaty_of_cession VARCHAR, colony VARCHAR)
|
SELECT COUNT(population_estimate_2005) FROM table_name_86 WHERE capital = "majene"
|
how many population estimate 2005 are for majene?
|
CREATE TABLE table_name_86 (population_estimate_2005 VARCHAR, capital VARCHAR)
|
SELECT total_finals FROM table_14286908_1 WHERE year_of_last_win = "2012-13"
|
How many total finals where there when the last win was in 2012-13?
|
CREATE TABLE table_14286908_1 (total_finals VARCHAR, year_of_last_win VARCHAR)
|
SELECT kickoff_[a_] FROM table_name_12 WHERE game_site = "hubert h. humphrey metrodome"
|
What is the kickoff time for the Hubert H. Humphrey Metrodome?
|
CREATE TABLE table_name_12 (kickoff_ VARCHAR, a_ VARCHAR, game_site VARCHAR)
|
SELECT MIN(rank) FROM table_name_54 WHERE nation = "venezuela" AND bronze > 9
|
What is the highest rank of Venezuela, which has more than 9 bronze medals?
|
CREATE TABLE table_name_54 (rank INTEGER, nation VARCHAR, bronze VARCHAR)
|
SELECT icao FROM table_name_2 WHERE airport = "lohausen airport"
|
What is the ICAO of Lohausen airport?
|
CREATE TABLE table_name_2 (icao VARCHAR, airport VARCHAR)
|
SELECT venue FROM table_name_16 WHERE against > 13
|
Which Venue has a Against larger than 13?
|
CREATE TABLE table_name_16 (venue VARCHAR, against INTEGER)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.