Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
50,800
<question>: What was the score in Hampden Park, Glasgow? <context>: CREATE TABLE table_name_68 (score VARCHAR, venue VARCHAR)
SELECT score FROM table_name_68 WHERE venue = "hampden park, glasgow"
50,801
<question>: Which Venue has a Notes of 2:28:31? <context>: CREATE TABLE table_name_83 (venue VARCHAR, notes VARCHAR)
SELECT venue FROM table_name_83 WHERE notes = "2:28:31"
50,802
<question>: Which Venue has a Competition of venice marathon? <context>: CREATE TABLE table_name_98 (venue VARCHAR, competition VARCHAR)
SELECT venue FROM table_name_98 WHERE competition = "venice marathon"
50,803
<question>: Which Year that has Notes of dnf? <context>: CREATE TABLE table_name_17 (year INTEGER, notes VARCHAR)
SELECT MIN(year) FROM table_name_17 WHERE notes = "dnf"
50,804
<question>: Which Competition has a Year larger than 2000? <context>: CREATE TABLE table_name_45 (competition VARCHAR, year INTEGER)
SELECT competition FROM table_name_45 WHERE year > 2000
50,805
<question>: What date has a set 4 of 25-19? <context>: CREATE TABLE table_name_33 (date VARCHAR, set_4 VARCHAR)
SELECT date FROM table_name_33 WHERE set_4 = "25-19"
50,806
<question>: What is the total for the set 2 of 25-18? <context>: CREATE TABLE table_name_80 (total VARCHAR, set_2 VARCHAR)
SELECT total FROM table_name_80 WHERE set_2 = "25-18"
50,807
<question>: What is the total for set 2 of 25-19? <context>: CREATE TABLE table_name_55 (total VARCHAR, set_2 VARCHAR)
SELECT total FROM table_name_55 WHERE set_2 = "25-19"
50,808
<question>: What is set 3 when set 5 is na, set 1 is 21-25, and set 2 is 25-16? <context>: CREATE TABLE table_name_54 (set_3 VARCHAR, set_2 VARCHAR, set_5 VARCHAR, set_1 VARCHAR)
SELECT set_3 FROM table_name_54 WHERE set_5 = "na" AND set_1 = "21-25" AND set_2 = "25-16"
50,809
<question>: What is the set 1 for the date jun 26, and a set 2 of 25-16? <context>: CREATE TABLE table_name_90 (set_1 VARCHAR, date VARCHAR, set_2 VARCHAR)
SELECT set_1 FROM table_name_90 WHERE date = "jun 26" AND set_2 = "25-16"
50,810
<question>: What is the total for set 2 17-25? <context>: CREATE TABLE table_name_80 (total VARCHAR, set_2 VARCHAR)
SELECT total FROM table_name_80 WHERE set_2 = "17-25"
50,811
<question>: What Opponent has a Score that is 1-6, 3-6? <context>: CREATE TABLE table_name_57 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_57 WHERE score = "1-6, 3-6"
50,812
<question>: What writer has mort drucker as the artist, an issue greater than 470, and law & order: svu as an actual title? <context>: CREATE TABLE table_name_9 (writer VARCHAR, actual_title VARCHAR, artist VARCHAR, issue VARCHAR)
SELECT writer FROM table_name_9 WHERE artist = "mort drucker" AND issue > 470 AND actual_title = "law & order: svu"
50,813
<question>: What date has ed as an actual title? <context>: CREATE TABLE table_name_93 (date VARCHAR, actual_title VARCHAR)
SELECT date FROM table_name_93 WHERE actual_title = "ed"
50,814
<question>: What isssue has 7th heaven as an actual title? <context>: CREATE TABLE table_name_51 (issue VARCHAR, actual_title VARCHAR)
SELECT issue FROM table_name_51 WHERE actual_title = "7th heaven"
50,815
<question>: What issue has mort drucker as the artist and february 2001 as the date? <context>: CREATE TABLE table_name_20 (issue VARCHAR, artist VARCHAR, date VARCHAR)
SELECT issue FROM table_name_20 WHERE artist = "mort drucker" AND date = "february 2001"
50,816
<question>: In what Week was the Attendance 39,434? <context>: CREATE TABLE table_name_78 (week VARCHAR, attendance INTEGER)
SELECT COUNT(week) FROM table_name_78 WHERE attendance < 39 OFFSET 434
50,817
<question>: What year was the match were xavier malisse was the runner-up against lleyton hewitt? <context>: CREATE TABLE table_name_3 (year VARCHAR, outcome VARCHAR, opponent VARCHAR)
SELECT year FROM table_name_3 WHERE outcome = "runner-up" AND opponent = "lleyton hewitt"
50,818
<question>: What year was the match against filippo volandri where xavier malisse was runner-up? <context>: CREATE TABLE table_name_39 (year VARCHAR, outcome VARCHAR, opponent VARCHAR)
SELECT year FROM table_name_39 WHERE outcome = "runner-up" AND opponent = "filippo volandri"
50,819
<question>: How many against have a difference of 6, with a played greater than 19? <context>: CREATE TABLE table_name_57 (against INTEGER, difference VARCHAR, played VARCHAR)
SELECT SUM(against) FROM table_name_57 WHERE difference = "6" AND played > 19
50,820
<question>: What is the lowest drawn that has a played greater than 19, with a position less than 2? <context>: CREATE TABLE table_name_52 (drawn INTEGER, played VARCHAR, position VARCHAR)
SELECT MIN(drawn) FROM table_name_52 WHERE played > 19 AND position < 2
50,821
<question>: What is the average against that has a drawn less than 7, points greater than 22, and 19 for the played? <context>: CREATE TABLE table_name_66 (against INTEGER, played VARCHAR, drawn VARCHAR, points VARCHAR)
SELECT AVG(against) FROM table_name_66 WHERE drawn < 7 AND points > 22 AND played = 19
50,822
<question>: When has a TV Time of fox 12:00 pm cdt? <context>: CREATE TABLE table_name_75 (date VARCHAR, tv_time VARCHAR)
SELECT date FROM table_name_75 WHERE tv_time = "fox 12:00 pm cdt"
50,823
<question>: When has a Week of 8? <context>: CREATE TABLE table_name_73 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_73 WHERE week = 8
50,824
<question>: Which Week has a Result of l 13-16 and an Opponent of at buffalo bills? <context>: CREATE TABLE table_name_27 (week INTEGER, result VARCHAR, opponent VARCHAR)
SELECT AVG(week) FROM table_name_27 WHERE result = "l 13-16" AND opponent = "at buffalo bills"
50,825
<question>: What kind of TV Time that has a Result of w 24–10? <context>: CREATE TABLE table_name_72 (tv_time VARCHAR, result VARCHAR)
SELECT tv_time FROM table_name_72 WHERE result = "w 24–10"
50,826
<question>: What is the name of the conference that K. C. Jones was a head coach in? <context>: CREATE TABLE table_name_78 (conf VARCHAR, head_coach VARCHAR)
SELECT conf FROM table_name_78 WHERE head_coach = "k. c. jones"
50,827
<question>: Who had the highest assists of the game on March 5? <context>: CREATE TABLE table_name_50 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_name_50 WHERE date = "march 5"
50,828
<question>: What is the least amount of appearances by new zealand when they scored 4 goals? <context>: CREATE TABLE table_name_85 (appearances INTEGER, goals VARCHAR, nationality VARCHAR)
SELECT MIN(appearances) FROM table_name_85 WHERE goals = 4 AND nationality = "new zealand"
50,829
<question>: how many appearances did batram suri category:articles with hcards have scoring less than 2 goals? <context>: CREATE TABLE table_name_41 (appearances VARCHAR, name VARCHAR, goals VARCHAR)
SELECT COUNT(appearances) FROM table_name_41 WHERE name = "batram suri category:articles with hcards" AND goals < 2
50,830
<question>: What province has a v valparaíso region and an area of 927.2? <context>: CREATE TABLE table_name_31 (province VARCHAR, region VARCHAR, area VARCHAR)
SELECT province FROM table_name_31 WHERE region = "v valparaíso" AND area = 927.2
50,831
<question>: What is the average area with valparaíso as the capital? <context>: CREATE TABLE table_name_34 (area INTEGER, capital VARCHAR)
SELECT AVG(area) FROM table_name_34 WHERE capital = "valparaíso"
50,832
<question>: WHich Category in White has a Amerindian of 4,87%? <context>: CREATE TABLE table_name_96 (white VARCHAR, amerindian VARCHAR)
SELECT white FROM table_name_96 WHERE amerindian = "4,87%"
50,833
<question>: WHich Category in White has a Black of 38,05%? <context>: CREATE TABLE table_name_35 (white VARCHAR, black VARCHAR)
SELECT white FROM table_name_35 WHERE black = "38,05%"
50,834
<question>: Which Category in Brown has a Frequency of 0.08%? <context>: CREATE TABLE table_name_84 (brown VARCHAR, frequency VARCHAR)
SELECT brown FROM table_name_84 WHERE frequency = "0.08%"
50,835
<question>: Which Category in Black has a Brown of 6,54%? <context>: CREATE TABLE table_name_61 (black VARCHAR, brown VARCHAR)
SELECT black FROM table_name_61 WHERE brown = "6,54%"
50,836
<question>: What is the Capacity in use with an Annual change that is 21.8%? <context>: CREATE TABLE table_name_31 (capacity_in_use VARCHAR, annual_change VARCHAR)
SELECT capacity_in_use FROM table_name_31 WHERE annual_change = "21.8%"
50,837
<question>: How many Tries has Points for smaller than 137, and Tries against larger than 12? <context>: CREATE TABLE table_name_81 (tries_for VARCHAR, points_for VARCHAR, tries_against VARCHAR)
SELECT COUNT(tries_for) FROM table_name_81 WHERE points_for < 137 AND tries_against > 12
50,838
<question>: WHich Team that has Points against of 43? <context>: CREATE TABLE table_name_17 (team VARCHAR, points_against VARCHAR)
SELECT team FROM table_name_17 WHERE points_against = 43
50,839
<question>: WHich Tries has a Team of pau and Points against larger than 103? <context>: CREATE TABLE table_name_48 (tries_for INTEGER, team VARCHAR, points_against VARCHAR)
SELECT MIN(tries_for) FROM table_name_48 WHERE team = "pau" AND points_against > 103
50,840
<question>: How many Points against has Tries for smaller than 14, and a Team of llanelli? <context>: CREATE TABLE table_name_13 (points_against INTEGER, tries_for VARCHAR, team VARCHAR)
SELECT AVG(points_against) FROM table_name_13 WHERE tries_for < 14 AND team = "llanelli"
50,841
<question>: How many Tries against has a Try diff of –17 and Points for smaller than 80? <context>: CREATE TABLE table_name_30 (tries_against VARCHAR, try_diff VARCHAR, points_for VARCHAR)
SELECT COUNT(tries_against) FROM table_name_30 WHERE try_diff = "–17" AND points_for < 80
50,842
<question>: Which player was the forward? <context>: CREATE TABLE table_name_7 (player VARCHAR, position VARCHAR)
SELECT player FROM table_name_7 WHERE position = "forward"
50,843
<question>: Which years in Orlando are featured with the center position? <context>: CREATE TABLE table_name_11 (years_in_orlando VARCHAR, position VARCHAR)
SELECT years_in_orlando FROM table_name_11 WHERE position = "center"
50,844
<question>: Which position was in Orlando in 2000? <context>: CREATE TABLE table_name_15 (position VARCHAR, years_in_orlando VARCHAR)
SELECT position FROM table_name_15 WHERE years_in_orlando = "2000"
50,845
<question>: What is the Name with Goals that are 135? <context>: CREATE TABLE table_name_61 (name VARCHAR, goals VARCHAR)
SELECT name FROM table_name_61 WHERE goals = 135
50,846
<question>: Which American Labor candidate ran against Democratic candidate Robert F. Wagner? <context>: CREATE TABLE table_name_51 (american_labor_ticket VARCHAR, democratic_ticket VARCHAR)
SELECT american_labor_ticket FROM table_name_51 WHERE democratic_ticket = "robert f. wagner"
50,847
<question>: Which Socialist candidate ran against American Labor candidate Caroline O'Day? <context>: CREATE TABLE table_name_65 (socialist_ticket VARCHAR, american_labor_ticket VARCHAR)
SELECT socialist_ticket FROM table_name_65 WHERE american_labor_ticket = "caroline o'day"
50,848
<question>: Which Democrtic candidate ran against the Socialist candidate Edna Mitchell Blue? <context>: CREATE TABLE table_name_71 (democratic_ticket VARCHAR, socialist_ticket VARCHAR)
SELECT democratic_ticket FROM table_name_71 WHERE socialist_ticket = "edna mitchell blue"
50,849
<question>: Which American Labor candidate is running against the Socialist candidate Herman J. Hahn? <context>: CREATE TABLE table_name_55 (american_labor_ticket VARCHAR, socialist_ticket VARCHAR)
SELECT american_labor_ticket FROM table_name_55 WHERE socialist_ticket = "herman j. hahn"
50,850
<question>: Which Republican ran against the American Labor candidate Matthew J. Merritt? <context>: CREATE TABLE table_name_5 (republican_ticket VARCHAR, american_labor_ticket VARCHAR)
SELECT republican_ticket FROM table_name_5 WHERE american_labor_ticket = "matthew j. merritt"
50,851
<question>: Which American Labor candidate ran against Republican Thomas E. Dewey? <context>: CREATE TABLE table_name_91 (american_labor_ticket VARCHAR, republican_ticket VARCHAR)
SELECT american_labor_ticket FROM table_name_91 WHERE republican_ticket = "thomas e. dewey"
50,852
<question>: Who is the Opponent in the final after 1983 with an Outcome of runner-up? <context>: CREATE TABLE table_name_48 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_48 WHERE outcome = "runner-up" AND date > 1983
50,853
<question>: What Opponent in the final had a match with a Score in the final of 7–5, 6–2? <context>: CREATE TABLE table_name_31 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)
SELECT opponent_in_the_final FROM table_name_31 WHERE score_in_the_final = "7–5, 6–2"
50,854
<question>: What is the Championship with Vitas Gerulaitis as Opponent in the final in a match on Clay Surface? <context>: CREATE TABLE table_name_3 (championship VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
SELECT championship FROM table_name_3 WHERE surface = "clay" AND opponent_in_the_final = "vitas gerulaitis"
50,855
<question>: What is the smallest percentage of marine area for Pacific Marine ecozone and percentage of total area greater than 3.1? <context>: CREATE TABLE table_name_50 (percentage_of_marine_area__foreez_ INTEGER, ecozone VARCHAR, percentage_of_total_area__foreez_ VARCHAR)
SELECT MIN(percentage_of_marine_area__foreez_) FROM table_name_50 WHERE ecozone = "pacific marine" AND percentage_of_total_area__foreez_ > 3.1
50,856
<question>: How many values for percentage of marine area are for the Atlantic marine ecozone with an exclusive economic zone area less than 996,439? <context>: CREATE TABLE table_name_78 (percentage_of_marine_area__foreez_ VARCHAR, ecozone VARCHAR, area__km²__exclusive_economic_zone VARCHAR)
SELECT COUNT(percentage_of_marine_area__foreez_) FROM table_name_78 WHERE ecozone = "atlantic marine" AND area__km²__exclusive_economic_zone < 996 OFFSET 439
50,857
<question>: What is the team when alvin williams (6) has the high assists? <context>: CREATE TABLE table_name_29 (team VARCHAR, high_assists VARCHAR)
SELECT team FROM table_name_29 WHERE high_assists = "alvin williams (6)"
50,858
<question>: What is the Record for a game less than 3 and the score was l 91–96 (ot)? <context>: CREATE TABLE table_name_19 (record VARCHAR, game VARCHAR, score VARCHAR)
SELECT record FROM table_name_19 WHERE game < 3 AND score = "l 91–96 (ot)"
50,859
<question>: What is the Date when the high points went to Dell Curry (17)? <context>: CREATE TABLE table_name_84 (date VARCHAR, high_points VARCHAR)
SELECT date FROM table_name_84 WHERE high_points = "dell curry (17)"
50,860
<question>: What is the Team when antonio davis (8) had the high rebounds? <context>: CREATE TABLE table_name_53 (team VARCHAR, high_rebounds VARCHAR)
SELECT team FROM table_name_53 WHERE high_rebounds = "antonio davis (8)"
50,861
<question>: What is the Tournament with a Date that is apr 16, 1967? <context>: CREATE TABLE table_name_56 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_56 WHERE date = "apr 16, 1967"
50,862
<question>: What is the Date with a Runner(s)-up that is jerry steelsmith? <context>: CREATE TABLE table_name_69 (date VARCHAR, runner_s__up VARCHAR)
SELECT date FROM table_name_69 WHERE runner_s__up = "jerry steelsmith"
50,863
<question>: What kind of Obama that has a Source of rasmussen reports? <context>: CREATE TABLE table_name_28 (obama VARCHAR, source VARCHAR)
SELECT obama FROM table_name_28 WHERE source = "rasmussen reports"
50,864
<question>: Which Source has a Undecided of 2%? <context>: CREATE TABLE table_name_46 (source VARCHAR, undecided VARCHAR)
SELECT source FROM table_name_46 WHERE undecided = "2%"
50,865
<question>: What kind of Obama has a Undecided of 1%? <context>: CREATE TABLE table_name_87 (obama VARCHAR, undecided VARCHAR)
SELECT obama FROM table_name_87 WHERE undecided = "1%"
50,866
<question>: When has a Source of surveyusa and a Obama of 54%? <context>: CREATE TABLE table_name_8 (date VARCHAR, source VARCHAR, obama VARCHAR)
SELECT date FROM table_name_8 WHERE source = "surveyusa" AND obama = "54%"
50,867
<question>: When has a Source of rasmussen reports? <context>: CREATE TABLE table_name_39 (date VARCHAR, source VARCHAR)
SELECT date FROM table_name_39 WHERE source = "rasmussen reports"
50,868
<question>: Which Source has a Clinton of 39% and a Undecided of 7%? <context>: CREATE TABLE table_name_94 (source VARCHAR, clinton VARCHAR, undecided VARCHAR)
SELECT source FROM table_name_94 WHERE clinton = "39%" AND undecided = "7%"
50,869
<question>: What is the Date of Birth with a Block that is larger than 342? <context>: CREATE TABLE table_name_18 (date_of_birth VARCHAR, block INTEGER)
SELECT date_of_birth FROM table_name_18 WHERE block > 342
50,870
<question>: What is the number of positions that have 2012 ratings of 0.92? <context>: CREATE TABLE table_name_21 (position VARCHAR)
SELECT COUNT(position) FROM table_name_21 WHERE 2012 = "0.92"
50,871
<question>: What is the owner of the channel that has a 2012 rating of 5.42? <context>: CREATE TABLE table_name_96 (owner VARCHAR)
SELECT owner FROM table_name_96 WHERE 2012 = "5.42"
50,872
<question>: What is the 2007 rating of the channel with a position of 6? <context>: CREATE TABLE table_name_28 (position VARCHAR)
SELECT 2007 FROM table_name_28 WHERE position = 6
50,873
<question>: What is the channel with a 2011 rating of 8.5? <context>: CREATE TABLE table_name_64 (channel VARCHAR)
SELECT channel FROM table_name_64 WHERE 2011 = "8.5"
50,874
<question>: What is ASTC Member, when State is Arkansas, when AAM Member is No, and when AAM Accredited is Yes? <context>: CREATE TABLE table_name_39 (astc_member VARCHAR, aam_accredited VARCHAR, state VARCHAR, aam_member VARCHAR)
SELECT astc_member FROM table_name_39 WHERE state = "arkansas" AND aam_member = "no" AND aam_accredited = "yes"
50,875
<question>: What is City, when State is Florida, when AAM Member is No, and when AAM Accredited is No? <context>: CREATE TABLE table_name_61 (city VARCHAR, aam_accredited VARCHAR, state VARCHAR, aam_member VARCHAR)
SELECT city FROM table_name_61 WHERE state = "florida" AND aam_member = "no" AND aam_accredited = "no"
50,876
<question>: What is City, when ASTC Member is No, when State is California, and when AAM Member is Yes? <context>: CREATE TABLE table_name_62 (city VARCHAR, aam_member VARCHAR, astc_member VARCHAR, state VARCHAR)
SELECT city FROM table_name_62 WHERE astc_member = "no" AND state = "california" AND aam_member = "yes"
50,877
<question>: What is State, when AAM Accredited is No, when ASTC Member is No, and when City is Tulsa? <context>: CREATE TABLE table_name_49 (state VARCHAR, city VARCHAR, aam_accredited VARCHAR, astc_member VARCHAR)
SELECT state FROM table_name_49 WHERE aam_accredited = "no" AND astc_member = "no" AND city = "tulsa"
50,878
<question>: What is City, when State is California, when AAM Accredited is No, when ASTC Member is Yes, and when AAM Member is No? <context>: CREATE TABLE table_name_30 (city VARCHAR, aam_member VARCHAR, astc_member VARCHAR, state VARCHAR, aam_accredited VARCHAR)
SELECT city FROM table_name_30 WHERE state = "california" AND aam_accredited = "no" AND astc_member = "yes" AND aam_member = "no"
50,879
<question>: What is AAM Member, when AAM Accredited is No, when State is California, when ASTC Member is Yes, and when City is Sacramento? <context>: CREATE TABLE table_name_21 (aam_member VARCHAR, city VARCHAR, astc_member VARCHAR, aam_accredited VARCHAR, state VARCHAR)
SELECT aam_member FROM table_name_21 WHERE aam_accredited = "no" AND state = "california" AND astc_member = "yes" AND city = "sacramento"
50,880
<question>: Who were the runners-up when the individual winner was Tiger Woods? <context>: CREATE TABLE table_name_17 (runners_up VARCHAR, individual VARCHAR)
SELECT runners_up FROM table_name_17 WHERE individual = "tiger woods"
50,881
<question>: How many years was the individual winner from the United States was Tiger Woods? <context>: CREATE TABLE table_name_75 (year VARCHAR, country VARCHAR, individual VARCHAR)
SELECT COUNT(year) FROM table_name_75 WHERE country = "united states" AND individual = "tiger woods"
50,882
<question>: What is the earliest year that the tournament was played in Cape Town, South Africa? <context>: CREATE TABLE table_name_71 (year INTEGER, location VARCHAR)
SELECT MIN(year) FROM table_name_71 WHERE location = "cape town, south africa"
50,883
<question>: Who is the Driver, when the Date is October 6? <context>: CREATE TABLE table_name_98 (driver VARCHAR, date VARCHAR)
SELECT driver FROM table_name_98 WHERE date = "october 6"
50,884
<question>: What is the total number of Seasons, when the Engine is Cosworth, and when the Team is Kraco Racing? <context>: CREATE TABLE table_name_85 (season VARCHAR, engine VARCHAR, team VARCHAR)
SELECT COUNT(season) FROM table_name_85 WHERE engine = "cosworth" AND team = "kraco racing"
50,885
<question>: Who is the Driver, when the Engine is Chevrolet, and when the Date is October 3? <context>: CREATE TABLE table_name_90 (driver VARCHAR, engine VARCHAR, date VARCHAR)
SELECT driver FROM table_name_90 WHERE engine = "chevrolet" AND date = "october 3"
50,886
<question>: What is the sum of Seasons, when the Team is Penske Racing, and when the Date is October 3? <context>: CREATE TABLE table_name_10 (season INTEGER, team VARCHAR, date VARCHAR)
SELECT SUM(season) FROM table_name_10 WHERE team = "penske racing" AND date = "october 3"
50,887
<question>: What was the Year to Open for the Dandeung Bridge? <context>: CREATE TABLE table_name_51 (year_to_open VARCHAR, name VARCHAR)
SELECT COUNT(year_to_open) FROM table_name_51 WHERE name = "dandeung bridge"
50,888
<question>: What is the Main span of the Qincaobei Bridge <context>: CREATE TABLE table_name_64 (main_span_feet VARCHAR, name VARCHAR)
SELECT main_span_feet FROM table_name_64 WHERE name = "qincaobei bridge"
50,889
<question>: What is the Main span of the bridge from China with a Year to open of 2013 and Main span feet of 2,585? <context>: CREATE TABLE table_name_23 (main_span_metres VARCHAR, main_span_feet VARCHAR, year_to_open VARCHAR, country VARCHAR)
SELECT main_span_metres FROM table_name_23 WHERE year_to_open = 2013 AND country = "china" AND main_span_feet = "2,585"
50,890
<question>: Which republican ticket has stanley h. fuld as the Democratic ticket? <context>: CREATE TABLE table_name_25 (republican_ticket VARCHAR, democratic_ticket VARCHAR)
SELECT republican_ticket FROM table_name_25 WHERE democratic_ticket = "stanley h. fuld"
50,891
<question>: What is the liberal ticket that has judith white as the socialist workers? <context>: CREATE TABLE table_name_73 (liberal_ticket VARCHAR, socialist_workers_ticket VARCHAR)
SELECT liberal_ticket FROM table_name_73 WHERE socialist_workers_ticket = "judith white"
50,892
<question>: What socialist workers ticket has malcolm wilson as the Republican ticket? <context>: CREATE TABLE table_name_71 (socialist_workers_ticket VARCHAR, republican_ticket VARCHAR)
SELECT socialist_workers_ticket FROM table_name_71 WHERE republican_ticket = "malcolm wilson"
50,893
<question>: Which office has kieran o'doherty as the conservative ticket? <context>: CREATE TABLE table_name_28 (office VARCHAR, conservative_ticket VARCHAR)
SELECT office FROM table_name_28 WHERE conservative_ticket = "kieran o'doherty"
50,894
<question>: What office has (none) as the socialist labor ticket, and stanley h. fuld as the liberal ticket? <context>: CREATE TABLE table_name_8 (office VARCHAR, socialist_labor_ticket VARCHAR, liberal_ticket VARCHAR)
SELECT office FROM table_name_8 WHERE socialist_labor_ticket = "(none)" AND liberal_ticket = "stanley h. fuld"
50,895
<question>: If the call sign is w291ch what's the ERP W corresponding to that sign? <context>: CREATE TABLE table_name_38 (erp_w VARCHAR, call_sign VARCHAR)
SELECT erp_w FROM table_name_38 WHERE call_sign = "w291ch"
50,896
<question>: For the call sign w242at what's the city the license plate is registered to? <context>: CREATE TABLE table_name_78 (city_of_license VARCHAR, call_sign VARCHAR)
SELECT city_of_license FROM table_name_78 WHERE call_sign = "w242at"
50,897
<question>: What's the Class for the city the license plate was issued in great barrington, massachusetts? <context>: CREATE TABLE table_name_16 (class VARCHAR, city_of_license VARCHAR)
SELECT class FROM table_name_16 WHERE city_of_license = "great barrington, massachusetts"
50,898
<question>: How many gold have a bronze of 1, a rank smaller than 6, and a total less than 3? <context>: CREATE TABLE table_name_81 (gold INTEGER, total VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT SUM(gold) FROM table_name_81 WHERE bronze = 1 AND rank < 6 AND total < 3
50,899
<question>: How many France bronze have a gold of more than 1 and a rank of 0? <context>: CREATE TABLE table_name_79 (bronze INTEGER, rank VARCHAR, gold VARCHAR, nation VARCHAR)
SELECT SUM(bronze) FROM table_name_79 WHERE gold > 1 AND nation = "france" AND rank < 1