question
stringlengths 17
201
| answer
stringlengths 21
400
| context
stringlengths 32
286
|
---|---|---|
Which Region that has a growth of β3.6%?
|
SELECT region FROM table_name_24 WHERE _percentage_growth = "β3.6"
|
CREATE TABLE table_name_24 (region VARCHAR, _percentage_growth VARCHAR)
|
On what date was My Lord What a Mornin' recorded?
|
SELECT recording_date FROM table_name_55 WHERE title = "my lord what a mornin'"
|
CREATE TABLE table_name_55 (recording_date VARCHAR, title VARCHAR)
|
what is the party with the incumbent jim demint?
|
SELECT party FROM table_1341423_40 WHERE incumbent = "Jim DeMint"
|
CREATE TABLE table_1341423_40 (party VARCHAR, incumbent VARCHAR)
|
How many wins did Ayr United have?
|
SELECT wins FROM table_name_79 WHERE club = "ayr united"
|
CREATE TABLE table_name_79 (wins VARCHAR, club VARCHAR)
|
How many draws have french as the language, with a place less than 1?
|
SELECT SUM(draw) FROM table_name_93 WHERE language = "french" AND place < 1
|
CREATE TABLE table_name_93 (draw INTEGER, language VARCHAR, place VARCHAR)
|
What events did the competition that took place in 1997 have?
|
SELECT notes FROM table_name_96 WHERE year = 1997
|
CREATE TABLE table_name_96 (notes VARCHAR, year VARCHAR)
|
If the call sign is DXYR, what is the branding?
|
SELECT branding FROM table_19874169_3 WHERE callsign = "DXYR"
|
CREATE TABLE table_19874169_3 (branding VARCHAR, callsign VARCHAR)
|
What was the air date where there were 5.72 million viewers?
|
SELECT original_air_date FROM table_23483182_1 WHERE us_viewers__million_ = "5.72"
|
CREATE TABLE table_23483182_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
|
What's the theme for a series of season 3 with smaller than 148 days?
|
SELECT theme FROM table_name_6 WHERE days < 148 AND series = "season 3"
|
CREATE TABLE table_name_6 (theme VARCHAR, days VARCHAR, series VARCHAR)
|
If the incoming head coach is Carlos Azenha, what is the date of vacancy?
|
SELECT date_of_vacancy FROM table_27133147_3 WHERE incoming_head_coach = "Carlos Azenha"
|
CREATE TABLE table_27133147_3 (date_of_vacancy VARCHAR, incoming_head_coach VARCHAR)
|
What was the score on April 21?
|
SELECT score FROM table_name_12 WHERE date = "april 21"
|
CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR)
|
What is the gross capacity where the net capacity is 1380?
|
SELECT MIN(gross_capacity__mw_) FROM table_213088_1 WHERE net_capacity__mw_ = 1380
|
CREATE TABLE table_213088_1 (gross_capacity__mw_ INTEGER, net_capacity__mw_ VARCHAR)
|
What country is Alain Labrecque from?
|
SELECT nationality FROM table_1965650_10 WHERE player = "Alain Labrecque"
|
CREATE TABLE table_1965650_10 (nationality VARCHAR, player VARCHAR)
|
What is the title where the studio was RKO, the role was Dolly, and the year was later than 1943?
|
SELECT title FROM table_name_98 WHERE year > 1943 AND studio = "rko" AND role = "dolly"
|
CREATE TABLE table_name_98 (title VARCHAR, role VARCHAR, year VARCHAR, studio VARCHAR)
|
What is the time/retired for jo siffert with a grid under 11?
|
SELECT time_retired FROM table_name_45 WHERE grid < 11 AND driver = "jo siffert"
|
CREATE TABLE table_name_45 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)
|
What is the Bike with 18 laps and +41.280 as the time?
|
SELECT bike FROM table_name_51 WHERE laps = 18 AND time = "+41.280"
|
CREATE TABLE table_name_51 (bike VARCHAR, laps VARCHAR, time VARCHAR)
|
What is the prothrombin time in Von willebrand disease?
|
SELECT prothrombin_time FROM table_1557752_1 WHERE condition = "Von Willebrand disease"
|
CREATE TABLE table_1557752_1 (prothrombin_time VARCHAR, condition VARCHAR)
|
How many coins by Suzanne Duranceau were minted?
|
SELECT mintage FROM table_name_93 WHERE artist = "suzanne duranceau"
|
CREATE TABLE table_name_93 (mintage VARCHAR, artist VARCHAR)
|
In which game did the opponent score more than 103 and the record was 1-3?
|
SELECT AVG(game) FROM table_name_32 WHERE record = "1-3" AND opponents > 103
|
CREATE TABLE table_name_32 (game INTEGER, record VARCHAR, opponents VARCHAR)
|
What is the date of the match where vampiro was the winner in Mexico City?
|
SELECT date FROM table_name_40 WHERE location = "mexico city" AND winner = "vampiro"
|
CREATE TABLE table_name_40 (date VARCHAR, location VARCHAR, winner VARCHAR)
|
What is the highest season wth a Win of 1 and a Position that is 8th?
|
SELECT MAX(season) FROM table_name_3 WHERE wins = 1 AND position = "8th"
|
CREATE TABLE table_name_3 (season INTEGER, wins VARCHAR, position VARCHAR)
|
What was the winning score in the PGA Championship?
|
SELECT winning_score FROM table_name_14 WHERE championship = "pga championship"
|
CREATE TABLE table_name_14 (winning_score VARCHAR, championship VARCHAR)
|
What's Doug Borden's position?
|
SELECT position FROM table_23619005_3 WHERE player = "Doug Borden"
|
CREATE TABLE table_23619005_3 (position VARCHAR, player VARCHAR)
|
What was the highest number of goals for a game held at Hannover?
|
SELECT MAX(goal) FROM table_name_27 WHERE venue = "hannover"
|
CREATE TABLE table_name_27 (goal INTEGER, venue VARCHAR)
|
Was diary for my loves nominated?
|
SELECT result FROM table_14975415_1 WHERE english_title = "Diary for My Loves"
|
CREATE TABLE table_14975415_1 (result VARCHAR, english_title VARCHAR)
|
What is the organized date of the stake with an occupation of senior buyer for Wal-mart?
|
SELECT organized FROM table_name_67 WHERE occupation = "senior buyer for wal-mart"
|
CREATE TABLE table_name_67 (organized VARCHAR, occupation VARCHAR)
|
What is the lowest episode number where john bird was the 4th performer?
|
SELECT MIN(episode) FROM table_name_48 WHERE performer_4 = "john bird"
|
CREATE TABLE table_name_48 (episode INTEGER, performer_4 VARCHAR)
|
On the date of April 22, which city was a visitor?
|
SELECT visitor FROM table_name_5 WHERE date = "april 22"
|
CREATE TABLE table_name_5 (visitor VARCHAR, date VARCHAR)
|
How many millions of viewers did the episode directed by Jeffrey Blitz have?
|
SELECT us_viewers__million_ FROM table_25341765_1 WHERE directed_by = "Jeffrey Blitz"
|
CREATE TABLE table_25341765_1 (us_viewers__million_ VARCHAR, directed_by VARCHAR)
|
What was the air date of episode 5?
|
SELECT air_date FROM table_name_33 WHERE episode_number = 5
|
CREATE TABLE table_name_33 (air_date VARCHAR, episode_number VARCHAR)
|
Which Year has a Genre of rock (track)?
|
SELECT SUM(year) FROM table_name_3 WHERE genre = "rock (track)"
|
CREATE TABLE table_name_3 (year INTEGER, genre VARCHAR)
|
Crawley Town as the home team has what as the tie no?
|
SELECT tie_no FROM table_name_77 WHERE home_team = "crawley town"
|
CREATE TABLE table_name_77 (tie_no VARCHAR, home_team VARCHAR)
|
What is the 2004 value in the 2011 Grand Slam Tournaments?
|
SELECT 2004 FROM table_name_46 WHERE 2011 = "grand slam tournaments"
|
CREATE TABLE table_name_46 (Id VARCHAR)
|
What was Australia's place?
|
SELECT place FROM table_name_99 WHERE country = "australia"
|
CREATE TABLE table_name_99 (place VARCHAR, country VARCHAR)
|
Report the first name and last name of all the teachers.
|
SELECT DISTINCT firstname, lastname FROM teachers
|
CREATE TABLE teachers (firstname VARCHAR, lastname VARCHAR)
|
Who was champion in 2005 where the semi-finalist was #1 in western Carolina?
|
SELECT champion FROM table_name_36 WHERE year = 2005 AND semi_finalist__number1 = "western carolina"
|
CREATE TABLE table_name_36 (champion VARCHAR, year VARCHAR, semi_finalist__number1 VARCHAR)
|
When did the person born 24 September 1851 pass away?
|
SELECT date_of_death FROM table_name_66 WHERE date_of_birth = "24 september 1851"
|
CREATE TABLE table_name_66 (date_of_death VARCHAR, date_of_birth VARCHAR)
|
What is the highest Week, when Result is W 34-21?
|
SELECT MAX(week) FROM table_name_89 WHERE result = "w 34-21"
|
CREATE TABLE table_name_89 (week INTEGER, result VARCHAR)
|
Which conference held at School of whiting?
|
SELECT previous_conference FROM table_name_49 WHERE school = "whiting"
|
CREATE TABLE table_name_49 (previous_conference VARCHAR, school VARCHAR)
|
Which Works number has a Number larger than 807, and a Type of 0-6-0, and a Date of 1920?
|
SELECT AVG(works_number) FROM table_name_1 WHERE number > 807 AND type = "0-6-0" AND date = 1920
|
CREATE TABLE table_name_1 (works_number INTEGER, date VARCHAR, number VARCHAR, type VARCHAR)
|
What is the 2012 value with a 1r in 2011 in the Australian Open?
|
SELECT 2012 FROM table_name_6 WHERE 2011 = "1r" AND tournament = "australian open"
|
CREATE TABLE table_name_6 (tournament VARCHAR)
|
What place is player Brad Faxon from?
|
SELECT place FROM table_name_33 WHERE player = "brad faxon"
|
CREATE TABLE table_name_33 (place VARCHAR, player VARCHAR)
|
What constellation has a Declination ( J2000 ) of Β°32β²39β³?
|
SELECT constellation FROM table_name_57 WHERE declination___j2000__ = "Β°32β²39β³"
|
CREATE TABLE table_name_57 (constellation VARCHAR, declination___j2000__ VARCHAR)
|
Where did they play that the score was 22-12?
|
SELECT venue FROM table_name_21 WHERE result = "22-12"
|
CREATE TABLE table_name_21 (venue VARCHAR, result VARCHAR)
|
Who swam in a lane less than 6 and finished with a time of 2:11.02?
|
SELECT name FROM table_name_70 WHERE lane < 6 AND time = "2:11.02"
|
CREATE TABLE table_name_70 (name VARCHAR, lane VARCHAR, time VARCHAR)
|
What is the lowest density of alessandria where the area is bigger than 16.02 and altitude is less than 116?
|
SELECT MIN(density__inhabitants_km_2__) FROM table_name_39 WHERE area__km_2__ > 16.02 AND altitude__mslm_ < 116 AND city = "alessandria"
|
CREATE TABLE table_name_39 (density__inhabitants_km_2__ INTEGER, city VARCHAR, area__km_2__ VARCHAR, altitude__mslm_ VARCHAR)
|
What country was the golfer with a score of 72-72-72=216 representing?
|
SELECT country FROM table_name_78 WHERE score = 72 - 72 - 72 = 216
|
CREATE TABLE table_name_78 (country VARCHAR, score VARCHAR)
|
What is the sum of the losses by the Montreal Hockey Club, who have more than 15 Goals Against?
|
SELECT SUM(losses) FROM table_name_56 WHERE team = "montreal hockey club" AND goals_against > 15
|
CREATE TABLE table_name_56 (losses INTEGER, team VARCHAR, goals_against VARCHAR)
|
What are the notes for bydgoszcz, Poland?
|
SELECT notes FROM table_name_37 WHERE venue = "bydgoszcz, poland"
|
CREATE TABLE table_name_37 (notes VARCHAR, venue VARCHAR)
|
Which Goals have Ends of 30 june 2010, and Since larger than 2007?
|
SELECT goals FROM table_name_14 WHERE ends = "30 june 2010" AND since > 2007
|
CREATE TABLE table_name_14 (goals VARCHAR, ends VARCHAR, since VARCHAR)
|
Which Away has a Tie no of replay, and a Score of 2β0?
|
SELECT away_team FROM table_name_93 WHERE tie_no = "replay" AND score = "2β0"
|
CREATE TABLE table_name_93 (away_team VARCHAR, tie_no VARCHAR, score VARCHAR)
|
What series had high rebounds with Marcus Camby (11)?
|
SELECT series FROM table_23286158_11 WHERE high_rebounds = "Marcus Camby (11)"
|
CREATE TABLE table_23286158_11 (series VARCHAR, high_rebounds VARCHAR)
|
Whose term started on 4 May 2006?
|
SELECT minister FROM table_name_35 WHERE term_start = "4 may 2006"
|
CREATE TABLE table_name_35 (minister VARCHAR, term_start VARCHAR)
|
Name the most number of leitrim
|
SELECT MAX(no) FROM table_1705429_1 WHERE constituency = "Leitrim"
|
CREATE TABLE table_1705429_1 (no INTEGER, constituency VARCHAR)
|
What is the name of the episode that was written by Michael Rauch?
|
SELECT title FROM table_23117208_5 WHERE written_by = "Michael Rauch"
|
CREATE TABLE table_23117208_5 (title VARCHAR, written_by VARCHAR)
|
Thomas J. Lane is the incumbent of how many parties?
|
SELECT COUNT(party) FROM table_1342013_20 WHERE incumbent = "Thomas J. Lane"
|
CREATE TABLE table_1342013_20 (party VARCHAR, incumbent VARCHAR)
|
Which class has *alanaz as Part 4?
|
SELECT class FROM table_name_62 WHERE part_4 = "*alanaz"
|
CREATE TABLE table_name_62 (class VARCHAR, part_4 VARCHAR)
|
Name the total number of date for round 26
|
SELECT COUNT(date) FROM table_21269143_1 WHERE round = "26"
|
CREATE TABLE table_21269143_1 (date VARCHAR, round VARCHAR)
|
What is Nick Price's score?
|
SELECT score FROM table_name_20 WHERE player = "nick price"
|
CREATE TABLE table_name_20 (score VARCHAR, player VARCHAR)
|
What is Place, when Player is "Ben Crenshaw"?
|
SELECT place FROM table_name_99 WHERE player = "ben crenshaw"
|
CREATE TABLE table_name_99 (place VARCHAR, player VARCHAR)
|
What was the crowd size for the game with a score of 101-105?
|
SELECT crowd FROM table_name_13 WHERE score = "101-105"
|
CREATE TABLE table_name_13 (crowd VARCHAR, score VARCHAR)
|
What is the average Touchdowns, when Yards is less than 293, and when Long is greater than 39?
|
SELECT AVG(touchdowns) FROM table_name_7 WHERE yards < 293 AND long > 39
|
CREATE TABLE table_name_7 (touchdowns INTEGER, yards VARCHAR, long VARCHAR)
|
Who was the driver who had a final position of 14?
|
SELECT driver FROM table_name_19 WHERE fin_pos = "14"
|
CREATE TABLE table_name_19 (driver VARCHAR, fin_pos VARCHAR)
|
What round was Joe Sims picked?
|
SELECT AVG(round) FROM table_name_24 WHERE player = "joe sims"
|
CREATE TABLE table_name_24 (round INTEGER, player VARCHAR)
|
What team was he on when he finished in 11th position?
|
SELECT team FROM table_24491017_1 WHERE position = "11th"
|
CREATE TABLE table_24491017_1 (team VARCHAR, position VARCHAR)
|
What was the attendance at the game that had a loss of Crabtree (0-1)?
|
SELECT attendance FROM table_name_34 WHERE loss = "crabtree (0-1)"
|
CREATE TABLE table_name_34 (attendance VARCHAR, loss VARCHAR)
|
What Position is Ryan Russell?
|
SELECT position FROM table_name_6 WHERE player = "ryan russell"
|
CREATE TABLE table_name_6 (position VARCHAR, player VARCHAR)
|
Which film or series was nominated in the category of best fansite?
|
SELECT film_or_series FROM table_name_2 WHERE result = "nominated" AND category = "best fansite"
|
CREATE TABLE table_name_2 (film_or_series VARCHAR, result VARCHAR, category VARCHAR)
|
When did the Indians play a game with a record of 28-41?
|
SELECT date FROM table_name_66 WHERE record = "28-41"
|
CREATE TABLE table_name_66 (date VARCHAR, record VARCHAR)
|
What are the number of winning tickets that have 180.00 as the prize (eur)?
|
SELECT number_of_winning_tickets FROM table_20195922_3 WHERE prize__eur_ = "180.00"
|
CREATE TABLE table_20195922_3 (number_of_winning_tickets VARCHAR, prize__eur_ VARCHAR)
|
What machine did Keith T. Gawler ride?
|
SELECT machine FROM table_name_76 WHERE rider = "keith t. gawler"
|
CREATE TABLE table_name_76 (machine VARCHAR, rider VARCHAR)
|
What is the value of Ends Lost when Blank Ends is 9.
|
SELECT Ends AS lost FROM table_1505809_2 WHERE blank_ends = 9
|
CREATE TABLE table_1505809_2 (Ends VARCHAR, blank_ends VARCHAR)
|
Which Country has a To par of β13?
|
SELECT country FROM table_name_12 WHERE to_par = "β13"
|
CREATE TABLE table_name_12 (country VARCHAR, to_par VARCHAR)
|
Name the high rebounds for 17-33
|
SELECT high_rebounds FROM table_23274514_7 WHERE record = "17-33"
|
CREATE TABLE table_23274514_7 (high_rebounds VARCHAR, record VARCHAR)
|
Who is the away side at windy hill?
|
SELECT away_team FROM table_name_35 WHERE venue = "windy hill"
|
CREATE TABLE table_name_35 (away_team VARCHAR, venue VARCHAR)
|
What is the average Grid for the honda cbr1000rr, with 18 laps and a time of +1:12.884?
|
SELECT AVG(grid) FROM table_name_45 WHERE bike = "honda cbr1000rr" AND laps = 18 AND time = "+1:12.884"
|
CREATE TABLE table_name_45 (grid INTEGER, time VARCHAR, bike VARCHAR, laps VARCHAR)
|
Which episode number drew in 3.35 million viewers in the United States?
|
SELECT COUNT(series__number) FROM table_14929574_3 WHERE us_viewers__million_ = "3.35"
|
CREATE TABLE table_14929574_3 (series__number VARCHAR, us_viewers__million_ VARCHAR)
|
Who constructed the car that had a grid of 6?
|
SELECT constructor FROM table_name_29 WHERE grid = "6"
|
CREATE TABLE table_name_29 (constructor VARCHAR, grid VARCHAR)
|
Which position was the World Indoor Championships in a year later than 2008?
|
SELECT position FROM table_name_64 WHERE competition = "world indoor championships" AND year > 2008
|
CREATE TABLE table_name_64 (position VARCHAR, competition VARCHAR, year VARCHAR)
|
Which combined score has an overall of 8?
|
SELECT combined FROM table_name_80 WHERE overall = "8"
|
CREATE TABLE table_name_80 (combined VARCHAR, overall VARCHAR)
|
How many people got high points in game 35?
|
SELECT COUNT(high_points) FROM table_23274514_6 WHERE game = 35
|
CREATE TABLE table_23274514_6 (high_points VARCHAR, game VARCHAR)
|
Name the results for steve millen
|
SELECT results FROM table_13643154_2 WHERE gto_winning_team = "Steve Millen"
|
CREATE TABLE table_13643154_2 (results VARCHAR, gto_winning_team VARCHAR)
|
How many bronze medals were won in 1998?
|
SELECT bronze FROM table_name_27 WHERE year = "1998"
|
CREATE TABLE table_name_27 (bronze VARCHAR, year VARCHAR)
|
What day was the visitor Cleveland when the record was 34-26?
|
SELECT date FROM table_name_43 WHERE visitor = "cleveland" AND record = "34-26"
|
CREATE TABLE table_name_43 (date VARCHAR, visitor VARCHAR, record VARCHAR)
|
What episode number in the series was viewed by 13.66 million people in the U.S.?
|
SELECT MAX(no_in_series) FROM table_25668962_1 WHERE us_viewers__million_ = "13.66"
|
CREATE TABLE table_25668962_1 (no_in_series INTEGER, us_viewers__million_ VARCHAR)
|
Which round has a record of 5-3 (1)?
|
SELECT MIN(round) FROM table_name_51 WHERE record = "5-3 (1)"
|
CREATE TABLE table_name_51 (round INTEGER, record VARCHAR)
|
What is the highest score for Black Milk?
|
SELECT MAX(average_score) FROM table_name_29 WHERE artist = "black milk"
|
CREATE TABLE table_name_29 (average_score INTEGER, artist VARCHAR)
|
Tell me the winning constructor for the paris cup
|
SELECT winning_constructor FROM table_name_42 WHERE name = "paris cup"
|
CREATE TABLE table_name_42 (winning_constructor VARCHAR, name VARCHAR)
|
What T20 match was played in 1979?
|
SELECT t20_matches FROM table_name_33 WHERE year = "1979"
|
CREATE TABLE table_name_33 (t20_matches VARCHAR, year VARCHAR)
|
Which Week 2 Sept 7 has a Week 6 Oct 5 of wake forest (3-1)?
|
SELECT week_2_sept_7 FROM table_name_84 WHERE week_6_oct_5 = "wake forest (3-1)"
|
CREATE TABLE table_name_84 (week_2_sept_7 VARCHAR, week_6_oct_5 VARCHAR)
|
What is week 4 if week 3 is 35.40?
|
SELECT week_4 FROM table_name_26 WHERE week_3 = "35.40"
|
CREATE TABLE table_name_26 (week_4 VARCHAR, week_3 VARCHAR)
|
What series number had an original airdate of March 1, 1991?
|
SELECT MIN(no_in_series) FROM table_2409041_3 WHERE original_air_date = "March 1, 1991"
|
CREATE TABLE table_2409041_3 (no_in_series INTEGER, original_air_date VARCHAR)
|
How many times did district of Columbia receive a score for evening gown?
|
SELECT COUNT(evening_gown) FROM table_12094300_1 WHERE state = "District of Columbia"
|
CREATE TABLE table_12094300_1 (evening_gown VARCHAR, state VARCHAR)
|
Episode of 16 involves which performer 1?
|
SELECT performer_1 FROM table_name_64 WHERE episode = 16
|
CREATE TABLE table_name_64 (performer_1 VARCHAR, episode VARCHAR)
|
What is the latest founding date?
|
SELECT MAX(founded) FROM table_2076490_1
|
CREATE TABLE table_2076490_1 (founded INTEGER)
|
Find all the customer information in state NY.
|
SELECT * FROM CUSTOMER WHERE State = "NY"
|
CREATE TABLE CUSTOMER (State VARCHAR)
|
When Bianca Manalo won Miss Universe Philippines who was the second runner-up?
|
SELECT second_runner_up FROM table_name_46 WHERE miss_universe_philippines = "bianca manalo"
|
CREATE TABLE table_name_46 (second_runner_up VARCHAR, miss_universe_philippines VARCHAR)
|
What was the name of the song in Amma Cheppindi?
|
SELECT song_title FROM table_name_84 WHERE movie = "amma cheppindi"
|
CREATE TABLE table_name_84 (song_title VARCHAR, movie VARCHAR)
|
What is the total number of Silver for the Nation with more than 1 Bronze and a Rank less than 5?
|
SELECT COUNT(silver) FROM table_name_26 WHERE bronze > 1 AND rank < 5
|
CREATE TABLE table_name_26 (silver VARCHAR, bronze VARCHAR, rank VARCHAR)
|
What's was the 2008 during the Year End Ranking?
|
SELECT 2008 FROM table_name_44 WHERE tournament = "year end ranking"
|
CREATE TABLE table_name_44 (tournament VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.