answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
---|---|---|
SELECT moving_to FROM table_name_15 WHERE nat = "arg esp"
|
Where is the nationality of Arg Esp moving to?
|
CREATE TABLE table_name_15 (moving_to VARCHAR, nat VARCHAR)
|
SELECT MAX(wins) FROM table_name_82 WHERE draws > 4 AND club = "cd orense" AND points > 36
|
What is the highest number of wins for club Cd Orense, with points greater than 36 and more than 4 draws?
|
CREATE TABLE table_name_82 (wins INTEGER, points VARCHAR, draws VARCHAR, club VARCHAR)
|
SELECT away_team FROM table_name_80 WHERE home_team = "south melbourne"
|
When South Melbourne was the home team, who was the away team?
|
CREATE TABLE table_name_80 (away_team VARCHAR, home_team VARCHAR)
|
SELECT venue FROM table_name_42 WHERE away_team = "collingwood"
|
What venue did the away team Collingwood play at?
|
CREATE TABLE table_name_42 (venue VARCHAR, away_team VARCHAR)
|
SELECT score_in_the_final FROM table_name_96 WHERE championship = "athens , greece" AND outcome = "winner"
|
What is Score In The Final, when Championship is "Athens , Greece", and when Outcome is "Winner"?
|
CREATE TABLE table_name_96 (score_in_the_final VARCHAR, championship VARCHAR, outcome VARCHAR)
|
SELECT year FROM table_name_92 WHERE finish = "19"
|
What year has a finish of 19?
|
CREATE TABLE table_name_92 (year VARCHAR, finish VARCHAR)
|
SELECT mecha FROM table_name_33 WHERE bird_uniform = "condor"
|
What is the mecha with a condor bird uniform?
|
CREATE TABLE table_name_33 (mecha VARCHAR, bird_uniform VARCHAR)
|
SELECT AVG(rank) FROM table_name_36 WHERE time = "2:25.65" AND lane > 3
|
What is the Rank of the Swimmer with a Time of 2:25.65 in a Lane larger than 3?
|
CREATE TABLE table_name_36 (rank INTEGER, time VARCHAR, lane VARCHAR)
|
SELECT tyre FROM table_name_77 WHERE constructor = "cooper - bristol" AND driver = "bob gerard"
|
What was tyre that was made by cooper - bristol that was driven by bob gerard?
|
CREATE TABLE table_name_77 (tyre VARCHAR, constructor VARCHAR, driver VARCHAR)
|
SELECT AVG(staying_councillors) FROM table_name_22 WHERE new_council = 7 AND previous_council > 8
|
Which Staying councillors have a New council of 7, and a Previous council larger than 8?
|
CREATE TABLE table_name_22 (staying_councillors INTEGER, new_council VARCHAR, previous_council VARCHAR)
|
SELECT time FROM table_name_44 WHERE show_name = "mornings with neil mitchell"
|
What Time has a Show Name of mornings with neil mitchell?
|
CREATE TABLE table_name_44 (time VARCHAR, show_name VARCHAR)
|
SELECT position FROM table_name_31 WHERE year < 2000 AND college_country = "usc"
|
Regarding players before 2000, what is the USC player's position?
|
CREATE TABLE table_name_31 (position VARCHAR, year VARCHAR, college_country VARCHAR)
|
SELECT transfer_window FROM table_name_86 WHERE transfer_fee = "free" AND name = "dugdale"
|
What is the Transfer window, when the Transfer fee is "free", and when the Name is Dugdale?
|
CREATE TABLE table_name_86 (transfer_window VARCHAR, transfer_fee VARCHAR, name VARCHAR)
|
SELECT title FROM table_name_95 WHERE release_date = "1954-12-18"
|
What's the title of the film with the release date of 1954-12-18?
|
CREATE TABLE table_name_95 (title VARCHAR, release_date VARCHAR)
|
SELECT city FROM table_name_24 WHERE state_territory = "tasmania" AND icao = "ymhb"
|
Which city has tasmania as the state/territory and a ICAO of ymhb?
|
CREATE TABLE table_name_24 (city VARCHAR, state_territory VARCHAR, icao VARCHAR)
|
SELECT team FROM table_17271495_1 WHERE driver = "Scott Dixon"
|
Name the team for scott dixon
|
CREATE TABLE table_17271495_1 (team VARCHAR, driver VARCHAR)
|
SELECT COUNT(*) FROM Has_allergy WHERE Allergy = "Cat"
|
How many students have cat allergies?
|
CREATE TABLE Has_allergy (Allergy VARCHAR)
|
SELECT episode FROM table_17413485_1 WHERE graemes_guest = "Maria McErlane"
|
what is the number of the episode where maria mcerlane where gramer guest
|
CREATE TABLE table_17413485_1 (episode VARCHAR, graemes_guest VARCHAR)
|
SELECT track FROM table_2454550_1 WHERE race_name = "Argent Mortgage Indy 300"
|
On what track is the Argent mortgage Indy 300 held?
|
CREATE TABLE table_2454550_1 (track VARCHAR, race_name VARCHAR)
|
SELECT nat FROM table_name_50 WHERE moving_from = "bordeaux"
|
In what nation is Bordeaux?
|
CREATE TABLE table_name_50 (nat VARCHAR, moving_from VARCHAR)
|
SELECT date FROM table_name_49 WHERE margin_of_victory = "4 strokes"
|
What is the date of the 4 strokes margin of victory?
|
CREATE TABLE table_name_49 (date VARCHAR, margin_of_victory VARCHAR)
|
SELECT written_by FROM table_16617025_1 WHERE season__number = 8
|
Who wrote Season 8?
|
CREATE TABLE table_16617025_1 (written_by VARCHAR, season__number VARCHAR)
|
SELECT traditional FROM table_2013618_1 WHERE simplified = "屏南县"
|
Name the traditional for 屏南县
|
CREATE TABLE table_2013618_1 (traditional VARCHAR, simplified VARCHAR)
|
SELECT bleeding_time FROM table_1099080_1 WHERE condition = "Factor X deficiency as seen in amyloid purpura"
|
What was the bleeding time for the factor x deficiency as seen in amyloid purpura
|
CREATE TABLE table_1099080_1 (bleeding_time VARCHAR, condition VARCHAR)
|
SELECT to_par FROM table_name_44 WHERE country = "united states" AND score = 69 - 68 - 65 = 202
|
What is the to par of the player from the United States with a score of 69-68-65=202?
|
CREATE TABLE table_name_44 (to_par VARCHAR, country VARCHAR, score VARCHAR)
|
SELECT COUNT(regional_seats) FROM table_name_77 WHERE party = "snp" AND total_seats > 46
|
How many regional seats were there with the SNP party and where the number of total seats was bigger than 46?
|
CREATE TABLE table_name_77 (regional_seats VARCHAR, party VARCHAR, total_seats VARCHAR)
|
SELECT award FROM table_name_30 WHERE result = "won" AND category = "hall of fame"
|
Name the award won in the hall of fame
|
CREATE TABLE table_name_30 (award VARCHAR, result VARCHAR, category VARCHAR)
|
SELECT MIN(year) FROM table_20361783_1 WHERE womens_singles = "Li Xuerui"
|
state the earliest year li xuerui won womens singles
|
CREATE TABLE table_20361783_1 (year INTEGER, womens_singles VARCHAR)
|
SELECT MAX(administrative_panel) FROM table_name_14 WHERE cultural_and_educational_panel = 2 AND industrial_and_commercial_panel > 4
|
What is the highest administrative panel with a cultural and educational panel of 2 plus an industrial and commercial panel larger than 4?
|
CREATE TABLE table_name_14 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR)
|
SELECT COUNT(organization) FROM table_28436909_4 WHERE founding_date = "1873-12-25"
|
When 1873-12-25 is the founding date how many organizations are there?
|
CREATE TABLE table_28436909_4 (organization VARCHAR, founding_date VARCHAR)
|
SELECT type FROM table_name_55 WHERE builder = "avonside engine company" AND number = 9
|
Which Type has a Builder of avonside engine company, and a Number of 9?
|
CREATE TABLE table_name_55 (type VARCHAR, builder VARCHAR, number VARCHAR)
|
SELECT championship FROM table_name_79 WHERE score_in_the_final = "3–6, 6–4, 5–7"
|
Which championship had a score in the final of 3–6, 6–4, 5–7?
|
CREATE TABLE table_name_79 (championship VARCHAR, score_in_the_final VARCHAR)
|
SELECT source_language FROM table_name_28 WHERE meaning = "mahjong"
|
What language did the word that means mahjong first come from?
|
CREATE TABLE table_name_28 (source_language VARCHAR, meaning VARCHAR)
|
SELECT player FROM table_name_63 WHERE score = 69 - 71 = 140
|
Which golfer had a score of 69-71=140?
|
CREATE TABLE table_name_63 (player VARCHAR, score VARCHAR)
|
SELECT COUNT(played) FROM table_19179465_1 WHERE club = "Featherstone Rovers"
|
Featherstone Rovers club played a total of how many games?
|
CREATE TABLE table_19179465_1 (played VARCHAR, club VARCHAR)
|
SELECT nominated_work FROM table_name_55 WHERE type = "rockferendum 2007" AND position = "1st place" AND award = "best album"
|
What work was nominated at Rockferendum 2007 and got 1st place and got the award for best album?
|
CREATE TABLE table_name_55 (nominated_work VARCHAR, award VARCHAR, type VARCHAR, position VARCHAR)
|
SELECT married_filing_separately FROM table_11647327_2 WHERE head_of_household = "$117,451–$190,200"
|
What is ithe range for married filing separately where head of household is $117,451–$190,200?
|
CREATE TABLE table_11647327_2 (married_filing_separately VARCHAR, head_of_household VARCHAR)
|
SELECT COUNT(week) FROM table_name_12 WHERE opponent = "at san francisco 49ers" AND attendance < 34 OFFSET 354
|
How many weeks have an Opponent of at san francisco 49ers, and an Attendance smaller than 34,354?
|
CREATE TABLE table_name_12 (week VARCHAR, opponent VARCHAR, attendance VARCHAR)
|
SELECT directed_by FROM table_22835602_1 WHERE viewers__in_millions_ = "1.945"
|
List all directors from episodes with viewership of 1.945 million.
|
CREATE TABLE table_22835602_1 (directed_by VARCHAR, viewers__in_millions_ VARCHAR)
|
SELECT primary_language_s_ FROM table_name_59 WHERE director = "ilgar safat category:articles with hcards"
|
What is Primary Language(s), when Director is "Ilgar Safat Category:Articles With hCards"?
|
CREATE TABLE table_name_59 (primary_language_s_ VARCHAR, director VARCHAR)
|
SELECT COUNT(losses) FROM table_name_35 WHERE place = 4 AND ties < 0
|
Name the total losses for 4 place and ties less than 0
|
CREATE TABLE table_name_35 (losses VARCHAR, place VARCHAR, ties VARCHAR)
|
SELECT course FROM table_name_22 WHERE jockey = "royston ffrench"
|
Which course had a jockey of Royston FFrench?
|
CREATE TABLE table_name_22 (course VARCHAR, jockey VARCHAR)
|
SELECT report FROM table_name_61 WHERE winning_driver = "emerson fittipaldi"
|
Which Report has a Winning driver of emerson fittipaldi?
|
CREATE TABLE table_name_61 (report VARCHAR, winning_driver VARCHAR)
|
SELECT date FROM table_name_34 WHERE points > 47 AND visitor = "minnesota"
|
On what date does visiting team Minnesota score higher than 47 points?
|
CREATE TABLE table_name_34 (date VARCHAR, points VARCHAR, visitor VARCHAR)
|
SELECT AVG(attendance) FROM table_name_72 WHERE game < 1
|
What is the average attendance of game 1?
|
CREATE TABLE table_name_72 (attendance INTEGER, game INTEGER)
|
SELECT week FROM table_name_74 WHERE date = "november 24, 1957"
|
What week of the season was November 24, 1957?
|
CREATE TABLE table_name_74 (week VARCHAR, date VARCHAR)
|
SELECT venue FROM table_name_41 WHERE date = "1 march 2006"
|
Which Venue has a Date of 1 march 2006?
|
CREATE TABLE table_name_41 (venue VARCHAR, date VARCHAR)
|
SELECT record FROM table_name_89 WHERE date = "march 1"
|
What is Record, when Date is "March 1"?
|
CREATE TABLE table_name_89 (record VARCHAR, date VARCHAR)
|
SELECT launch_date FROM table_1906515_1 WHERE duration__days_ = "174.14"
|
Name the launch date for duration days 174.14
|
CREATE TABLE table_1906515_1 (launch_date VARCHAR, duration__days_ VARCHAR)
|
SELECT result FROM table_name_61 WHERE competition = "friendly"
|
What was the result of the Competition of friendly?
|
CREATE TABLE table_name_61 (result VARCHAR, competition VARCHAR)
|
SELECT main_span_feet FROM table_name_43 WHERE year_opened = 1936 AND country = "united states" AND rank > 47 AND main_span_metres = "421"
|
What is the main span feet from opening year of 1936 in the United States with a rank greater than 47 and 421 main span metres?
|
CREATE TABLE table_name_43 (main_span_feet VARCHAR, main_span_metres VARCHAR, rank VARCHAR, year_opened VARCHAR, country VARCHAR)
|
SELECT COUNT(round) FROM table_name_61 WHERE player = "travis hamonic"
|
What was the total rounds Travis Hamonic played?
|
CREATE TABLE table_name_61 (round VARCHAR, player VARCHAR)
|
SELECT winner_or_2nd FROM table_name_41 WHERE weight > 7.3 AND result = "–"
|
What is the the name of the winner or 2nd with a weight more than 7.3, and the result was –?
|
CREATE TABLE table_name_41 (winner_or_2nd VARCHAR, weight VARCHAR, result VARCHAR)
|
SELECT date FROM table_2167226_3 WHERE tournament = "McDonald's WPGA Championship"
|
What is the date for the tournament McDonald's wpga championship?
|
CREATE TABLE table_2167226_3 (date VARCHAR, tournament VARCHAR)
|
SELECT type_of_record FROM table_21436373_8 WHERE result_games = "9 games (28,595 avg.)"
|
What record was set when the result/game was equal to 9 games (28,595 avg.)
|
CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR)
|
SELECT COUNT(overall) FROM table_name_42 WHERE player = "fred hoaglin"
|
How many drafts featured fred hoaglin?
|
CREATE TABLE table_name_42 (overall VARCHAR, player VARCHAR)
|
SELECT COUNT(game) FROM table_name_92 WHERE february > 11 AND record = "23-7-8"
|
How many games have a February larger than 11, and a Record of 23-7-8?
|
CREATE TABLE table_name_92 (game VARCHAR, february VARCHAR, record VARCHAR)
|
SELECT COUNT(huckleberry_hound) FROM table_19860361_4 WHERE air_date = "1960.09.18"
|
How many Huckleberry Hound episodes were aired on 1960.09.18?
|
CREATE TABLE table_19860361_4 (huckleberry_hound VARCHAR, air_date VARCHAR)
|
SELECT T2.customer_first_name, T2.customer_last_name, T2.customer_phone FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.account_name = "162"
|
What is the first name, last name, and phone of the customer with account name 162?
|
CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR, account_name VARCHAR)
|
SELECT MAX(Population), MIN(Population) FROM county
|
Return the maximum and minimum population among all counties.
|
CREATE TABLE county (Population INTEGER)
|
SELECT COUNT(portrayed_by) FROM table_11240028_3 WHERE relationship = "Informant of Don Flack"
|
How many characters were portrayed by the informant of don flack?
|
CREATE TABLE table_11240028_3 (portrayed_by VARCHAR, relationship VARCHAR)
|
SELECT SUM(total) FROM table_name_3 WHERE fa_cup < 0
|
What is the sum of totals for FA Cup values of 0?
|
CREATE TABLE table_name_3 (total INTEGER, fa_cup INTEGER)
|
SELECT date FROM table_name_61 WHERE tyre = "d" AND winning_driver = "bruce mclaren"
|
What date was the Tyre d and Bruce Mclaren won?
|
CREATE TABLE table_name_61 (date VARCHAR, tyre VARCHAR, winning_driver VARCHAR)
|
SELECT title FROM table_2626495_1 WHERE written_by = "Daphne Field"
|
what is the title of the episode daphne field wrote?
|
CREATE TABLE table_2626495_1 (title VARCHAR, written_by VARCHAR)
|
SELECT sideline_reporter_s_ FROM table_name_22 WHERE network = "nbc" AND play_by_play = "al michaels" AND year > 2013
|
Who are the sideline reporter(s) on NBC with al michaels on the play-by-play after 2013?
|
CREATE TABLE table_name_22 (sideline_reporter_s_ VARCHAR, year VARCHAR, network VARCHAR, play_by_play VARCHAR)
|
SELECT series_1 FROM table_name_58 WHERE series_2 = "doug richards"
|
What series 1 has a Doug Richards in Series 2?
|
CREATE TABLE table_name_58 (series_1 VARCHAR, series_2 VARCHAR)
|
SELECT record FROM table_name_14 WHERE opponent = "john flemming"
|
Which record has john flemming as the opponent?
|
CREATE TABLE table_name_14 (record VARCHAR, opponent VARCHAR)
|
SELECT COUNT(pick) FROM table_name_21 WHERE player = "danny green" AND round < 2
|
What is the pick number for Danny Green in a round less than 2?
|
CREATE TABLE table_name_21 (pick VARCHAR, player VARCHAR, round VARCHAR)
|
SELECT début FROM table_name_9 WHERE team = "waterford" AND player = "tom feeney"
|
What is the year of debut when Tom Feeney plays for the Waterford team?
|
CREATE TABLE table_name_9 (début VARCHAR, team VARCHAR, player VARCHAR)
|
SELECT competition FROM table_name_38 WHERE score = "2–0"
|
What Competition had a Score of 2–0?
|
CREATE TABLE table_name_38 (competition VARCHAR, score VARCHAR)
|
SELECT COUNT(_number) FROM table_16072430_1 WHERE share > 7.0
|
How many episodes have a share bigger than 7.0?
|
CREATE TABLE table_16072430_1 (_number VARCHAR, share INTEGER)
|
SELECT COUNT(total_points) FROM table_name_99 WHERE 1982 = "n/a" AND points_average > 34 AND 1984 > 37
|
What is the points total for the team with points average more than 34, 1984 score more than 37 and N/A in 1982?
|
CREATE TABLE table_name_99 (total_points VARCHAR, points_average VARCHAR)
|
SELECT driver FROM table_name_11 WHERE entrant = "fred saunders"
|
When the entrant is fred saunders what is the driver?
|
CREATE TABLE table_name_11 (driver VARCHAR, entrant VARCHAR)
|
SELECT T1.model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.Weight < (SELECT AVG(Weight) FROM CARS_DATA)
|
Find the model of the car whose weight is below the average weight.
|
CREATE TABLE CARS_DATA (Id VARCHAR, Weight INTEGER); CREATE TABLE CARS_DATA (Weight INTEGER); CREATE TABLE CAR_NAMES (model VARCHAR, MakeId VARCHAR)
|
SELECT driver FROM table_name_18 WHERE tyre = "g" AND rounds = "2-12" AND chassis = "m7a"
|
Which driver has a G tyre, rounds of 2-12 and a M7A chassis?
|
CREATE TABLE table_name_18 (driver VARCHAR, chassis VARCHAR, tyre VARCHAR, rounds VARCHAR)
|
SELECT best FROM table_name_63 WHERE name = "dan selznick"
|
What was Dan Selznick best time?
|
CREATE TABLE table_name_63 (best VARCHAR, name VARCHAR)
|
SELECT 2002 FROM table_name_40 WHERE 2004 = "a" AND 2005 = "1r"
|
What shows for 2002 when the 2004 is A, and the 2005 is 1r?
|
CREATE TABLE table_name_40 (Id VARCHAR)
|
SELECT DISTINCT salary FROM instructor WHERE salary < (SELECT MAX(salary) FROM instructor)
|
Find the salaries of all distinct instructors that are less than the largest salary.
|
CREATE TABLE instructor (salary INTEGER)
|
SELECT AVG(laps) FROM table_name_79 WHERE driver = "teo fabi" AND grid < 9
|
Whats teo fabi average lap time while having less than 9 grids?
|
CREATE TABLE table_name_79 (laps INTEGER, driver VARCHAR, grid VARCHAR)
|
SELECT operating_system_version FROM table_name_27 WHERE memory___ram__ = "1gb (mobile ddr)"
|
Which operating system has 1GB (mobile ddr) memory (RAM)?
|
CREATE TABLE table_name_27 (operating_system_version VARCHAR, memory___ram__ VARCHAR)
|
SELECT COUNT(laps) FROM table_name_44 WHERE grid = 9
|
How many laps were there with #9 grid?
|
CREATE TABLE table_name_44 (laps VARCHAR, grid VARCHAR)
|
SELECT T1.city FROM city AS T1 JOIN temperature AS T2 ON T1.city_id = T2.city_id WHERE T2.Mar < T2.Jul INTERSECT SELECT T3.city FROM city AS T3 JOIN hosting_city AS T4 ON T3.city_id = T4.host_city
|
Give me a list of cities whose temperature in Mar is lower than that in July and which have also served as host cities?
|
CREATE TABLE city (city VARCHAR, city_id VARCHAR); CREATE TABLE hosting_city (host_city VARCHAR); CREATE TABLE temperature (city_id VARCHAR, Mar INTEGER, Jul VARCHAR)
|
SELECT event FROM table_name_64 WHERE round = "1" AND location = "osaka , japan" AND method = "tko (corner stoppage)"
|
What is Event, when Round is "1", when Location is "Osaka , Japan", and when Method is "TKO (corner stoppage)"?
|
CREATE TABLE table_name_64 (event VARCHAR, method VARCHAR, round VARCHAR, location VARCHAR)
|
SELECT name FROM table_name_22 WHERE event = "women's 200m medley"
|
Who was in the women's 200m medley?
|
CREATE TABLE table_name_22 (name VARCHAR, event VARCHAR)
|
SELECT SUM(aids_orphans_as__percentage_of_orphans) FROM table_name_41 WHERE double__aids_related_ = "41,000" AND paternal__total_ > 442 OFFSET 000
|
What is the number of AIDS Orphans as % of Orphans when the Double (AIDS Related) number is 41,000, and the Paternal (Total) is larger than 442,000?
|
CREATE TABLE table_name_41 (aids_orphans_as__percentage_of_orphans INTEGER, double__aids_related_ VARCHAR, paternal__total_ VARCHAR)
|
SELECT label FROM table_name_5 WHERE format = "cd single" AND date = "1993"
|
What Label released a CD single in 1993?
|
CREATE TABLE table_name_5 (label VARCHAR, format VARCHAR, date VARCHAR)
|
SELECT club FROM table_name_62 WHERE played = "22" AND try_bonus = "0"
|
What is the name of the club when the played number is 22, and the try bonus was 0?
|
CREATE TABLE table_name_62 (club VARCHAR, played VARCHAR, try_bonus VARCHAR)
|
SELECT catalog FROM table_name_1 WHERE format = "ed remaster cd" AND label = "village records" AND date = "march 13, 2002"
|
What is the Catalog when the format is ed remaster cd, and a Label of village records, and a Date of march 13, 2002?
|
CREATE TABLE table_name_1 (catalog VARCHAR, date VARCHAR, format VARCHAR, label VARCHAR)
|
SELECT ihsaa_class AS Football FROM table_name_7 WHERE mascot = "panthers"
|
What's the IHSAA Class Football if the panthers are the mascot?
|
CREATE TABLE table_name_7 (ihsaa_class VARCHAR, mascot VARCHAR)
|
SELECT MIN(year_s_) FROM table_name_29 WHERE games_drawn___tests__ = "0" AND points_against___tests__ = "86"
|
What is the earliest year when games drawn was 0, points against are 86?
|
CREATE TABLE table_name_29 (year_s_ INTEGER, games_drawn___tests__ VARCHAR, points_against___tests__ VARCHAR)
|
SELECT COUNT(eliminated_by) FROM table_18598175_2 WHERE time = "32:32"
|
How many player eliminated an opponent within the time frame of 32:32?
|
CREATE TABLE table_18598175_2 (eliminated_by VARCHAR, time VARCHAR)
|
SELECT SUM(wins) FROM table_name_80 WHERE fastest_laps = 0 AND races < 16 AND season = "2007" AND podiums < 0
|
What is the total number of wins in the 2007 season when the fastest laps is 0, there are less than 0 podiums, and there are less than 16 races?
|
CREATE TABLE table_name_80 (wins INTEGER, podiums VARCHAR, season VARCHAR, fastest_laps VARCHAR, races VARCHAR)
|
SELECT language FROM table_name_68 WHERE title = "taken"
|
What language was Taken in?
|
CREATE TABLE table_name_68 (language VARCHAR, title VARCHAR)
|
SELECT date FROM table_name_86 WHERE number_ & _name = "no. 37817"
|
What is the date with identifying number of No. 37817?
|
CREATE TABLE table_name_86 (date VARCHAR, number_ VARCHAR, _name VARCHAR)
|
SELECT SUM(highest_average_point_ratings) FROM table_name_29 WHERE genre = "modern suspense" AND number_of_episodes = 21
|
What was the highest average point rating for a modern suspense show with 21 episodes?
|
CREATE TABLE table_name_29 (highest_average_point_ratings INTEGER, genre VARCHAR, number_of_episodes VARCHAR)
|
SELECT golden_point_s__scorer FROM table_name_31 WHERE venue = "allianz stadium"
|
What Golden point(s) has the Venue Allianz Stadium?
|
CREATE TABLE table_name_31 (golden_point_s__scorer VARCHAR, venue VARCHAR)
|
SELECT MAX(points) FROM table_name_61 WHERE driver = "dan clarke" AND grid > 10
|
What is the highest points total scored by Dan Clarke in a grid higher than 10?
|
CREATE TABLE table_name_61 (points INTEGER, driver VARCHAR, grid VARCHAR)
|
SELECT high_assists FROM table_27700375_8 WHERE team = "@ Indiana"
|
Who got high assists for team @ Indiana?
|
CREATE TABLE table_27700375_8 (high_assists VARCHAR, team VARCHAR)
|
SELECT COUNT(candidates) FROM table_1341453_40 WHERE incumbent = "Mike Doyle"
|
How many candidates ran in the election where Mike Doyle was the incumbent?
|
CREATE TABLE table_1341453_40 (candidates VARCHAR, incumbent VARCHAR)
|
SELECT MAX(year) FROM table_14903999_1 WHERE mixed_doubles = "Árni Þór Hallgrímsson Drífa Harðardóttir"
|
What was the last year árni þór hallgrímsson drífa harðardóttir won mixed doubles
|
CREATE TABLE table_14903999_1 (year INTEGER, mixed_doubles VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.