Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
35,900 |
<question>: What is every part number with model number core i5-670? <context>: CREATE TABLE table_23028629_2 (part_number_s_ VARCHAR, model_number VARCHAR)
|
SELECT part_number_s_ FROM table_23028629_2 WHERE model_number = "Core i5-670"
|
35,901 |
<question>: What is the record for Big Ten Team #4 Purdue? <context>: CREATE TABLE table_23058971_8 (winner VARCHAR, big_ten_team VARCHAR)
|
SELECT winner FROM table_23058971_8 WHERE big_ten_team = "#4 Purdue"
|
35,902 |
<question>: Name the avg start for avg finish being 24.2 <context>: CREATE TABLE table_2308381_1 (avg_start VARCHAR, avg_finish VARCHAR)
|
SELECT avg_start FROM table_2308381_1 WHERE avg_finish = "24.2"
|
35,903 |
<question>: Name the year for avg start being 22.4 <context>: CREATE TABLE table_2308381_1 (year VARCHAR, avg_start VARCHAR)
|
SELECT year FROM table_2308381_1 WHERE avg_start = "22.4"
|
35,904 |
<question>: How many KEI catagories are listed when the economic incentive regime is 2.56? <context>: CREATE TABLE table_23050383_1 (kei VARCHAR, economic_incentive_regime VARCHAR)
|
SELECT COUNT(kei) FROM table_23050383_1 WHERE economic_incentive_regime = "2.56"
|
35,905 |
<question>: What is the innovation when the economic incentive grime is 7.14? <context>: CREATE TABLE table_23050383_1 (innovation VARCHAR, economic_incentive_regime VARCHAR)
|
SELECT innovation FROM table_23050383_1 WHERE economic_incentive_regime = "7.14"
|
35,906 |
<question>: What is the education in Nepal? <context>: CREATE TABLE table_23050383_1 (education VARCHAR, country VARCHAR)
|
SELECT education FROM table_23050383_1 WHERE country = "Nepal"
|
35,907 |
<question>: What is the 2008 rank of Djibouti? <context>: CREATE TABLE table_23050383_1 (country VARCHAR)
|
SELECT 2008 AS _rank FROM table_23050383_1 WHERE country = "Djibouti"
|
35,908 |
<question>: What is the ICT when education is 1.73 and KI is ag 1.99? <context>: CREATE TABLE table_23050383_1 (ict VARCHAR, education VARCHAR, ki VARCHAR)
|
SELECT ict FROM table_23050383_1 WHERE education = "1.73" AND ki = "1.99"
|
35,909 |
<question>: What is the education when the economic incentive regime is 1.58? <context>: CREATE TABLE table_23050383_1 (education VARCHAR, economic_incentive_regime VARCHAR)
|
SELECT education FROM table_23050383_1 WHERE economic_incentive_regime = "1.58"
|
35,910 |
<question>: What was the air date of the episod that had 456.58 thousand viewers? <context>: CREATE TABLE table_23114705_7 (original_air_date VARCHAR, nz_viewers__thousand_ VARCHAR)
|
SELECT original_air_date FROM table_23114705_7 WHERE nz_viewers__thousand_ = "456.58"
|
35,911 |
<question>: What season had a winning profit of $15,000? <context>: CREATE TABLE table_2311410_1 (season VARCHAR, winning_profit___aud__ VARCHAR)
|
SELECT season FROM table_2311410_1 WHERE winning_profit___aud__ = "$15,000"
|
35,912 |
<question>: How many series premieres did the season "All-stars" have? <context>: CREATE TABLE table_2311410_1 (series_premiere VARCHAR, season VARCHAR)
|
SELECT COUNT(series_premiere) FROM table_2311410_1 WHERE season = "All-Stars"
|
35,913 |
<question>: Name the erin and jake for week 4 <context>: CREATE TABLE table_2311410_5 (erin_and_jake VARCHAR, week VARCHAR)
|
SELECT erin_and_jake FROM table_2311410_5 WHERE week = 4
|
35,914 |
<question>: when the number of spectator are 5.28 millions, which is the smallest number of the episode in series? <context>: CREATE TABLE table_23117208_3 (no_in_series INTEGER, viewers__millions_ VARCHAR)
|
SELECT MIN(no_in_series) FROM table_23117208_3 WHERE viewers__millions_ = "5.28"
|
35,915 |
<question>: which is the biggest number of episode in the season, where the number of the episode in series is 20? <context>: CREATE TABLE table_23117208_3 (no_in_season INTEGER, no_in_series VARCHAR)
|
SELECT MAX(no_in_season) FROM table_23117208_3 WHERE no_in_series = 20
|
35,916 |
<question>: what is the name of the episode when the number of spectators was 5.60 millions? <context>: CREATE TABLE table_23117208_3 (title VARCHAR, viewers__millions_ VARCHAR)
|
SELECT title FROM table_23117208_3 WHERE viewers__millions_ = "5.60"
|
35,917 |
<question>: how many millions of spectator did has the episode whose prod.code was rp#213? <context>: CREATE TABLE table_23117208_3 (viewers__millions_ VARCHAR, prod_code VARCHAR)
|
SELECT viewers__millions_ FROM table_23117208_3 WHERE prod_code = "RP#213"
|
35,918 |
<question>: which is the biggest number of episode in the season, when the director of the episode was Constantine Makris? <context>: CREATE TABLE table_23117208_3 (no_in_season INTEGER, directed_by VARCHAR)
|
SELECT MAX(no_in_season) FROM table_23117208_3 WHERE directed_by = "Constantine Makris"
|
35,919 |
<question>: What is the name of the episode that was written by Michael Rauch? <context>: CREATE TABLE table_23117208_5 (title VARCHAR, written_by VARCHAR)
|
SELECT title FROM table_23117208_5 WHERE written_by = "Michael Rauch"
|
35,920 |
<question>: For the episode directed by Matthew Penn, what is the total number in the series? <context>: CREATE TABLE table_23117208_5 (no_in_series VARCHAR, directed_by VARCHAR)
|
SELECT no_in_series FROM table_23117208_5 WHERE directed_by = "Matthew Penn"
|
35,921 |
<question>: Name the production code for 4.92 million viewers <context>: CREATE TABLE table_23117208_4 (prod_code VARCHAR, viewers__millions_ VARCHAR)
|
SELECT prod_code FROM table_23117208_4 WHERE viewers__millions_ = "4.92"
|
35,922 |
<question>: Name the least number in season for jessica ball <context>: CREATE TABLE table_23117208_4 (no_in_season INTEGER, written_by VARCHAR)
|
SELECT MIN(no_in_season) FROM table_23117208_4 WHERE written_by = "Jessica Ball"
|
35,923 |
<question>: How many flaps did he have when he had 109 points? <context>: CREATE TABLE table_23128286_1 (flaps INTEGER, points VARCHAR)
|
SELECT MAX(flaps) FROM table_23128286_1 WHERE points = 109
|
35,924 |
<question>: How many wins did he have with carlin motorsport? <context>: CREATE TABLE table_23128286_1 (wins VARCHAR, team_name VARCHAR)
|
SELECT COUNT(wins) FROM table_23128286_1 WHERE team_name = "Carlin Motorsport"
|
35,925 |
<question>: What was the most races he had in a season? <context>: CREATE TABLE table_23128286_1 (races INTEGER)
|
SELECT MAX(races) FROM table_23128286_1
|
35,926 |
<question>: What are Ken Rosewall's sets w-l? <context>: CREATE TABLE table_23133482_1 (sets_w_l VARCHAR, player VARCHAR)
|
SELECT sets_w_l FROM table_23133482_1 WHERE player = "Ken Rosewall"
|
35,927 |
<question>: What are Arthur Ashe's games w-l? <context>: CREATE TABLE table_23133482_1 (games_w_l VARCHAR, player VARCHAR)
|
SELECT games_w_l FROM table_23133482_1 WHERE player = "Arthur Ashe"
|
35,928 |
<question>: Name the games w-1 for cliff richey <context>: CREATE TABLE table_23145653_1 (games_w_l VARCHAR, player VARCHAR)
|
SELECT games_w_l FROM table_23145653_1 WHERE player = "Cliff Richey"
|
35,929 |
<question>: What stage number had the general classification Rory Sutherland? <context>: CREATE TABLE table_23157997_13 (stage VARCHAR, general_classification VARCHAR)
|
SELECT COUNT(stage) FROM table_23157997_13 WHERE general_classification = "Rory Sutherland"
|
35,930 |
<question>: Who was the Youth Classification in the race with Kenneth Hanson as Mountains Classification and Lucas Sebastian Haedo as winner? <context>: CREATE TABLE table_23157997_13 (youth_classification VARCHAR, mountains_classification VARCHAR, winner VARCHAR)
|
SELECT youth_classification FROM table_23157997_13 WHERE mountains_classification = "Kenneth Hanson" AND winner = "Lucas Sebastian Haedo"
|
35,931 |
<question>: Who won the race with Tom Zirbel as Mountains Classification and Thomas Soladay as Points Classification? <context>: CREATE TABLE table_23157997_13 (winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR)
|
SELECT winner FROM table_23157997_13 WHERE mountains_classification = "Tom Zirbel" AND points_classification = "Thomas Soladay"
|
35,932 |
<question>: Who was Mountains Classification in the race with Nick Frey as Youth Classification and Tom Zirbel as Points Classification? <context>: CREATE TABLE table_23157997_13 (mountains_classification VARCHAR, youth_classification VARCHAR, points_classification VARCHAR)
|
SELECT mountains_classification FROM table_23157997_13 WHERE youth_classification = "Nick Frey" AND points_classification = "Tom Zirbel"
|
35,933 |
<question>: How many Mountains Classifications were in the race with Mike Northey as Youth Classification? <context>: CREATE TABLE table_23157997_13 (mountains_classification VARCHAR, youth_classification VARCHAR)
|
SELECT COUNT(mountains_classification) FROM table_23157997_13 WHERE youth_classification = "Mike Northey"
|
35,934 |
<question>: How many foundation dates were there when the television channels is canal nou canal nou dos canal nou 24 tvvi? <context>: CREATE TABLE table_23143607_1 (foundation VARCHAR, television_channels VARCHAR)
|
SELECT COUNT(foundation) FROM table_23143607_1 WHERE television_channels = "Canal Nou Canal Nou Dos Canal Nou 24 TVVi"
|
35,935 |
<question>: If the radio stations is radio nou si radio radio nou música; what were the total number of television channels? <context>: CREATE TABLE table_23143607_1 (television_channels VARCHAR, radio_stations VARCHAR)
|
SELECT COUNT(television_channels) FROM table_23143607_1 WHERE radio_stations = "Radio Nou Si Radio Radio Nou Música"
|
35,936 |
<question>: What is the total number of television channels when one of the radio stations is onda madrid? <context>: CREATE TABLE table_23143607_1 (television_channels VARCHAR, radio_stations VARCHAR)
|
SELECT COUNT(television_channels) FROM table_23143607_1 WHERE radio_stations = "Onda Madrid"
|
35,937 |
<question>: Which of the radio stations has the organization of ente público radio televisión madrid (eprtvm)? <context>: CREATE TABLE table_23143607_1 (radio_stations VARCHAR, organization VARCHAR)
|
SELECT radio_stations FROM table_23143607_1 WHERE organization = "Ente Público Radio Televisión Madrid (EPRTVM)"
|
35,938 |
<question>: What is the autonomous community with television channels tpa tpa2 rtpa internacional? <context>: CREATE TABLE table_23143607_1 (autonomous_community VARCHAR, television_channels VARCHAR)
|
SELECT autonomous_community FROM table_23143607_1 WHERE television_channels = "TPA TPA2 RTPA Internacional"
|
35,939 |
<question>: How many villains were in episode 3 (13)? <context>: CREATE TABLE table_23170118_2 (villains VARCHAR, episode_number VARCHAR)
|
SELECT COUNT(villains) FROM table_23170118_2 WHERE episode_number = "3 (13)"
|
35,940 |
<question>: What was the title of the episode where reg lacey (aka mr. b) played the villain? <context>: CREATE TABLE table_23170118_2 (title VARCHAR, villains VARCHAR)
|
SELECT title FROM table_23170118_2 WHERE villains = "Reg Lacey (AKA Mr. B)"
|
35,941 |
<question>: Name the most three pointers for dewanna bonner <context>: CREATE TABLE table_23183195_5 (three_pointers INTEGER, player VARCHAR)
|
SELECT MAX(three_pointers) FROM table_23183195_5 WHERE player = "DeWanna Bonner"
|
35,942 |
<question>: Name the least field goals for chantel hilliard <context>: CREATE TABLE table_23183195_5 (field_goals INTEGER, player VARCHAR)
|
SELECT MIN(field_goals) FROM table_23183195_5 WHERE player = "Chantel Hilliard"
|
35,943 |
<question>: Name the most minutes for morgan jennings <context>: CREATE TABLE table_23183195_5 (minutes INTEGER, player VARCHAR)
|
SELECT MAX(minutes) FROM table_23183195_5 WHERE player = "Morgan Jennings"
|
35,944 |
<question>: Name the most free throws for 4 steals <context>: CREATE TABLE table_23183195_5 (free_throws INTEGER, steals VARCHAR)
|
SELECT MAX(free_throws) FROM table_23183195_5 WHERE steals = 4
|
35,945 |
<question>: What is the road record for the team with an overall record of 22-11? <context>: CREATE TABLE table_23183195_2 (road_record VARCHAR, overall_record VARCHAR)
|
SELECT road_record FROM table_23183195_2 WHERE overall_record = "22-11"
|
35,946 |
<question>: What is the road record for Vanderbilt? <context>: CREATE TABLE table_23183195_2 (road_record VARCHAR, team VARCHAR)
|
SELECT COUNT(road_record) FROM table_23183195_2 WHERE team = "Vanderbilt"
|
35,947 |
<question>: What team's overal record is 22-11? <context>: CREATE TABLE table_23183195_2 (team VARCHAR, overall_record VARCHAR)
|
SELECT team FROM table_23183195_2 WHERE overall_record = "22-11"
|
35,948 |
<question>: What is the percentage for the team with a road record of 3-4 and a home record of 7-0? <context>: CREATE TABLE table_23183195_2 (percentage VARCHAR, road_record VARCHAR, home_record VARCHAR)
|
SELECT percentage FROM table_23183195_2 WHERE road_record = "3-4" AND home_record = "7-0"
|
35,949 |
<question>: Name the number of three pointers for 67 <context>: CREATE TABLE table_23184448_4 (three_pointers VARCHAR, points VARCHAR)
|
SELECT COUNT(three_pointers) FROM table_23184448_4 WHERE points = 67
|
35,950 |
<question>: Name the field goals for alexis yackley <context>: CREATE TABLE table_23184448_4 (field_goals INTEGER, player VARCHAR)
|
SELECT MAX(field_goals) FROM table_23184448_4 WHERE player = "Alexis Yackley"
|
35,951 |
<question>: Name the number of assists for 321 minutes <context>: CREATE TABLE table_23184448_4 (assists VARCHAR, minutes VARCHAR)
|
SELECT COUNT(assists) FROM table_23184448_4 WHERE minutes = 321
|
35,952 |
<question>: Name the number of players for field goals being 25 and blocks is 6 <context>: CREATE TABLE table_23184448_4 (player VARCHAR, field_goals VARCHAR, blocks VARCHAR)
|
SELECT COUNT(player) FROM table_23184448_4 WHERE field_goals = 25 AND blocks = 6
|
35,953 |
<question>: Name the location attendance of 5-15 <context>: CREATE TABLE table_23186738_6 (location_attendance VARCHAR, record VARCHAR)
|
SELECT location_attendance FROM table_23186738_6 WHERE record = "5-15"
|
35,954 |
<question>: Name the record for golden state <context>: CREATE TABLE table_23186738_6 (record VARCHAR, team VARCHAR)
|
SELECT record FROM table_23186738_6 WHERE team = "Golden State"
|
35,955 |
<question>: Name the number of high points for record 5-17 <context>: CREATE TABLE table_23186738_6 (high_points VARCHAR, record VARCHAR)
|
SELECT COUNT(high_points) FROM table_23186738_6 WHERE record = "5-17"
|
35,956 |
<question>: Name the record for houston <context>: CREATE TABLE table_23186738_6 (record VARCHAR, team VARCHAR)
|
SELECT record FROM table_23186738_6 WHERE team = "Houston"
|
35,957 |
<question>: Name the cardinal points for 19-4 record <context>: CREATE TABLE table_23192661_3 (cardinal_points INTEGER, record VARCHAR)
|
SELECT MIN(cardinal_points) FROM table_23192661_3 WHERE record = "19-4"
|
35,958 |
<question>: Name the location for 2-1 record <context>: CREATE TABLE table_23192661_3 (location VARCHAR, record VARCHAR)
|
SELECT location FROM table_23192661_3 WHERE record = "2-1"
|
35,959 |
<question>: Name the total number of step 6 for 11 gs grade <context>: CREATE TABLE table_2319437_1 (step_6 VARCHAR, gs_grade VARCHAR)
|
SELECT COUNT(step_6) FROM table_2319437_1 WHERE gs_grade = 11
|
35,960 |
<question>: such as are entire the rating of closing where championship is moscow <context>: CREATE TABLE table_23197088_4 (score_in_final VARCHAR, championship VARCHAR)
|
SELECT score_in_final FROM table_23197088_4 WHERE championship = "Moscow"
|
35,961 |
<question>: as is the quantity variety of score between ultimate the place opponents between remaining is alexandra fusai nathalie tauziat <context>: CREATE TABLE table_23197088_4 (score_in_final VARCHAR, opponents_in_final VARCHAR)
|
SELECT COUNT(score_in_final) FROM table_23197088_4 WHERE opponents_in_final = "Alexandra Fusai Nathalie Tauziat"
|
35,962 |
<question>: what are every one of the rivals in conclusive where title is zürich <context>: CREATE TABLE table_23197088_4 (opponents_in_final VARCHAR, championship VARCHAR)
|
SELECT opponents_in_final FROM table_23197088_4 WHERE championship = "Zürich"
|
35,963 |
<question>: what are all the score in conclusive where title is rome <context>: CREATE TABLE table_23197088_4 (score_in_final VARCHAR, championship VARCHAR)
|
SELECT score_in_final FROM table_23197088_4 WHERE championship = "Rome"
|
35,964 |
<question>: Name the most 10 3 bbl/d (2008) for present share being 1.7% <context>: CREATE TABLE table_23195_5 (present_share VARCHAR)
|
SELECT MAX(10 AS _3_bbl_d__2008_) FROM table_23195_5 WHERE present_share = "1.7%"
|
35,965 |
<question>: Name the present share for australia <context>: CREATE TABLE table_23195_5 (present_share VARCHAR, producing_nation VARCHAR)
|
SELECT present_share FROM table_23195_5 WHERE producing_nation = "Australia"
|
35,966 |
<question>: Name the location attendance for utah <context>: CREATE TABLE table_23211041_10 (location_attendance VARCHAR, team VARCHAR)
|
SELECT location_attendance FROM table_23211041_10 WHERE team = "Utah"
|
35,967 |
<question>: How many games were played against houston? <context>: CREATE TABLE table_23211041_5 (game VARCHAR, team VARCHAR)
|
SELECT COUNT(game) FROM table_23211041_5 WHERE team = "Houston"
|
35,968 |
<question>: What team was played on november 24? <context>: CREATE TABLE table_23211041_5 (team VARCHAR, date VARCHAR)
|
SELECT team FROM table_23211041_5 WHERE date = "November 24"
|
35,969 |
<question>: Who had the most points in game 4? <context>: CREATE TABLE table_23211041_5 (high_points VARCHAR, game VARCHAR)
|
SELECT high_points FROM table_23211041_5 WHERE game = 4
|
35,970 |
<question>: Who had the highest points against new york? <context>: CREATE TABLE table_23211041_5 (high_points VARCHAR, team VARCHAR)
|
SELECT high_points FROM table_23211041_5 WHERE team = "New York"
|
35,971 |
<question>: Name the syrian christians for thiruvananthapuram <context>: CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR)
|
SELECT syrian_christians FROM table_23214055_2 WHERE district = "Thiruvananthapuram"
|
35,972 |
<question>: Name the ezhavas for muslims being 5.4 <context>: CREATE TABLE table_23214055_2 (ezhavas VARCHAR, muslims VARCHAR)
|
SELECT ezhavas FROM table_23214055_2 WHERE muslims = "5.4"
|
35,973 |
<question>: Name the ezhavas and syrian christians being 26.2 <context>: CREATE TABLE table_23214055_2 (ezhavas VARCHAR, syrian_christians VARCHAR)
|
SELECT ezhavas FROM table_23214055_2 WHERE syrian_christians = "26.2"
|
35,974 |
<question>: Name the syrian christians for kollam <context>: CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR)
|
SELECT syrian_christians FROM table_23214055_2 WHERE district = "Kollam"
|
35,975 |
<question>: Name the district for others being 18.3 <context>: CREATE TABLE table_23214055_2 (district VARCHAR, others VARCHAR)
|
SELECT district FROM table_23214055_2 WHERE others = "18.3"
|
35,976 |
<question>: Name the district for nairs 8.2 <context>: CREATE TABLE table_23214055_2 (district VARCHAR, nairs VARCHAR)
|
SELECT district FROM table_23214055_2 WHERE nairs = "8.2"
|
35,977 |
<question>: If the total points is 5, what is the 2005-2006 points total number? <context>: CREATE TABLE table_23215145_2 (total_points VARCHAR)
|
SELECT COUNT(2005 AS _06_points) FROM table_23215145_2 WHERE total_points = 5
|
35,978 |
<question>: What is the 2006-2007 points minimum is the team is Overmach Parma? <context>: CREATE TABLE table_23215145_2 (team VARCHAR)
|
SELECT MIN(2006 AS _07_points) FROM table_23215145_2 WHERE team = "Overmach Parma"
|
35,979 |
<question>: If the team is Worcester, what is the 2005-2006 points? <context>: CREATE TABLE table_23215145_2 (team VARCHAR)
|
SELECT 2005 AS _06_points FROM table_23215145_2 WHERE team = "Worcester"
|
35,980 |
<question>: What is the 2006-2007 points total number if the team is Saracens? <context>: CREATE TABLE table_23215145_2 (team VARCHAR)
|
SELECT COUNT(2006 AS _07_points) FROM table_23215145_2 WHERE team = "Saracens"
|
35,981 |
<question>: When spvgg vohenstrauß is the oberpfalz what is the season? <context>: CREATE TABLE table_23224961_1 (season VARCHAR, oberpfalz VARCHAR)
|
SELECT season FROM table_23224961_1 WHERE oberpfalz = "SpVgg Vohenstrauß"
|
35,982 |
<question>: When esv ingolstadt is the oberbayern b what is the niederbayern? <context>: CREATE TABLE table_23224961_1 (niederbayern VARCHAR, oberbayern_b VARCHAR)
|
SELECT niederbayern FROM table_23224961_1 WHERE oberbayern_b = "ESV Ingolstadt"
|
35,983 |
<question>: When wacker burghausen is the oberbayern a what is the schwaben? <context>: CREATE TABLE table_23224961_1 (schwaben VARCHAR, oberbayern_a VARCHAR)
|
SELECT schwaben FROM table_23224961_1 WHERE oberbayern_a = "Wacker Burghausen"
|
35,984 |
<question>: When fc oberau is the oberbayern a what is the oberpfalz? <context>: CREATE TABLE table_23224961_1 (oberpfalz VARCHAR, oberbayern_a VARCHAR)
|
SELECT oberpfalz FROM table_23224961_1 WHERE oberbayern_a = "FC Oberau"
|
35,985 |
<question>: When tus rosenberg is the oberpfalz what is the oberbayern b? <context>: CREATE TABLE table_23224961_1 (oberbayern_b VARCHAR, oberpfalz VARCHAR)
|
SELECT oberbayern_b FROM table_23224961_1 WHERE oberpfalz = "TuS Rosenberg"
|
35,986 |
<question>: When fc schwandorf is the oberpfalz what is the oberbayern b? <context>: CREATE TABLE table_23224961_1 (oberbayern_b VARCHAR, oberpfalz VARCHAR)
|
SELECT oberbayern_b FROM table_23224961_1 WHERE oberpfalz = "FC Schwandorf"
|
35,987 |
<question>: What was the score in the final when the outcome was winner in 1989? <context>: CREATE TABLE table_23235546_1 (score_in_the_final VARCHAR, outcome VARCHAR, year VARCHAR)
|
SELECT score_in_the_final FROM table_23235546_1 WHERE outcome = "Winner" AND year = 1989
|
35,988 |
<question>: What was the score in the final when Mats Wilander was the opponent in the Australian Open? <context>: CREATE TABLE table_23235546_1 (score_in_the_final VARCHAR, championship VARCHAR, opponent_in_the_final VARCHAR)
|
SELECT score_in_the_final FROM table_23235546_1 WHERE championship = "Australian Open" AND opponent_in_the_final = "Mats Wilander"
|
35,989 |
<question>: If the number in the season is 22, what is the original air date? <context>: CREATE TABLE table_23225927_1 (original_air_date VARCHAR, no_in_season VARCHAR)
|
SELECT original_air_date FROM table_23225927_1 WHERE no_in_season = 22
|
35,990 |
<question>: What is the maximum season number for the episode written by Jonathan Greene? <context>: CREATE TABLE table_23225927_1 (no_in_season INTEGER, written_by VARCHAR)
|
SELECT MAX(no_in_season) FROM table_23225927_1 WHERE written_by = "Jonathan Greene"
|
35,991 |
<question>: Name the original air date for prod code 201 <context>: CREATE TABLE table_2322716_2 (original_air_dates VARCHAR, prod_code VARCHAR)
|
SELECT original_air_dates FROM table_2322716_2 WHERE prod_code = 201
|
35,992 |
<question>: Name the written by for prod code being 206 <context>: CREATE TABLE table_2322716_2 (written_by VARCHAR, prod_code VARCHAR)
|
SELECT written_by FROM table_2322716_2 WHERE prod_code = 206
|
35,993 |
<question>: How many positions are there in Canadian Nascar? <context>: CREATE TABLE table_23239946_3 (position INTEGER)
|
SELECT MAX(position) FROM table_23239946_3
|
35,994 |
<question>: How many drivers have 1942 points? <context>: CREATE TABLE table_23239946_3 (driver VARCHAR, points VARCHAR)
|
SELECT COUNT(driver) FROM table_23239946_3 WHERE points = 1942
|
35,995 |
<question>: How many starts are there? <context>: CREATE TABLE table_23239946_3 (starts INTEGER)
|
SELECT MIN(starts) FROM table_23239946_3
|
35,996 |
<question>: How many wins did Andrew Ranger have? <context>: CREATE TABLE table_23239946_3 (wins VARCHAR, driver VARCHAR)
|
SELECT COUNT(wins) FROM table_23239946_3 WHERE driver = "Andrew Ranger"
|
35,997 |
<question>: What are the winnings for position 7? <context>: CREATE TABLE table_23239946_3 (winnings__ INTEGER, position VARCHAR)
|
SELECT MAX(winnings__) AS $_ FROM table_23239946_3 WHERE position = 7
|
35,998 |
<question>: What number episode in the series was written by David Zuckerman? <context>: CREATE TABLE table_23242958_1 (no_in_series VARCHAR, written_by VARCHAR)
|
SELECT no_in_series FROM table_23242958_1 WHERE written_by = "David Zuckerman"
|
35,999 |
<question>: What is the original air date of the episode written by David Zuckerman? <context>: CREATE TABLE table_23242958_1 (original_air_date VARCHAR, written_by VARCHAR)
|
SELECT original_air_date FROM table_23242958_1 WHERE written_by = "David Zuckerman"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.