question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What is the hanja for the province of "sangju"? | CREATE TABLE table_160510_1 (hanja VARCHAR, province VARCHAR) | SELECT hanja FROM table_160510_1 WHERE province = "Sangju" |
What is the home team's score in the game played at glenferrie oval? | CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_40 WHERE venue = "glenferrie oval" |
Which Result has a First elected larger than 1876, and an Incumbent of john s. richardson? | CREATE TABLE table_name_98 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR) | SELECT result FROM table_name_98 WHERE first_elected > 1876 AND incumbent = "john s. richardson" |
When playing against Yi Jingqian in the final on a hard surface what was the score? | CREATE TABLE table_name_29 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR) | SELECT score FROM table_name_29 WHERE surface = "hard" AND opponent_in_the_final = "yi jingqian" |
Which Venue has a Home team of geelong? | CREATE TABLE table_name_45 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_45 WHERE home_team = "geelong" |
What is the highest cr number? | CREATE TABLE table_1886270_1 (cr_no INTEGER) | SELECT MAX(cr_no) FROM table_1886270_1 |
What is the average Laps for a grid smaller than 17, and a Constructor of williams - bmw, driven by jenson button? | CREATE TABLE table_name_49 (laps INTEGER, driver VARCHAR, grid VARCHAR, constructor VARCHAR) | SELECT AVG(laps) FROM table_name_49 WHERE grid < 17 AND constructor = "williams - bmw" AND driver = "jenson button" |
Who's the shooter with score points of defending champion? | CREATE TABLE table_name_51 (shooter VARCHAR, score_points VARCHAR) | SELECT shooter FROM table_name_51 WHERE score_points = "defending champion" |
When did the season air where the viewership was 14.71 million? | CREATE TABLE table_1145977_2 (season VARCHAR, viewers__in_millions_ VARCHAR) | SELECT season AS premiere FROM table_1145977_2 WHERE viewers__in_millions_ = "14.71" |
What was the number of bonus tries when there were 522 points against? | CREATE TABLE table_13399573_3 (try_bonus VARCHAR, points_against VARCHAR) | SELECT try_bonus FROM table_13399573_3 WHERE points_against = "522" |
What is Home Team, when Date is 18 February 1956, and when Tie No is 3? | CREATE TABLE table_name_69 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR) | SELECT home_team FROM table_name_69 WHERE date = "18 february 1956" AND tie_no = "3" |
Who were the batting partners that played for India in 1997? | CREATE TABLE table_name_96 (batting_partners VARCHAR, fielding_team VARCHAR, season VARCHAR) | SELECT batting_partners FROM table_name_96 WHERE fielding_team = "india" AND season = "1997" |
When Bush has 52.9%, what is the Bush#? | CREATE TABLE table_name_10 (bush_number VARCHAR, bush_percentage VARCHAR) | SELECT bush_number FROM table_name_10 WHERE bush_percentage = "52.9%" |
What is Works Number, when Number is 55? | CREATE TABLE table_name_44 (works_number VARCHAR, number VARCHAR) | SELECT works_number FROM table_name_44 WHERE number = "55" |
Name the city of license which has age Watt of 160 watts | CREATE TABLE table_name_56 (city_of_license VARCHAR, age_watt VARCHAR) | SELECT city_of_license FROM table_name_56 WHERE age_watt = "160 watts" |
Show paragraph details for paragraph with text 'Korea ' . | CREATE TABLE paragraphs (other_details VARCHAR, paragraph_text VARCHAR) | SELECT other_details FROM paragraphs WHERE paragraph_text LIKE 'korea' |
What is the lowest number of bronze medals for a country with less than 1 gold and 0 silver? | CREATE TABLE table_name_70 (bronze INTEGER, gold VARCHAR, silver VARCHAR) | SELECT MIN(bronze) FROM table_name_70 WHERE gold = 1 AND silver < 0 |
What is the ga date of the t5120 model? | CREATE TABLE table_10818465_1 (ga_date VARCHAR, model VARCHAR) | SELECT ga_date FROM table_10818465_1 WHERE model = "T5120" |
What is Fractievoorzitter, when Lijsttrekker is "No Elections", and when Year is after 2005? | CREATE TABLE table_name_80 (fractievoorzitter VARCHAR, lijsttrekker VARCHAR, year VARCHAR) | SELECT fractievoorzitter FROM table_name_80 WHERE lijsttrekker = "no elections" AND year > 2005 |
Which Byes have Losses smaller than 4? | CREATE TABLE table_name_38 (byes INTEGER, losses INTEGER) | SELECT AVG(byes) FROM table_name_38 WHERE losses < 4 |
What was the score of the game on December 11? | CREATE TABLE table_17360840_6 (score VARCHAR, date VARCHAR) | SELECT score FROM table_17360840_6 WHERE date = "December 11" |
Who was the winning driver of the British Grand Prix where Giuseppe Farina had the fastest lap? | CREATE TABLE table_name_21 (winning_driver VARCHAR, fastest_lap VARCHAR, race VARCHAR) | SELECT winning_driver FROM table_name_21 WHERE fastest_lap = "giuseppe farina" AND race = "british grand prix" |
what was the title of the episode 21a? | CREATE TABLE table_17810099_3 (title VARCHAR, episode__number VARCHAR) | SELECT title FROM table_17810099_3 WHERE episode__number = "21a" |
What is the lowest year for the game called The Elder Scrolls v: Skyrim? | CREATE TABLE table_name_99 (year INTEGER, game VARCHAR) | SELECT MIN(year) FROM table_name_99 WHERE game = "the elder scrolls v: skyrim" |
Name the high rebounds for january 14 | CREATE TABLE table_27755603_8 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_27755603_8 WHERE date = "January 14" |
When arthur collins is the winner what is the reason? | CREATE TABLE table_28898948_3 (reason VARCHAR, winner VARCHAR) | SELECT reason FROM table_28898948_3 WHERE winner = "Arthur Collins" |
What chart positions did the album reach when ep was the format? | CREATE TABLE table_name_1 (chart_positions VARCHAR, format VARCHAR) | SELECT chart_positions FROM table_name_1 WHERE format = "ep" |
What was the second qualification time for Dale Coyne Racing with a best of 1:03.757? | CREATE TABLE table_name_39 (qual_2 VARCHAR, team VARCHAR, best VARCHAR) | SELECT qual_2 FROM table_name_39 WHERE team = "dale coyne racing" AND best = "1:03.757" |
what was the year first elected for district illinois 7? | CREATE TABLE table_1341718_14 (first_elected INTEGER, district VARCHAR) | SELECT MAX(first_elected) FROM table_1341718_14 WHERE district = "Illinois 7" |
When did the school from Logan Township, Pennsylvania join the Conference? | CREATE TABLE table_1971074_1 (joined VARCHAR, location VARCHAR) | SELECT joined FROM table_1971074_1 WHERE location = "Logan Township, Pennsylvania" |
What is the points against for the team that played 22 and lost 6? | CREATE TABLE table_name_81 (points_against VARCHAR, played VARCHAR, lost VARCHAR) | SELECT points_against FROM table_name_81 WHERE played = "22" AND lost = "6" |
Name the least pick number for the denver broncos | CREATE TABLE table_2508633_2 (pick__number INTEGER, nfl_team VARCHAR) | SELECT MIN(pick__number) FROM table_2508633_2 WHERE nfl_team = "Denver Broncos" |
Name the constructor for alberto ascari | CREATE TABLE table_21977704_1 (constructor VARCHAR, driver VARCHAR) | SELECT constructor FROM table_21977704_1 WHERE driver = "Alberto Ascari" |
What was the date of release for the episode sorted value of 6Y/AA? | CREATE TABLE table_name_13 (released VARCHAR, series_sorted VARCHAR) | SELECT released FROM table_name_13 WHERE series_sorted = "6y/aa" |
What are the translator call letters for station call letters of KCOP-DT? | CREATE TABLE table_name_94 (translator_call_letters VARCHAR, station_call_letters VARCHAR) | SELECT translator_call_letters FROM table_name_94 WHERE station_call_letters = "kcop-dt" |
What is the team 2 for the match with a team 1 of Panathinaikos? | CREATE TABLE table_name_34 (team_2 VARCHAR, team_1 VARCHAR) | SELECT team_2 FROM table_name_34 WHERE team_1 = "panathinaikos" |
What is the average amount of earnings for years under 2004 and money list rankings of 6? | CREATE TABLE table_name_88 (earnings__ INTEGER, money_list_rank VARCHAR, year VARCHAR) | SELECT AVG(earnings__) AS $_ FROM table_name_88 WHERE money_list_rank = "6" AND year < 2004 |
If the school is Rend Lake College, what is the team name? | CREATE TABLE table_22319599_1 (team_name VARCHAR, school VARCHAR) | SELECT team_name FROM table_22319599_1 WHERE school = "Rend Lake College" |
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 womens_singles FROM table_15002265_1 WHERE mixed_doubles = "Bernd Frohnwieser Hilde Themel" AND year < 1959.0 |
What is the variant with niqqud for a phonetic realisation of [[[|v]]]? | CREATE TABLE table_name_77 (variant__with_niqqud__ VARCHAR, phonetic_realisation VARCHAR) | SELECT variant__with_niqqud__ FROM table_name_77 WHERE phonetic_realisation = "[[[|v]]]" |
On what circuit was the iii Reims Grand Prix held? | CREATE TABLE table_name_43 (circuit VARCHAR, race_name VARCHAR) | SELECT circuit FROM table_name_43 WHERE race_name = "iii reims grand prix" |
What is the fewest points opponents have scored when the Cowboys score 36? | CREATE TABLE table_22801331_1 (opponents INTEGER, cowboys_points VARCHAR) | SELECT MIN(opponents) FROM table_22801331_1 WHERE cowboys_points = 36 |
What is the enrollment ratio for preschool in the region where enrollment ratio for tertiary is 29.55? | CREATE TABLE table_25042332_22 (preschool__0_5_years_ VARCHAR, tertiary__18_24_years_ VARCHAR) | SELECT preschool__0_5_years_ FROM table_25042332_22 WHERE tertiary__18_24_years_ = "29.55" |
What is the millisecond cycle for the Fieldbus? | CREATE TABLE table_name_28 (sub_millisecond_cycle VARCHAR) | SELECT sub_millisecond_cycle FROM table_name_28 WHERE "fieldbus" = "fieldbus" |
What was the result in the election in the Kentucky 1 district? | CREATE TABLE table_2668367_7 (result VARCHAR, district VARCHAR) | SELECT result FROM table_2668367_7 WHERE district = "Kentucky 1" |
What was the candidate that got 1,019 votes for staten island? | CREATE TABLE table_name_25 (richmond_ VARCHAR, staten_is VARCHAR) | SELECT 1953 FROM table_name_25 WHERE richmond_[staten_is] = "1,019" |
What is the lowest week for December 26, 1999 | CREATE TABLE table_name_31 (week INTEGER, date VARCHAR) | SELECT MIN(week) FROM table_name_31 WHERE date = "december 26, 1999" |
what builder launched 20 jun 1953? | CREATE TABLE table_name_75 (builder VARCHAR, launched VARCHAR) | SELECT builder FROM table_name_75 WHERE launched = "20 jun 1953" |
what is the total number of nicknames for southwestern college? | CREATE TABLE table_262527_1 (nickname VARCHAR, institution VARCHAR) | SELECT COUNT(nickname) FROM table_262527_1 WHERE institution = "Southwestern College" |
What character did Richard Fleeshman portray? | CREATE TABLE table_22460085_1 (character VARCHAR, original_west_end_performer VARCHAR) | SELECT character FROM table_22460085_1 WHERE original_west_end_performer = "Richard Fleeshman" |
How many weeks have l 3-17 as the result? | CREATE TABLE table_name_9 (week INTEGER, result VARCHAR) | SELECT SUM(week) FROM table_name_9 WHERE result = "l 3-17" |
What was the results for top 12? | CREATE TABLE table_26250176_1 (result VARCHAR, week__number VARCHAR) | SELECT result FROM table_26250176_1 WHERE week__number = "Top 12" |
what is the result for October 14, 1956? | CREATE TABLE table_14984039_1 (result VARCHAR, date VARCHAR) | SELECT result FROM table_14984039_1 WHERE date = "October 14, 1956" |
When were the shares 39.1%? | CREATE TABLE table_name_84 (date VARCHAR, share VARCHAR) | SELECT date FROM table_name_84 WHERE share = "39.1%" |
What manufacturer makes locomotive number CTN 46? | CREATE TABLE table_name_73 (manufacturer VARCHAR, locomotive_number VARCHAR) | SELECT manufacturer FROM table_name_73 WHERE locomotive_number = "ctn 46" |
What is the type ranked 13? | CREATE TABLE table_name_6 (type VARCHAR, rank VARCHAR) | SELECT type FROM table_name_6 WHERE rank = "13" |
On what date were the NY Rangers home? | CREATE TABLE table_name_98 (date VARCHAR, home VARCHAR) | SELECT date FROM table_name_98 WHERE home = "ny rangers" |
How many bronze medals were won when the total is more than 1, and gold is more than 0? | CREATE TABLE table_name_62 (bronze INTEGER, total VARCHAR, gold VARCHAR) | SELECT AVG(bronze) FROM table_name_62 WHERE total > 1 AND gold > 0 |
which player had the status to the fourth round lost to tsvetana pironkova [32] Answers: | CREATE TABLE table_29572583_20 (player VARCHAR, status VARCHAR) | SELECT player FROM table_29572583_20 WHERE status = "Fourth round lost to Tsvetana Pironkova [32]" |
How many times did episode 6 originally air? | CREATE TABLE table_21550897_1 (original_air_date VARCHAR, _number VARCHAR) | SELECT COUNT(original_air_date) FROM table_21550897_1 WHERE _number = 6 |
Name the player for 199 height | CREATE TABLE table_25058562_2 (player VARCHAR, height VARCHAR) | SELECT player FROM table_25058562_2 WHERE height = 199 |
Which Builder has a Class of Terrier? | CREATE TABLE table_name_52 (builder VARCHAR, class VARCHAR) | SELECT builder FROM table_name_52 WHERE class = "terrier" |
what team played on july 9 | CREATE TABLE table_name_72 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_72 WHERE date = "july 9" |
What is average year for ayan mukerji? | CREATE TABLE table_name_29 (year INTEGER, director VARCHAR) | SELECT AVG(year) FROM table_name_29 WHERE director = "ayan mukerji" |
What was the attendance when South Melbourne played as the home team? | CREATE TABLE table_name_21 (crowd INTEGER, home_team VARCHAR) | SELECT MIN(crowd) FROM table_name_21 WHERE home_team = "south melbourne" |
Which Visitor has a Score of 0-4? | CREATE TABLE table_name_78 (visitor VARCHAR, score VARCHAR) | SELECT visitor FROM table_name_78 WHERE score = "0-4" |
what's the party for the first elected in 1980 | CREATE TABLE table_1341472_15 (party VARCHAR, first_elected VARCHAR) | SELECT party FROM table_1341472_15 WHERE first_elected = "1980" |
What golfer has a greater than 293 total, and won in 1989? | CREATE TABLE table_name_34 (player VARCHAR, total VARCHAR, year_s__won VARCHAR) | SELECT player FROM table_name_34 WHERE total > 293 AND year_s__won = "1989" |
What district is Wyatt Aiken in? | CREATE TABLE table_name_19 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_name_19 WHERE incumbent = "wyatt aiken" |
If the rank is 11, what is the total amount? | CREATE TABLE table_21995420_9 (total VARCHAR, rank VARCHAR) | SELECT total FROM table_21995420_9 WHERE rank = 11 |
How many Against has Byes smaller than 2? | CREATE TABLE table_name_15 (against INTEGER, byes INTEGER) | SELECT AVG(against) FROM table_name_15 WHERE byes < 2 |
What was the nationality of the winner for the 20th Edition? | CREATE TABLE table_name_84 (country VARCHAR, edition VARCHAR) | SELECT country FROM table_name_84 WHERE edition = "20th" |
Which Year has Notes of 87.17 m? | CREATE TABLE table_name_74 (year VARCHAR, notes VARCHAR) | SELECT year FROM table_name_74 WHERE notes = "87.17 m" |
What is the title of Buena Vista Pictures? | CREATE TABLE table_name_4 (title VARCHAR, studio VARCHAR) | SELECT title FROM table_name_4 WHERE studio = "buena vista pictures" |
What is the programming for Kanal 5? | CREATE TABLE table_name_20 (programming VARCHAR, name VARCHAR) | SELECT programming FROM table_name_20 WHERE name = "kanal 5" |
what is the airport when the city is düsseldorf? | CREATE TABLE table_name_41 (airport VARCHAR, city VARCHAR) | SELECT airport FROM table_name_41 WHERE city = "düsseldorf" |
Which venue was used on 10 september 2010? | CREATE TABLE table_name_28 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_28 WHERE date = "10 september 2010" |
What was the U.S birthstone in 1912 when in 2013 the birthstone was amethyst? | CREATE TABLE table_name_34 (us__1912_ VARCHAR, us__2013_ VARCHAR) | SELECT us__1912_ FROM table_name_34 WHERE us__2013_ = "amethyst" |
Name the location attendance april 5 | CREATE TABLE table_27713583_11 (location_attendance VARCHAR, date VARCHAR) | SELECT location_attendance FROM table_27713583_11 WHERE date = "April 5" |
What championship had a final score of 6–4, 6–2, 6–2? | CREATE TABLE table_22839669_1 (championship VARCHAR, score_in_the_final VARCHAR) | SELECT championship FROM table_22839669_1 WHERE score_in_the_final = "6–4, 6–2, 6–2" |
When was the livery of Kinneil Sandy Red? | CREATE TABLE table_name_32 (date VARCHAR, livery VARCHAR) | SELECT date FROM table_name_32 WHERE livery = "kinneil sandy red" |
What was the Loser of the Game with a Result of 35-27? | CREATE TABLE table_name_32 (loser VARCHAR, result VARCHAR) | SELECT loser FROM table_name_32 WHERE result = "35-27" |
How many rounds did the match go for the Bellator 72 event? | CREATE TABLE table_name_62 (round INTEGER, event VARCHAR) | SELECT SUM(round) FROM table_name_62 WHERE event = "bellator 72" |
What's the score if the record was 38-30? | CREATE TABLE table_name_52 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_52 WHERE record = "38-30" |
Name the date that is a cd | CREATE TABLE table_name_81 (date VARCHAR, format VARCHAR) | SELECT date FROM table_name_81 WHERE format = "cd" |
Score of 2–1 has what record? | CREATE TABLE table_name_66 (record VARCHAR, score VARCHAR) | SELECT record FROM table_name_66 WHERE score = "2–1" |
What's the GFL Premiership when the home ground was Leopold Memorial Park? | CREATE TABLE table_name_4 (gfl_premierships VARCHAR, home_ground VARCHAR) | SELECT gfl_premierships FROM table_name_4 WHERE home_ground = "leopold memorial park" |
Name the date for sprint winner mexico | CREATE TABLE table_2446333_2 (date VARCHAR, sprint_winner VARCHAR) | SELECT date FROM table_2446333_2 WHERE sprint_winner = "Mexico" |
What is the prominence in m of a col in m greater than 738? | CREATE TABLE table_name_57 (prominence__m_ VARCHAR, col__m_ INTEGER) | SELECT prominence__m_ FROM table_name_57 WHERE col__m_ > 738 |
which order of bat belongs to the family of vespertilionidae and includes the northern long-eared myotis? | CREATE TABLE table_name_26 (order VARCHAR, family VARCHAR, name VARCHAR) | SELECT order FROM table_name_26 WHERE family = "vespertilionidae" AND name = "northern long-eared myotis" |
What are the package/options when the TV service is rai 3? | CREATE TABLE table_15887683_1 (package_option VARCHAR, television_service VARCHAR) | SELECT package_option FROM table_15887683_1 WHERE television_service = "Rai 3" |
Select the code of the product that is cheapest in each product category. | CREATE TABLE products (code VARCHAR, name VARCHAR, price INTEGER) | SELECT code, name, MIN(price) FROM products GROUP BY name |
Before 1979, what position was the European Indoor Championships? | CREATE TABLE table_name_78 (position VARCHAR, competition VARCHAR, year VARCHAR) | SELECT position FROM table_name_78 WHERE competition = "european indoor championships" AND year < 1979 |
What is the sum of laps for Derek Warwick? | CREATE TABLE table_name_20 (laps INTEGER, driver VARCHAR) | SELECT SUM(laps) FROM table_name_20 WHERE driver = "derek warwick" |
Which tournament did the opponent Guillermo Carry play? | CREATE TABLE table_name_60 (tournament VARCHAR, opponent VARCHAR) | SELECT tournament FROM table_name_60 WHERE opponent = "guillermo carry" |
Who was the opponent when the time was 1:47? | CREATE TABLE table_name_45 (opponent VARCHAR, time VARCHAR) | SELECT opponent FROM table_name_45 WHERE time = "1:47" |
Name the most obama number for mccain being 38.86% | CREATE TABLE table_20468206_1 (obama_number INTEGER, mccain_percentage VARCHAR) | SELECT MAX(obama_number) FROM table_20468206_1 WHERE mccain_percentage = "38.86%" |
What year was the b n2t axle arrangement, which has a quantity of 31, manufactured? | CREATE TABLE table_name_74 (year_s__of_manufacture VARCHAR, quantity VARCHAR, axle_arrangement___uic__ VARCHAR) | SELECT year_s__of_manufacture FROM table_name_74 WHERE quantity = 31 AND axle_arrangement___uic__ = "b n2t" |
How many stages were won by Robbie McEwen? | CREATE TABLE table_17672470_19 (stage VARCHAR, winner VARCHAR) | SELECT COUNT(stage) FROM table_17672470_19 WHERE winner = "Robbie McEwen" |
What is the Total medals won by the nation in Rank 6 with less than 2 Bronze medals? | CREATE TABLE table_name_56 (total INTEGER, rank VARCHAR, bronze VARCHAR) | SELECT SUM(total) FROM table_name_56 WHERE rank = "6" AND bronze < 2 |