question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
Which artist has the Spoofed title Miscue 911?
columns: - name: artist type: VARCHAR - name: spoofed_title type: VARCHAR table: table_name_94
SELECT artist FROM table_name_94 WHERE spoofed_title = "miscue 911"
Tell me the country with ICAO of zgha
columns: - name: country type: VARCHAR - name: icao type: VARCHAR table: table_name_71
SELECT country FROM table_name_71 WHERE icao = "zgha"
What is the geo id for Logan county?
columns: - name: geo_id type: INTEGER - name: county type: VARCHAR table: table_18600760_10
SELECT MAX(geo_id) FROM table_18600760_10 WHERE county = "Logan"
Who was the captain of the away team at Adelaide Oval?
columns: - name: away_captain type: VARCHAR - name: venue type: VARCHAR table: table_name_84
SELECT away_captain FROM table_name_84 WHERE venue = "adelaide oval"
How many points does George M. Lawton have?
columns: - name: points type: INTEGER - name: player type: VARCHAR table: table_25730326_2
SELECT MAX(points) FROM table_25730326_2 WHERE player = "George M. Lawton"
How many games were played at Cleveland Stadium?
columns: - name: date type: VARCHAR - name: game_site type: VARCHAR table: table_16729063_2
SELECT COUNT(date) FROM table_16729063_2 WHERE game_site = "Cleveland Stadium"
Total overall from penn state?
columns: - name: overall type: INTEGER - name: college type: VARCHAR table: table_name_16
SELECT SUM(overall) FROM table_name_16 WHERE college = "penn state"
What was the name of the race that Al Unser had the pole position?
columns: - name: race_name type: VARCHAR - name: pole_position type: VARCHAR table: table_22673872_1
SELECT race_name FROM table_22673872_1 WHERE pole_position = "Al Unser"
What is the total number of playoff games played by the Seattle Thunderbirds team where the number of regular games played is less than 5 and pick number is less than 131?
columns: - name: pl_gp type: VARCHAR - name: pick__number type: VARCHAR - name: reg_gp type: VARCHAR - name: team__league_ type: VARCHAR table: table_name_16
SELECT COUNT(pl_gp) FROM table_name_16 WHERE reg_gp < 5 AND team__league_ = "seattle thunderbirds" AND pick__number < 131
Which Cover model has a Pictorials of brande roderick-pmoy, naked news?
columns: - name: cover_model type: VARCHAR - name: pictorials type: VARCHAR table: table_name_56
SELECT cover_model FROM table_name_56 WHERE pictorials = "brande roderick-pmoy, naked news"
What date does the Home team of Richmond have?
columns: - name: date type: VARCHAR - name: home_team type: VARCHAR table: table_name_32
SELECT date FROM table_name_32 WHERE home_team = "richmond"
What Pastoral Region has 3 Cemeteries?
columns: - name: pastoral_region type: VARCHAR - name: cemeteries type: VARCHAR table: table_name_57
SELECT pastoral_region FROM table_name_57 WHERE cemeteries = 3
What shows for 2000 at the Fort Peck Indian Reservation, Montana, when the 1979 is less than 26.8?
columns: - name: location type: VARCHAR - name: reservation type: VARCHAR table: table_name_97
SELECT AVG(2000) FROM table_name_97 WHERE location = "montana" AND reservation = "fort peck indian reservation" AND 1979 < 26.8
What type of race took place on the course Orta San Giulio to Milan?
columns: - name: type type: VARCHAR - name: course type: VARCHAR table: table_name_14
SELECT type FROM table_name_14 WHERE course = "orta san giulio to milan"
How many drawn have points of 6 and lost by fewer than 4?
columns: - name: drawn type: VARCHAR - name: points type: VARCHAR - name: lost type: VARCHAR table: table_name_53
SELECT COUNT(drawn) FROM table_name_53 WHERE points = 6 AND lost < 4
Who was the race 1 winner at the race held at Winton Motor Raceway?
columns: - name: race_1_winner type: VARCHAR - name: circuit type: VARCHAR table: table_22905641_2
SELECT race_1_winner FROM table_22905641_2 WHERE circuit = "Winton Motor Raceway"
When the president was Yoweri Museveni, and the year was 1993, with rank of 6 under political rights, what was the total of civil liberties?
columns: - name: civil_liberties type: INTEGER - name: year type: VARCHAR - name: political_rights type: VARCHAR - name: president type: VARCHAR table: table_name_78
SELECT SUM(civil_liberties) FROM table_name_78 WHERE political_rights = 6 AND president = "yoweri museveni" AND year = 1993
What is the total number of episodes listed with a production code of 306?
columns: - name: _number type: VARCHAR - name: production_code type: VARCHAR table: table_18424435_4
SELECT COUNT(_number) FROM table_18424435_4 WHERE production_code = 306
What is the number of gold for the country ranked 19?
columns: - name: gold type: INTEGER - name: rank type: VARCHAR table: table_name_19
SELECT SUM(gold) FROM table_name_19 WHERE rank = "19"
How may lecturers are there in the case when there are more than 8 assistant professors, fewer than 35 associate professors, more than 14 professors and total of more than 81?
columns: - name: lecturers type: VARCHAR - name: total type: VARCHAR - name: associate_professors type: VARCHAR - name: assistant_professors type: VARCHAR - name: professors type: VARCHAR table: table_name_71
SELECT COUNT(lecturers) FROM table_name_71 WHERE assistant_professors > 8 AND professors > 14 AND associate_professors < 35 AND total > 81
What is the Chinese name of the player in Index F10?
columns: - name: Chinese type: VARCHAR - name: index type: VARCHAR table: table_name_73
SELECT Chinese AS name FROM table_name_73 WHERE index = "f10"
How many pac-12 sports are shown for california polytechnic state university?
columns: - name: pac_12_sports type: VARCHAR - name: institution type: VARCHAR table: table_27816698_2
SELECT COUNT(pac_12_sports) FROM table_27816698_2 WHERE institution = "California Polytechnic State University"
Of the 1978 winners, who had finish totals smaller than 292?
columns: - name: finish type: VARCHAR - name: total type: VARCHAR - name: year_s__won type: VARCHAR table: table_name_55
SELECT finish FROM table_name_55 WHERE total < 292 AND year_s__won = "1978"
What is the Tie no of the Port Vale Away game?
columns: - name: tie_no type: VARCHAR - name: away_team type: VARCHAR table: table_name_56
SELECT tie_no FROM table_name_56 WHERE away_team = "port vale"
In the fight against Brandon Bledsoe, how many rounds did the fight last?
columns: - name: round type: VARCHAR - name: opponent type: VARCHAR table: table_name_91
SELECT round FROM table_name_91 WHERE opponent = "brandon bledsoe"
How many weeks total did the New York Jets face the Pittsburgh Steelers?
columns: - name: week type: VARCHAR - name: opponent type: VARCHAR table: table_name_72
SELECT COUNT(week) FROM table_name_72 WHERE opponent = "pittsburgh steelers"
What round had Canada with a draft of 1970 and a pick of 7?
columns: - name: round type: INTEGER - name: pick type: VARCHAR - name: nationality type: VARCHAR - name: draft type: VARCHAR table: table_name_34
SELECT MAX(round) FROM table_name_34 WHERE nationality = "canada" AND draft < 1970 AND pick = 7
Who is the player who went to school at Tampa?
columns: - name: player type: VARCHAR - name: school_club_team type: VARCHAR table: table_name_91
SELECT player FROM table_name_91 WHERE school_club_team = "tampa"
What percentage is Karen Handel at in the poll in which Eric Johnson is 13% and undecided is 22%?
columns: - name: karen_handel type: VARCHAR - name: eric_johnson type: VARCHAR - name: undecided type: VARCHAR table: table_name_45
SELECT karen_handel FROM table_name_45 WHERE eric_johnson = "13%" AND undecided = "22%"
What is the upstream speed that you get for 89 tl?
columns: - name: upstream type: VARCHAR - name: price_tl type: VARCHAR table: table_17304621_14
SELECT upstream FROM table_17304621_14 WHERE price_tl = "89 TL"
What is Caps, when Province / Club is DRFC, and when Position is Center?
columns: - name: caps type: VARCHAR - name: province___club type: VARCHAR - name: position type: VARCHAR table: table_name_49
SELECT caps FROM table_name_49 WHERE province___club = "drfc" AND position = "center"
When did the hotel with 727 rooms open?
columns: - name: opening_date type: VARCHAR - name: hotel_rooms type: VARCHAR table: table_name_80
SELECT opening_date FROM table_name_80 WHERE hotel_rooms = 727
What day was Jeld-Wen Tradition held?
columns: - name: date type: VARCHAR - name: tournament type: VARCHAR table: table_15346009_1
SELECT date FROM table_15346009_1 WHERE tournament = "JELD-WEN Tradition"
What's the average Year for the Position of 7th (sf)?
columns: - name: year type: INTEGER - name: position type: VARCHAR table: table_name_47
SELECT AVG(year) FROM table_name_47 WHERE position = "7th (sf)"
Which Position has a D.O.B. of 3 june 1989?
columns: - name: position type: VARCHAR - name: dob type: VARCHAR table: table_name_78
SELECT position FROM table_name_78 WHERE dob = "3 june 1989"
what is 1958 when 1957 is 2 and 1956 is 3?
columns: - name: Id type: VARCHAR table: table_name_67
SELECT 1958 FROM table_name_67 WHERE 1957 = "2" AND 1956 = "3"
What high assists have uic pavilion 3,520 as the location/attendance?
columns: - name: high_assists type: VARCHAR - name: location_attendance type: VARCHAR table: table_name_31
SELECT high_assists FROM table_name_31 WHERE location_attendance = "uic pavilion 3,520"
what is the result when the venue is singapore on september 8, 1996?
columns: - name: result type: VARCHAR - name: venue type: VARCHAR - name: date type: VARCHAR table: table_name_37
SELECT result FROM table_name_37 WHERE venue = "singapore" AND date = "september 8, 1996"
What is the high run total associated with a high score of 385 and under 407 innings?
columns: - name: runs type: INTEGER - name: high_score type: VARCHAR - name: innings type: VARCHAR table: table_name_96
SELECT MAX(runs) FROM table_name_96 WHERE high_score = "385" AND innings < 407
Who is the captain of the 2012 NRL season competition?
columns: - name: captain_s_ type: VARCHAR - name: competition type: VARCHAR table: table_name_75
SELECT captain_s_ FROM table_name_75 WHERE competition = "2012 nrl season"
What was the location attendance on January 19?
columns: - name: location_attendance type: VARCHAR - name: date type: VARCHAR table: table_name_47
SELECT location_attendance FROM table_name_47 WHERE date = "january 19"
Election results of 1976
columns: - name: result type: VARCHAR - name: first_elected type: VARCHAR table: table_1341640_43
SELECT result FROM table_1341640_43 WHERE first_elected = 1976
Who was the Away captain for the Test match of Australia in England where the Result was AUS by 264 runs?
columns: - name: away_captain type: VARCHAR - name: result type: VARCHAR table: table_name_56
SELECT away_captain FROM table_name_56 WHERE result = "aus by 264 runs"
What is the highest run 3 of the athlete with a 55.44 run 2?
columns: - name: run_3 type: INTEGER - name: run_2 type: VARCHAR table: table_name_86
SELECT MAX(run_3) FROM table_name_86 WHERE run_2 = 55.44
What school has the Lancers as their mascot?
columns: - name: location type: VARCHAR - name: mascot type: VARCHAR table: table_name_86
SELECT location FROM table_name_86 WHERE mascot = "lancers"
What is the green-communist with a 15.5% lead?
columns: - name: green_communist type: VARCHAR - name: lead type: VARCHAR table: table_name_82
SELECT green_communist FROM table_name_82 WHERE lead = "15.5%"
What's the comp for 1998-04-22?
columns: - name: comp type: VARCHAR - name: date type: VARCHAR table: table_name_1
SELECT comp FROM table_name_1 WHERE date = "1998-04-22"
What is the Torque of the model with the engine code of M54B25?
columns: - name: torque type: VARCHAR - name: engine_code type: VARCHAR table: table_name_73
SELECT torque FROM table_name_73 WHERE engine_code = "m54b25"
What Try bonus has a Points against of 488?
columns: - name: try_bonus type: VARCHAR - name: points_against type: VARCHAR table: table_name_61
SELECT try_bonus FROM table_name_61 WHERE points_against = "488"
When tajik is the ethnicity what is islam?
columns: - name: islam type: VARCHAR - name: ethnicity type: VARCHAR table: table_16642_1
SELECT islam FROM table_16642_1 WHERE ethnicity = "Tajik"
What date was the person ordained as a priest in December 1838 ordained as a bishop?
columns: - name: ordained_bishop type: VARCHAR - name: ordained_priest type: VARCHAR table: table_1656555_1
SELECT ordained_bishop FROM table_1656555_1 WHERE ordained_priest = "December 1838"
Which Super Ghas a missed season due to injury?
columns: - name: super_g type: VARCHAR - name: overall type: VARCHAR table: table_name_50
SELECT super_g FROM table_name_50 WHERE overall = "missed season due to injury"
What is the Lineup from a Match that is 27?
columns: - name: lineup type: VARCHAR - name: match type: VARCHAR table: table_name_12
SELECT lineup FROM table_name_12 WHERE match = "27"
How many decile has a roll less than 20?
columns: - name: decile type: INTEGER - name: roll type: INTEGER table: table_name_6
SELECT AVG(decile) FROM table_name_6 WHERE roll < 20
Which player was the forward?
columns: - name: player type: VARCHAR - name: position type: VARCHAR table: table_name_7
SELECT player FROM table_name_7 WHERE position = "forward"
What is the name of the captain when teh shirt sponsor is n/a?
columns: - name: captain type: VARCHAR - name: shirt_sponsor type: VARCHAR table: table_27631756_2
SELECT captain FROM table_27631756_2 WHERE shirt_sponsor = "N/A"
What is the Speed when Construction begun in 2010, and an Expected start of revenue services of 2015?
columns: - name: speed type: VARCHAR - name: construction_begun type: VARCHAR - name: expected_start_of_revenue_services type: VARCHAR table: table_name_3
SELECT speed FROM table_name_3 WHERE construction_begun = "2010" AND expected_start_of_revenue_services = 2015
Which Year has a Manager of bobby dews, and Playoffs of lost in 1st round?
columns: - name: year type: INTEGER - name: manager type: VARCHAR - name: playoffs type: VARCHAR table: table_name_37
SELECT MIN(year) FROM table_name_37 WHERE manager = "bobby dews" AND playoffs = "lost in 1st round"
What is the lowest lap with a rank of 30?
columns: - name: laps type: INTEGER - name: rank type: VARCHAR table: table_name_85
SELECT MIN(laps) FROM table_name_85 WHERE rank = "30"
Where the height range is higher than 20000.0 and the shell weight is 12.5, what is the time to feet ratio at 25 degrees?
columns: - name: "time_to_ft__m__at_25\xB0__seconds_" type: VARCHAR - name: shell__lb_ type: VARCHAR - name: max_height__ft_ type: VARCHAR table: table_16439764_1
SELECT time_to_ft__m__at_25°__seconds_ FROM table_16439764_1 WHERE shell__lb_ = "12.5" AND max_height__ft_ > 20000.0
What is the total longitude of Nogosek and a GEO ID larger than 3809357060?
columns: - name: longitude type: VARCHAR - name: township type: VARCHAR - name: geo_id type: VARCHAR table: table_name_68
SELECT COUNT(longitude) FROM table_name_68 WHERE township = "nogosek" AND geo_id > 3809357060
What shows for mon 22 aug whenwed 24 aug is 19' 56.16 113.553mph?
columns: - name: mon_22_aug type: VARCHAR - name: wed_24_aug type: VARCHAR table: table_30058355_2
SELECT mon_22_aug FROM table_30058355_2 WHERE wed_24_aug = "19' 56.16 113.553mph"
When the call sign is wpib, what is lowest ERP W?
columns: - name: erp_w type: INTEGER - name: call_sign type: VARCHAR table: table_name_21
SELECT MIN(erp_w) FROM table_name_21 WHERE call_sign = "wpib"
Name the george bush for ronald reagan of 43%
columns: - name: george_h_w_bush type: VARCHAR - name: ronald_reagan type: VARCHAR table: table_name_59
SELECT george_h_w_bush FROM table_name_59 WHERE ronald_reagan = "43%"
COunt the Year which has a Venue of latakia , syria?
columns: - name: year type: VARCHAR - name: venue type: VARCHAR table: table_name_71
SELECT COUNT(year) FROM table_name_71 WHERE venue = "latakia , syria"
What is the amount of FA cups goals that were made when the total goals is greater than 16, and the league cup goals is 1 for the Norwich City club?
columns: - name: fa_cup_goals type: VARCHAR - name: club type: VARCHAR - name: total type: VARCHAR - name: league_cup_goals type: VARCHAR table: table_name_78
SELECT fa_cup_goals FROM table_name_78 WHERE total > 16 AND league_cup_goals = "1" AND club = "norwich city"
What was the home team score at VFL Park?
columns: - name: home_team type: VARCHAR - name: venue type: VARCHAR table: table_name_99
SELECT home_team AS score FROM table_name_99 WHERE venue = "vfl park"
Which venue was fouded before 2000 for basketball?
columns: - name: venue type: VARCHAR - name: founded type: VARCHAR - name: sport type: VARCHAR table: table_name_31
SELECT venue FROM table_name_31 WHERE founded < 2000 AND sport = "basketball"
What is Opponent, when Location is "Boston Garden", when Game is greater than 1, and when Score is "115-105"?
columns: - name: opponent type: VARCHAR - name: score type: VARCHAR - name: location type: VARCHAR - name: game type: VARCHAR table: table_name_91
SELECT opponent FROM table_name_91 WHERE location = "boston garden" AND game > 1 AND score = "115-105"
what is the margin of victory for the waste management phoenix open tournament?
columns: - name: margin_of_victory type: VARCHAR - name: tournament type: VARCHAR table: table_name_69
SELECT margin_of_victory FROM table_name_69 WHERE tournament = "waste management phoenix open"
What is the average number of tries that has a start larger than 32, is a player of seremaia bai that also has a conversion score larger than 47?
columns: - name: tries type: INTEGER - name: conv type: VARCHAR - name: start type: VARCHAR - name: player type: VARCHAR table: table_name_22
SELECT AVG(tries) FROM table_name_22 WHERE start > 32 AND player = "seremaia bai" AND conv > 47
What alumni were in rw: cancun as their original season?
columns: - name: alumni type: VARCHAR - name: original_season type: VARCHAR table: table_26419467_1
SELECT alumni FROM table_26419467_1 WHERE original_season = "RW: Cancun"
What is the sum of Evening Gown scores where the swimsuit score is higher than 9.4 and the average score is lower than 9.733?
columns: - name: evening_gown type: INTEGER - name: swimsuit type: VARCHAR - name: average type: VARCHAR table: table_name_88
SELECT SUM(evening_gown) FROM table_name_88 WHERE swimsuit > 9.4 AND average < 9.733
What is the result for the nomination at the Laurence Olivier award in 2009 for best actress in a musical?
columns: - name: result type: VARCHAR - name: year type: VARCHAR - name: category type: VARCHAR - name: award type: VARCHAR table: table_name_33
SELECT result FROM table_name_33 WHERE category = "best actress in a musical" AND award = "laurence olivier award" AND year = 2009
Name the percentage which has females of 2
columns: - name: percentage___percentage_ type: VARCHAR - name: females type: VARCHAR table: table_name_17
SELECT percentage___percentage_ FROM table_name_17 WHERE females = "2"
Which Site that has a Sex and other data of old male?
columns: - name: site type: INTEGER - name: sex_and_other_data type: VARCHAR table: table_name_42
SELECT MAX(site) FROM table_name_42 WHERE sex_and_other_data = "old male"
What is the production code of the episode directed by Michael McDonald?
columns: - name: production_code type: VARCHAR - name: directed_by type: VARCHAR table: table_25548505_1
SELECT production_code FROM table_25548505_1 WHERE directed_by = "Michael McDonald"
what is the score when the opponent is fernando vicente?
columns: - name: score type: VARCHAR - name: opponent type: VARCHAR table: table_name_9
SELECT score FROM table_name_9 WHERE opponent = "fernando vicente"
What is the total count of net gross in 1957?
columns: - name: nett_gross type: VARCHAR - name: year type: VARCHAR table: table_name_90
SELECT COUNT(nett_gross) FROM table_name_90 WHERE year = 1957
What is Ring Name, when Stable is Kasugano, and when Birthplace is Z Mtskheta , Georgia?
columns: - name: ring_name type: VARCHAR - name: stable type: VARCHAR - name: birthplace type: VARCHAR table: table_name_49
SELECT ring_name FROM table_name_49 WHERE stable = "kasugano" AND birthplace = "z mtskheta , georgia"
How many times is the award ceremony laurence olivier award, result is won and the nominee is imelda staunton?
columns: - name: year type: VARCHAR - name: nominee type: VARCHAR - name: award_ceremony type: VARCHAR - name: result type: VARCHAR table: table_name_3
SELECT COUNT(year) FROM table_name_3 WHERE award_ceremony = "laurence olivier award" AND result = "won" AND nominee = "imelda staunton"
What Car Model has the Engine of Ford 6.0 V8?
columns: - name: car_model type: VARCHAR - name: engine type: VARCHAR table: table_name_19
SELECT car_model FROM table_name_19 WHERE engine = "ford 6.0 v8"
Where is the home on march 12?
columns: - name: home type: VARCHAR - name: date type: VARCHAR table: table_name_34
SELECT home FROM table_name_34 WHERE date = "march 12"
How big was the crowd of away team Richmond?
columns: - name: crowd type: VARCHAR - name: away_team type: VARCHAR table: table_name_34
SELECT crowd FROM table_name_34 WHERE away_team = "richmond"
English title of malèna had what original title?
columns: - name: original_title type: VARCHAR - name: english_title type: VARCHAR table: table_name_9
SELECT original_title FROM table_name_9 WHERE english_title = "malèna"
What is the number of Year with a Result of champions, and Matches larger than 5?
columns: - name: year type: VARCHAR - name: result type: VARCHAR - name: matches type: VARCHAR table: table_name_34
SELECT COUNT(year) FROM table_name_34 WHERE result = "champions" AND matches > 5
What's the worst score for the worst dancer(s) john barnes, with a best score of 36?
columns: - name: worst_score type: VARCHAR - name: best_score type: VARCHAR - name: worst_dancer_s_ type: VARCHAR table: table_name_95
SELECT worst_score FROM table_name_95 WHERE best_score = 36 AND worst_dancer_s_ = "john barnes"
Which author is located in Mexico?
columns: - name: authors type: VARCHAR - name: location type: VARCHAR table: table_name_73
SELECT authors FROM table_name_73 WHERE location = "mexico"
What is the most recent built year when the year of entering service was more recent than 2003, and the knots is less than 27?
columns: - name: built type: INTEGER - name: entered_service type: VARCHAR - name: knots type: VARCHAR table: table_name_44
SELECT MAX(built) FROM table_name_44 WHERE entered_service > 2003 AND knots < 27
Who won the gold when Jules van Dyk Belgium won bronze?
columns: - name: gold type: VARCHAR - name: bronze type: VARCHAR table: table_name_13
SELECT gold FROM table_name_13 WHERE bronze = "jules van dyk belgium"
What was the date of appointment for paco chaparro's replacement?
columns: - name: date_of_appointment type: VARCHAR - name: outgoing_manager type: VARCHAR table: table_name_12
SELECT date_of_appointment FROM table_name_12 WHERE outgoing_manager = "paco chaparro"
How many rounds did germán sánchez drive in where the chassis was dallara f308?
columns: - name: rounds type: VARCHAR - name: chassis type: VARCHAR - name: driver type: VARCHAR table: table_name_34
SELECT rounds FROM table_name_34 WHERE chassis = "dallara f308" AND driver = "germán sánchez"
What was the score for the game played in Alexander Memorial Coliseum when the record was 0-1?
columns: - name: score type: VARCHAR - name: location_attendance type: VARCHAR - name: record type: VARCHAR table: table_name_32
SELECT score FROM table_name_32 WHERE location_attendance = "alexander memorial coliseum" AND record = "0-1"
Who was the writer for episode 3?
columns: - name: writer type: VARCHAR - name: episode type: VARCHAR table: table_29039942_1
SELECT writer FROM table_29039942_1 WHERE episode = 3
At which track was Frank Kimmel the Pole Winner of the Pennsylvania 200?
columns: - name: track type: VARCHAR - name: pole_winner type: VARCHAR - name: event_name type: VARCHAR table: table_name_80
SELECT track FROM table_name_80 WHERE pole_winner = "frank kimmel" AND event_name = "pennsylvania 200"
Name the Time which has a Manufacturer of aprilia, and a Grid smaller than 16, and a Rider of sandro cortese?
columns: - name: time type: VARCHAR - name: rider type: VARCHAR - name: manufacturer type: VARCHAR - name: grid type: VARCHAR table: table_name_13
SELECT time FROM table_name_13 WHERE manufacturer = "aprilia" AND grid < 16 AND rider = "sandro cortese"
Who was in the women's 200m medley?
columns: - name: name type: VARCHAR - name: event type: VARCHAR table: table_name_22
SELECT name FROM table_name_22 WHERE event = "women's 200m medley"
What is 2000, when 1996 is "A", when 1997 is "A", and when 2007 is "A"?
columns: - name: Id type: VARCHAR table: table_name_30
SELECT 2000 FROM table_name_30 WHERE 1996 = "a" AND 1997 = "a" AND 2007 = "a"
What is the location of the tiruchirappalli district?
columns: - name: location type: VARCHAR - name: district type: VARCHAR table: table_name_73
SELECT location FROM table_name_73 WHERE district = "tiruchirappalli district"
What was the average pick made by the Texas Rangers?
columns: - name: pick type: INTEGER - name: team type: VARCHAR table: table_name_82
SELECT AVG(pick) FROM table_name_82 WHERE team = "texas rangers"