answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
|---|---|---|
SELECT score FROM table_name_4 WHERE date = "december 3"
|
Tell me the score for december 3
|
CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR)
|
SELECT decision FROM table_name_17 WHERE record = "3–5–0"
|
What decision had a Record of 3–5–0?
|
CREATE TABLE table_name_17 (decision VARCHAR, record VARCHAR)
|
SELECT COUNT(result) FROM table_1342393_23 WHERE district = "Mississippi 4"
|
Name the total number of result for mississippi 4?
|
CREATE TABLE table_1342393_23 (result VARCHAR, district VARCHAR)
|
SELECT COUNT(vote) FROM table_name_52 WHERE seat = "house a" AND percentage = "75.44%" AND district < 11
|
How many votes have a Seat of house A, and a Percentage of 75.44%, and a District smaller than 11?
|
CREATE TABLE table_name_52 (vote VARCHAR, district VARCHAR, seat VARCHAR, percentage VARCHAR)
|
SELECT opponent FROM table_name_56 WHERE game = 31
|
Which Opponent has a Game of 31?
|
CREATE TABLE table_name_56 (opponent VARCHAR, game VARCHAR)
|
SELECT coach FROM table_name_82 WHERE runner_up = "northeastern" AND score = "6–3"
|
Which Coach has a Runner-up of northeastern and a Score of 6–3?
|
CREATE TABLE table_name_82 (coach VARCHAR, runner_up VARCHAR, score VARCHAR)
|
SELECT location_attendance FROM table_17103729_7 WHERE score = "68-85"
|
With a score of 68-85, what is the location and attendance?
|
CREATE TABLE table_17103729_7 (location_attendance VARCHAR, score VARCHAR)
|
SELECT manufacturer FROM table_name_47 WHERE laps = 26 AND rider = "aleix espargaro"
|
What is the Manufacturer, when Laps is 26, and when Rider is Aleix Espargaro?
|
CREATE TABLE table_name_47 (manufacturer VARCHAR, laps VARCHAR, rider VARCHAR)
|
SELECT round FROM table_28039032_1 WHERE winners_from_previous_round = "32"
|
What was the round that had 32 winners from previous round?
|
CREATE TABLE table_28039032_1 (round VARCHAR, winners_from_previous_round VARCHAR)
|
SELECT opponent FROM table_name_73 WHERE week = 2
|
Who is the opponent on week 2?
|
CREATE TABLE table_name_73 (opponent VARCHAR, week VARCHAR)
|
SELECT to_par FROM table_name_34 WHERE player = "bernhard langer"
|
Which To par has a Player of bernhard langer?
|
CREATE TABLE table_name_34 (to_par VARCHAR, player VARCHAR)
|
SELECT COUNT(scores) FROM table_23575917_2 WHERE davids_team = "David Baddiel and Maureen Lipman"
|
Name the scores for david baddiel and maureen lipman
|
CREATE TABLE table_23575917_2 (scores VARCHAR, davids_team VARCHAR)
|
SELECT date_and_time FROM table_name_2 WHERE competition = "serie a" AND result = "0-3"
|
What is Date and Time, when Competition is "Serie A", and when Result is "0-3"?
|
CREATE TABLE table_name_2 (date_and_time VARCHAR, competition VARCHAR, result VARCHAR)
|
SELECT COUNT(year) FROM table_name_31 WHERE city = "san juan"
|
What year was the expansion in the city of San Juan?
|
CREATE TABLE table_name_31 (year VARCHAR, city VARCHAR)
|
SELECT T3.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id JOIN Highschooler AS T3 ON T1.friend_id = T3.id WHERE T2.name = "Kyle"
|
Show the names of all of the high schooler Kyle's friends.
|
CREATE TABLE Highschooler (name VARCHAR, id VARCHAR); CREATE TABLE Friend (student_id VARCHAR, friend_id VARCHAR); CREATE TABLE Highschooler (id VARCHAR, name VARCHAR)
|
SELECT original_air_date FROM table_name_88 WHERE season__number < 14 AND production_code > 709 AND series__number < 183
|
Name the air date for the seasons before 14 and series less than 183 with production code more than 709
|
CREATE TABLE table_name_88 (original_air_date VARCHAR, series__number VARCHAR, season__number VARCHAR, production_code VARCHAR)
|
SELECT power_kw__erp_ FROM table_2610582_3 WHERE ch__number = "TV-23" AND callsign = "DYCG-TV"
|
What is the power, in kW, of channel TV-23, callsign DYCG-TV?
|
CREATE TABLE table_2610582_3 (power_kw__erp_ VARCHAR, ch__number VARCHAR, callsign VARCHAR)
|
SELECT MAX(laps) FROM table_name_38 WHERE grid = "6" AND points > 19
|
What is the top lap that had 6 grids and more than 19 points?
|
CREATE TABLE table_name_38 (laps INTEGER, grid VARCHAR, points VARCHAR)
|
SELECT AVG(losses) FROM table_name_88 WHERE goals_against > 51 AND wins > 14
|
What is the average loss with a goal higher than 51 and wins higher than 14?
|
CREATE TABLE table_name_88 (losses INTEGER, goals_against VARCHAR, wins VARCHAR)
|
SELECT MIN(gold) FROM table_name_35 WHERE bronze = 0 AND total = 1 AND silver < 1
|
Bronze of 0, and a Total of 1, and a Silver smaller than 1 what is the lowest gold?
|
CREATE TABLE table_name_35 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR)
|
SELECT para FROM table_name_70 WHERE sipaliwini = "0.1%"
|
What is the para with a 0.1% sipaliwini?
|
CREATE TABLE table_name_70 (para VARCHAR, sipaliwini VARCHAR)
|
SELECT tournament FROM table_name_60 WHERE 2010 = "2r"
|
Which tournament had 2r in 2010?
|
CREATE TABLE table_name_60 (tournament VARCHAR)
|
SELECT rank__week_ FROM table_23177573_1 WHERE written_by = "Thomas L. Moran" AND directed_by = "Andrew Bernstein"
|
What was the week ranking of the episode written by Thomas L. Moran and directed by Andrew Bernstein?
|
CREATE TABLE table_23177573_1 (rank__week_ VARCHAR, written_by VARCHAR, directed_by VARCHAR)
|
SELECT date FROM table_name_32 WHERE week = 7
|
What's the game date for week 7?
|
CREATE TABLE table_name_32 (date VARCHAR, week VARCHAR)
|
SELECT episode_air_date FROM table_11129123_1 WHERE callback_venue = "Rancho Bernardo Inn"
|
When did the callbacks from rancho bernardo inn air
|
CREATE TABLE table_11129123_1 (episode_air_date VARCHAR, callback_venue VARCHAR)
|
SELECT episode__number FROM table_12976038_1 WHERE viewers__in_millions_ = "5.74"
|
What number episode had 5.74 million viewers?
|
CREATE TABLE table_12976038_1 (episode__number VARCHAR, viewers__in_millions_ VARCHAR)
|
SELECT black FROM table_name_61 WHERE brown = "6,54%"
|
Which Category in Black has a Brown of 6,54%?
|
CREATE TABLE table_name_61 (black VARCHAR, brown VARCHAR)
|
SELECT COUNT(silver) FROM table_name_18 WHERE gold < 1 AND bronze = 0 AND total < 2
|
Name the number of silver when gold is less than 1 and bronze is 0 when total is less than 2
|
CREATE TABLE table_name_18 (silver VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR)
|
SELECT COUNT(series__number) FROM table_27833469_1 WHERE us_viewers__millions_ = "15.8"
|
How many series numbers are there when there were 15.8 u.s. viewers (millions)?
|
CREATE TABLE table_27833469_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT chipset_based_on FROM table_name_18 WHERE digital_analog_signal = "analog" AND available_interface = "agp" AND retail_name = "all-in-wonder 9800"
|
What is the Chipset based on with a Digital/analog signal of analog, with an Available interface of agp, with Retail name with all-in-wonder 9800?
|
CREATE TABLE table_name_18 (chipset_based_on VARCHAR, retail_name VARCHAR, digital_analog_signal VARCHAR, available_interface VARCHAR)
|
SELECT format FROM table_11222744_3 WHERE title = "Callanetics: 10 years Younger In 10 Hours"
|
what is the format of "callanetics: 10 years younger in 10 hours"?
|
CREATE TABLE table_11222744_3 (format VARCHAR, title VARCHAR)
|
SELECT COUNT(Missions) AS country FROM table_18299148_1 WHERE notability = "President of Burundi"
|
How many missions countries have notability with president of burundi?
|
CREATE TABLE table_18299148_1 (Missions VARCHAR, notability VARCHAR)
|
SELECT MAX(total) FROM table_name_37 WHERE nation = "poland"
|
What was the most total medals awarded to Poland?
|
CREATE TABLE table_name_37 (total INTEGER, nation VARCHAR)
|
SELECT attendance FROM table_name_90 WHERE date = "may 26"
|
What was the attendance on May 26?
|
CREATE TABLE table_name_90 (attendance VARCHAR, date VARCHAR)
|
SELECT to_par FROM table_name_75 WHERE finish = "t3" AND player = "julius boros"
|
Which To par has a Finish of t3, and a Player of julius boros?
|
CREATE TABLE table_name_75 (to_par VARCHAR, finish VARCHAR, player VARCHAR)
|
SELECT cole FROM table_name_94 WHERE year < 2009 AND dylan = "nominated" AND work = "big daddy" AND award = "mtv movie awards"
|
Name the Cole for years before 2009 where Dylan was nominated for big daddy at mtv movie awards
|
CREATE TABLE table_name_94 (cole VARCHAR, award VARCHAR, work VARCHAR, year VARCHAR, dylan VARCHAR)
|
SELECT record FROM table_20928682_1 WHERE hurricanes_points = 24
|
What was the record after the game in which the Hurricanes scored 24 points?
|
CREATE TABLE table_20928682_1 (record VARCHAR, hurricanes_points VARCHAR)
|
SELECT AVG(round) FROM table_name_65 WHERE position = "te"
|
What is the average round for te position?
|
CREATE TABLE table_name_65 (round INTEGER, position VARCHAR)
|
SELECT date FROM table_name_75 WHERE score = "l 115–118 (ot)"
|
What is the Date of the game with a Score of L 115–118 (OT)?
|
CREATE TABLE table_name_75 (date VARCHAR, score VARCHAR)
|
SELECT capital FROM table_26769_1 WHERE population_density_per_km² = "15.6/km² (/sqmi)"
|
What is the capital of the country with a population density per km² of 15.6/km² (/sqmi)?
|
CREATE TABLE table_26769_1 (capital VARCHAR, population_density_per_km² VARCHAR)
|
SELECT COUNT(rank) FROM table_name_58 WHERE team = "roanne" AND games < 14
|
What is the total rank of team roanne, which has less than 14 games?
|
CREATE TABLE table_name_58 (rank VARCHAR, team VARCHAR, games VARCHAR)
|
SELECT safari FROM table_name_62 WHERE firefox = "31.27%"
|
What percentage of browsers were using Safari during the period in which 31.27% were using Firefox?
|
CREATE TABLE table_name_62 (safari VARCHAR, firefox VARCHAR)
|
SELECT 2012 FROM table_name_44 WHERE 2009 = "a"
|
What is 2012, when 2009 is "A"?
|
CREATE TABLE table_name_44 (Id VARCHAR)
|
SELECT name FROM table_name_65 WHERE height = "head coach: tamás faragó"
|
Who has a Height of head coach: tamás faragó?
|
CREATE TABLE table_name_65 (name VARCHAR, height VARCHAR)
|
SELECT round FROM table_name_18 WHERE position = "guard" AND college = "ohio"
|
WHAT ROUND HAS A GUARD POSITION AT OHIO COLLEGE?
|
CREATE TABLE table_name_18 (round VARCHAR, position VARCHAR, college VARCHAR)
|
SELECT visitor FROM table_name_43 WHERE decision = "leclaire" AND date = "november 14"
|
Who was the visitor on november 14 with leclaire recording the decision?
|
CREATE TABLE table_name_43 (visitor VARCHAR, decision VARCHAR, date VARCHAR)
|
SELECT bronze FROM table_name_71 WHERE year = "2011"
|
Who received the bronze in 2011?
|
CREATE TABLE table_name_71 (bronze VARCHAR, year VARCHAR)
|
SELECT result FROM table_name_31 WHERE week = "1" AND opponent = "bye"
|
What was the result of week 1 and the opponent was bye?
|
CREATE TABLE table_name_31 (result VARCHAR, week VARCHAR, opponent VARCHAR)
|
SELECT COUNT(wins) FROM table_name_55 WHERE tournament = "pga championship" AND events > 10
|
How many wins were in the PGA Championship when there were more than 10 events?
|
CREATE TABLE table_name_55 (wins VARCHAR, tournament VARCHAR, events VARCHAR)
|
SELECT score FROM table_name_98 WHERE date = "december 14, 1985"
|
What is the score when the date is December 14, 1985?
|
CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR)
|
SELECT 0 AS _100km_h__62mph_ FROM table_name_16 WHERE max_power = "s diesel engine all direct injection (dci)"
|
What is the 0–100km/h (62mph) when the max power is s diesel engine all direct injection (dci)?
|
CREATE TABLE table_name_16 (max_power VARCHAR)
|
SELECT carrier FROM table_name_37 WHERE package_version = "5.0.0.742"
|
WHAT IS THE CARRIER WITH 5.0.0.742 VERSION?
|
CREATE TABLE table_name_37 (carrier VARCHAR, package_version VARCHAR)
|
SELECT tournament FROM table_name_11 WHERE 1987 = "a"
|
Which Tournament has A in 1987?
|
CREATE TABLE table_name_11 (tournament VARCHAR)
|
SELECT dipole_moment___d__ FROM table_name_18 WHERE density = "1.092 g/ml"
|
What dipole moment has a density of 1.092 g/ml?
|
CREATE TABLE table_name_18 (dipole_moment___d__ VARCHAR, density VARCHAR)
|
SELECT country FROM table_name_78 WHERE notes = "fa" AND athlete = "alan campbell"
|
What is Alan Campbell's Country with Notes of FA?
|
CREATE TABLE table_name_78 (country VARCHAR, notes VARCHAR, athlete VARCHAR)
|
SELECT competition FROM table_name_87 WHERE result = "won" AND date = "september 13, 1996"
|
what is the competition when the result is won and the date is september 13, 1996?
|
CREATE TABLE table_name_87 (competition VARCHAR, result VARCHAR, date VARCHAR)
|
SELECT race AS Winner FROM table_name_48 WHERE pole_position = "niki lauda"
|
Who was the winner when Niki Lauda held pole position?
|
CREATE TABLE table_name_48 (race VARCHAR, pole_position VARCHAR)
|
SELECT state FROM table_name_49 WHERE member = "richard foster"
|
What state has Richard Foster as a member?
|
CREATE TABLE table_name_49 (state VARCHAR, member VARCHAR)
|
SELECT MAX(founded) FROM table_2076522_2 WHERE enrollment__fall_2010_ = 898
|
What year was the school founded with an 898 enrollment?
|
CREATE TABLE table_2076522_2 (founded INTEGER, enrollment__fall_2010_ VARCHAR)
|
SELECT tuesday_mangala__mars_ FROM table_1277350_3 WHERE saturday_shani__saturn_ = "සෙනසුරාදා Senasuraadaa"
|
In language where Saturday is සෙනසුරාදා senasuraadaa, what is Tuesday?
|
CREATE TABLE table_1277350_3 (tuesday_mangala__mars_ VARCHAR, saturday_shani__saturn_ VARCHAR)
|
SELECT MAX(pick__number) FROM table_name_45 WHERE college = "concordia"
|
Which Pick # has a College of concordia?
|
CREATE TABLE table_name_45 (pick__number INTEGER, college VARCHAR)
|
SELECT AVG(points) FROM table_name_72 WHERE domestic_cup = "quarterfinals"
|
What was the average points in the quarterfinals domestic cup?
|
CREATE TABLE table_name_72 (points INTEGER, domestic_cup VARCHAR)
|
SELECT COUNT(DISTINCT city) FROM EMPLOYEE
|
How many distinct cities does the employees live in?
|
CREATE TABLE EMPLOYEE (city VARCHAR)
|
SELECT record FROM table_name_42 WHERE date = "april 21"
|
What is the record for April 21?
|
CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR)
|
SELECT driver FROM table_name_35 WHERE points = 6
|
What is the name of the driver with 6 points?
|
CREATE TABLE table_name_35 (driver VARCHAR, points VARCHAR)
|
SELECT MAX(successful_defenses) FROM table_name_13 WHERE location = "brandon, florida" AND reign < 1
|
What is the highest number of successful defenses in brandon, florida and a reign less than 1?
|
CREATE TABLE table_name_13 (successful_defenses INTEGER, location VARCHAR, reign VARCHAR)
|
SELECT MAX(pick) FROM table_name_58 WHERE name = "ron whaley"
|
What is the highest pick of ron whaley?
|
CREATE TABLE table_name_58 (pick INTEGER, name VARCHAR)
|
SELECT production_code FROM table_24938621_3 WHERE written_by = "Cathryn Humphris"
|
What is the production code of the episode written by Cathryn Humphris?
|
CREATE TABLE table_24938621_3 (production_code VARCHAR, written_by VARCHAR)
|
SELECT opponent FROM table_name_16 WHERE date = "december 24, 2005"
|
Who was the opponent at the game held on December 24, 2005?
|
CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)
|
SELECT chassis FROM table_name_33 WHERE year > 1965 AND team = "cooper car company" AND engine = "maserati v12"
|
What is the Chassis of the Cooper Car Company after 1965 when the engine was a Maserati v12?
|
CREATE TABLE table_name_33 (chassis VARCHAR, engine VARCHAR, year VARCHAR, team VARCHAR)
|
SELECT couple FROM table_23465011_5 WHERE total_score = 295
|
Which couple has 295 as a total score?
|
CREATE TABLE table_23465011_5 (couple VARCHAR, total_score VARCHAR)
|
SELECT fastest_lap FROM table_name_72 WHERE circuit = "le mans bugatti"
|
What is the fastest lap in the Le Mans Bugatti circuit?
|
CREATE TABLE table_name_72 (fastest_lap VARCHAR, circuit VARCHAR)
|
SELECT T2.dept_store_id, T2.store_name FROM departments AS T1 JOIN department_stores AS T2 ON T1.dept_store_id = T2.dept_store_id WHERE T1.department_name = "marketing" INTERSECT SELECT T2.dept_store_id, T2.store_name FROM departments AS T1 JOIN department_stores AS T2 ON T1.dept_store_id = T2.dept_store_id WHERE T1.department_name = "managing"
|
What is the id and name of the department store that has both marketing and managing department?
|
CREATE TABLE department_stores (dept_store_id VARCHAR, store_name VARCHAR); CREATE TABLE departments (dept_store_id VARCHAR, department_name VARCHAR)
|
SELECT school_club_team FROM table_name_15 WHERE overall = 21
|
What School or Club team has an overall score of 21?
|
CREATE TABLE table_name_15 (school_club_team VARCHAR, overall VARCHAR)
|
SELECT COUNT(league_goals) FROM table_name_93 WHERE fa_cup_goals = 0 AND league_apps = "10"
|
How many league goals did the player with 10 league apps and 0 FA cup goals have?
|
CREATE TABLE table_name_93 (league_goals VARCHAR, fa_cup_goals VARCHAR, league_apps VARCHAR)
|
SELECT score FROM table_name_23 WHERE tie_no = "replay" AND home_team = "millwall"
|
What was the score of the replay at Millwall?
|
CREATE TABLE table_name_23 (score VARCHAR, tie_no VARCHAR, home_team VARCHAR)
|
SELECT college FROM table_name_69 WHERE player = "perry ellis"
|
What was the College of Player Perry Ellis?
|
CREATE TABLE table_name_69 (college VARCHAR, player VARCHAR)
|
SELECT place FROM table_name_95 WHERE to_par = "–5" AND player = "nick faldo"
|
With a To par of –5, what is Nick Faldo's Place?
|
CREATE TABLE table_name_95 (place VARCHAR, to_par VARCHAR, player VARCHAR)
|
SELECT molecular_target FROM table_name_10 WHERE marine_organism_α = "bacterium"
|
What is the molecular target of bacterium?
|
CREATE TABLE table_name_10 (molecular_target VARCHAR, marine_organism_α VARCHAR)
|
SELECT syrian_christians FROM table_23214055_2 WHERE district = "Thiruvananthapuram"
|
Name the syrian christians for thiruvananthapuram
|
CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR)
|
SELECT high_rebounds FROM table_name_73 WHERE game > 65 AND date = "march 28"
|
Who had the highest rebounds of the game with a game number higher than 65 on March 28?
|
CREATE TABLE table_name_73 (high_rebounds VARCHAR, game VARCHAR, date VARCHAR)
|
SELECT COUNT(lane) FROM table_name_72 WHERE time = "2:08.11" AND rank > 3
|
How many Lanes have a rank higher than 3 with a time of 2:08.11?
|
CREATE TABLE table_name_72 (lane VARCHAR, time VARCHAR, rank VARCHAR)
|
SELECT venue FROM table_name_78 WHERE competition = "2013 eaff east asian cup qualifier"
|
Where was the 2013 Eaff East Asian Cup Qualifier played?
|
CREATE TABLE table_name_78 (venue VARCHAR, competition VARCHAR)
|
SELECT man_of_the_match FROM table_19576091_1 WHERE result = "Rockets won by 9 wickets"
|
Who was the man of the match when the Rockets won by 9 wickets?
|
CREATE TABLE table_19576091_1 (man_of_the_match VARCHAR, result VARCHAR)
|
SELECT new_conference FROM table_14976504_2 WHERE institution = "California State University, Hayward"
|
What is California State University, Hayward's new conference for Western Collegiate Lacrosse?
|
CREATE TABLE table_14976504_2 (new_conference VARCHAR, institution VARCHAR)
|
SELECT date FROM table_name_23 WHERE venue = "brisbane cricket ground"
|
On what date was the venue at Brisbane Cricket Ground?
|
CREATE TABLE table_name_23 (date VARCHAR, venue VARCHAR)
|
SELECT _percentage_cut FROM table_21690339_1 WHERE gas_storage = "80% full"
|
What wast the percent cut for the nation with an 80% full gas storage?
|
CREATE TABLE table_21690339_1 (_percentage_cut VARCHAR, gas_storage VARCHAR)
|
SELECT MAX(extra) FROM table_name_51 WHERE meeting = "all africa games" AND year < 2003
|
What is the highest extra total before 2003 at the Meeting of all africa games?
|
CREATE TABLE table_name_51 (extra INTEGER, meeting VARCHAR, year VARCHAR)
|
SELECT T1.city FROM city AS T1 JOIN temperature AS T2 ON T1.city_id = T2.city_id ORDER BY T2.Feb DESC LIMIT 1
|
Which city has the highest temperature in February?
|
CREATE TABLE city (city VARCHAR, city_id VARCHAR); CREATE TABLE temperature (city_id VARCHAR, Feb VARCHAR)
|
SELECT team FROM table_name_82 WHERE score = "108-107"
|
Which Team has a Score of 108-107?
|
CREATE TABLE table_name_82 (team VARCHAR, score VARCHAR)
|
SELECT Fname FROM Student WHERE Major = 600
|
Show first name for all students with major 600.
|
CREATE TABLE Student (Fname VARCHAR, Major VARCHAR)
|
SELECT MIN(heat) FROM table_name_44 WHERE lane = 4 AND quart > 44.62
|
When a lane of 4 has a QUART greater than 44.62, what is the lowest HEAT?
|
CREATE TABLE table_name_44 (heat INTEGER, lane VARCHAR, quart VARCHAR)
|
SELECT character_name FROM table_name_72 WHERE release_date = "july 29, 1938"
|
What was the character name for the film with a release date of July 29, 1938?
|
CREATE TABLE table_name_72 (character_name VARCHAR, release_date VARCHAR)
|
SELECT location FROM table_name_65 WHERE school = "the friends' school"
|
WHere is the friends' school?
|
CREATE TABLE table_name_65 (location VARCHAR, school VARCHAR)
|
SELECT venue FROM table_name_40 WHERE result = "lost"
|
What is the Venue with a Result that is lost?
|
CREATE TABLE table_name_40 (venue VARCHAR, result VARCHAR)
|
SELECT MAX(aug_2013) FROM table_name_27 WHERE nov_2011 < 968 AND jul_2012 = 31 AND jun_2011 > 30
|
What is the highest Aug 2013 with a Nov 2011 smaller than 968, and a Jul 2012 with 31, and a Jun 2011 larger than 30?
|
CREATE TABLE table_name_27 (aug_2013 INTEGER, jun_2011 VARCHAR, nov_2011 VARCHAR, jul_2012 VARCHAR)
|
SELECT COUNT(week) FROM table_name_51 WHERE date = "september 21, 1969" AND attendance < 26 OFFSET 243
|
On what week were there 26,243 in attendance on September 21, 1969?
|
CREATE TABLE table_name_51 (week VARCHAR, date VARCHAR, attendance VARCHAR)
|
SELECT SUM(population) FROM table_name_57 WHERE markatal > 48 AND inhabitants_per_km² > 24 AND municipality = "runavík"
|
What is the sum of Population, when Markatal is greater than 48, when Inhabitants Per Km² is greater than 24, and when Municipality is Runavík?
|
CREATE TABLE table_name_57 (population INTEGER, municipality VARCHAR, markatal VARCHAR, inhabitants_per_km² VARCHAR)
|
SELECT venue FROM table_name_57 WHERE away_team = "fitzroy"
|
Which venue does Fitzroy play as an away team?
|
CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR)
|
SELECT to_par FROM table_name_95 WHERE country = "denmark"
|
Name the To par for denmark
|
CREATE TABLE table_name_95 (to_par VARCHAR, country VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.