question stringlengths 12 243 | context stringlengths 45 517 | answer stringlengths 32 484 |
|---|---|---|
What round has less than 1 against? | columns:
- name: round
type: VARCHAR
- name: against
type: INTEGER
table: table_name_37
| SELECT round FROM table_name_37 WHERE against < 1 |
Which score has an Opponent of white sox, and a Record of 2-0? | columns:
- name: score
type: VARCHAR
- name: opponent
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_92
| SELECT score FROM table_name_92 WHERE opponent = "white sox" AND record = "2-0" |
Who was the winning driver of the British Grand Prix where Giuseppe Farina had the fastest lap? | columns:
- name: winning_driver
type: VARCHAR
- name: fastest_lap
type: VARCHAR
- name: race
type: VARCHAR
table: table_name_21
| SELECT winning_driver FROM table_name_21 WHERE fastest_lap = "giuseppe farina" AND race = "british grand prix" |
What was the lineup for match 12 that had a competition of Group Stage? | columns:
- name: lineup
type: VARCHAR
- name: competition
type: VARCHAR
- name: match
type: VARCHAR
table: table_name_65
| SELECT lineup FROM table_name_65 WHERE competition = "group stage" AND match = "12" |
What is the team name from Hammond Bishop Noll? | columns:
- name: team_name
type: VARCHAR
- name: school
type: VARCHAR
table: table_name_42
| SELECT team_name FROM table_name_42 WHERE school = "hammond bishop noll" |
Which Parish (Prestegjeld) was built in 1907? | columns:
- name: parish__prestegjeld_
type: VARCHAR
- name: year_built
type: VARCHAR
table: table_name_2
| SELECT parish__prestegjeld_ FROM table_name_2 WHERE year_built = "1907" |
What is Melbourne's home venue? | columns:
- name: venue
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_74
| SELECT venue FROM table_name_74 WHERE home_team = "melbourne" |
What is Country, when Class is "club"? | columns:
- name: country
type: VARCHAR
- name: class
type: VARCHAR
table: table_name_51
| SELECT country FROM table_name_51 WHERE class = "club" |
What Nationality of the person who has a Rank of 4 | columns:
- name: nationality
type: VARCHAR
- name: lane
type: VARCHAR
- name: rank
type: VARCHAR
table: table_name_59
| SELECT nationality FROM table_name_59 WHERE lane < 4 AND rank = 4 |
What is the Away team score for mcg? | columns:
- name: away_team
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_26
| SELECT away_team AS score FROM table_name_26 WHERE venue = "mcg" |
What is the speed of the model whose number is W3540? | columns:
- name: speed__ghz_
type: VARCHAR
- name: model
type: VARCHAR
table: table_269920_16
| SELECT speed__ghz_ FROM table_269920_16 WHERE model = "W3540" |
What is the high goal against associated with 18 wins, a Goal Difference of 43, and under 6 draws? | columns:
- name: goals_against
type: INTEGER
- name: draws
type: VARCHAR
- name: wins
type: VARCHAR
- name: goal_difference
type: VARCHAR
table: table_name_57
| SELECT MAX(goals_against) FROM table_name_57 WHERE wins = 18 AND goal_difference = 43 AND draws < 6 |
Who wrote the title with production code 7acx14? | columns:
- name: written_by
type: VARCHAR
- name: production_code
type: VARCHAR
table: table_22269839_1
| SELECT written_by FROM table_22269839_1 WHERE production_code = "7ACX14" |
Who attended the school in 2006, that Jasmine Wilson attended in 2005? | columns:
- name: Id
type: VARCHAR
table: table_name_70
| SELECT 2006 FROM table_name_70 WHERE 2005 = "jasmine wilson" |
Which Delegate has a Placement in Miss Universe of fourth runner-up, and a Hometown of makati , rizal? | columns:
- name: delegate
type: VARCHAR
- name: placement_in_miss_universe
type: VARCHAR
- name: hometown
type: VARCHAR
table: table_name_96
| SELECT delegate FROM table_name_96 WHERE placement_in_miss_universe = "fourth runner-up" AND hometown = "makati , rizal" |
What was the highest pick number for the Hamilton tiger-cats? | columns:
- name: pick__number
type: INTEGER
- name: cfl_team
type: VARCHAR
table: table_name_13
| SELECT MAX(pick__number) FROM table_name_13 WHERE cfl_team = "hamilton tiger-cats" |
What is the Margin of victory on oct 5, 1997? | columns:
- name: margin_of_victory
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_21
| SELECT margin_of_victory FROM table_name_21 WHERE date = "oct 5, 1997" |
What is the Republican seat plurality of the state with a ratio of 12/4 Republicans to Democrats? | columns:
- name: republican_seat_plurality
type: VARCHAR
- name: republican__democratic
type: VARCHAR
table: table_name_30
| SELECT republican_seat_plurality FROM table_name_30 WHERE republican__democratic = "12/4" |
What is the greatest points value that have draws under 2 and 2 losses? | columns:
- name: points
type: INTEGER
- name: drawn
type: VARCHAR
- name: lost
type: VARCHAR
table: table_name_67
| SELECT MAX(points) FROM table_name_67 WHERE drawn < 2 AND lost = 2 |
What is the record on February 23? | columns:
- name: record
type: VARCHAR
- name: february
type: VARCHAR
table: table_name_82
| SELECT record FROM table_name_82 WHERE february = 23 |
What venue features collingwood as the home side? | columns:
- name: venue
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_4
| SELECT venue FROM table_name_4 WHERE home_team = "collingwood" |
What is the name of the bo-bodh train with a number less than 5? | columns:
- name: name
type: VARCHAR
- name: number
type: VARCHAR
- name: type
type: VARCHAR
table: table_name_31
| SELECT name FROM table_name_31 WHERE number < 5 AND type = "bo-bodh" |
What is the sum for the year with a location of newport, rhode island? | columns:
- name: year
type: INTEGER
- name: location
type: VARCHAR
table: table_name_57
| SELECT SUM(year) FROM table_name_57 WHERE location = "newport, rhode island" |
What is teh Nuskhuri symbol for ⴋ in Asomtavruli? | columns:
- name: nuskhuri
type: VARCHAR
- name: asomtavruli
type: VARCHAR
table: table_name_80
| SELECT nuskhuri FROM table_name_80 WHERE asomtavruli = "ⴋ" |
Who is the lites 2 race two winning team when #11 Performance Tech is the lites 1 race two winning team? | columns:
- name: lites_2_race_two_winning_team
type: VARCHAR
- name: lites_1_race_two_winning_team
type: VARCHAR
table: table_26638600_3
| SELECT lites_2_race_two_winning_team FROM table_26638600_3 WHERE lites_1_race_two_winning_team = "#11 Performance Tech" |
What was the result when they had their bye week? | columns:
- name: result
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_84
| SELECT result FROM table_name_84 WHERE date = "bye" |
Which Qual with laps less than 200 and an 11 start? | columns:
- name: qual
type: VARCHAR
- name: laps
type: VARCHAR
- name: start
type: VARCHAR
table: table_name_4
| SELECT qual FROM table_name_4 WHERE laps < 200 AND start = "11" |
What is the Catalog number of the CD Single? | columns:
- name: catalog
type: VARCHAR
- name: format
type: VARCHAR
table: table_name_13
| SELECT catalog FROM table_name_13 WHERE format = "cd single" |
What is the Year, when Role is "himself", and when Title is "Epik High's Love And Delusion"? | columns:
- name: year
type: VARCHAR
- name: role
type: VARCHAR
- name: title
type: VARCHAR
table: table_name_59
| SELECT year FROM table_name_59 WHERE role = "himself" AND title = "epik high's love and delusion" |
Which ERP W has a Frequency MHz of 89.3 fm? | columns:
- name: erp_w
type: INTEGER
- name: frequency_mhz
type: VARCHAR
table: table_name_98
| SELECT MAX(erp_w) FROM table_name_98 WHERE frequency_mhz = "89.3 fm" |
What's China's heat for Zhang Lin in a lane after 6? | columns:
- name: heat
type: INTEGER
- name: lane
type: VARCHAR
- name: nationality
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_61
| SELECT SUM(heat) FROM table_name_61 WHERE nationality = "china" AND name = "zhang lin" AND lane > 6 |
Which winning driver is located in Imola? | columns:
- name: winning_driver
type: VARCHAR
- name: location
type: VARCHAR
table: table_name_48
| SELECT winning_driver FROM table_name_48 WHERE location = "imola" |
Which loss has a Date of april 26? | columns:
- name: loss
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_30
| SELECT loss FROM table_name_30 WHERE date = "april 26" |
How much Overall has a Pick # larger than 2, and a Name of claude humphrey? | columns:
- name: overall
type: VARCHAR
- name: pick__number
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_93
| SELECT COUNT(overall) FROM table_name_93 WHERE pick__number > 2 AND name = "claude humphrey" |
What is the Crowd number for the Away team of Richmond? | columns:
- name: crowd
type: INTEGER
- name: away_team
type: VARCHAR
table: table_name_41
| SELECT SUM(crowd) FROM table_name_41 WHERE away_team = "richmond" |
WHAT IS THE APPOINTMENT DATE FOR AC HORSENS? | columns:
- name: date_of_appointment
type: VARCHAR
- name: team
type: VARCHAR
table: table_name_33
| SELECT date_of_appointment FROM table_name_33 WHERE team = "ac horsens" |
What is the result when 13 is the week? | columns:
- name: result
type: VARCHAR
- name: week
type: VARCHAR
table: table_name_64
| SELECT result FROM table_name_64 WHERE week = 13 |
Which Wins have a Win % smaller than 0.8270000000000001, and a Name of rick mirer, and Ties smaller than 1? | columns:
- name: wins
type: INTEGER
- name: ties
type: VARCHAR
- name: win__percentage
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_17
| SELECT SUM(wins) FROM table_name_17 WHERE win__percentage < 0.8270000000000001 AND name = "rick mirer" AND ties < 1 |
What company is numbered larger than 5 and priced at $389M? | columns:
- name: company
type: VARCHAR
- name: number
type: VARCHAR
- name: price
type: VARCHAR
table: table_name_84
| SELECT company FROM table_name_84 WHERE number > 5 AND price = "$389m" |
In the tournament of HSBC Champions, what was the sum of the Starts with Wins lower than 0? | columns:
- name: starts
type: INTEGER
- name: tournament
type: VARCHAR
- name: wins
type: VARCHAR
table: table_name_52
| SELECT SUM(starts) FROM table_name_52 WHERE tournament = "hsbc champions" AND wins < 0 |
Which player had a pick under 6 and a new WNBA team of the Minnesota Lynx? | columns:
- name: player
type: VARCHAR
- name: pick
type: VARCHAR
- name: new_wnba_team
type: VARCHAR
table: table_name_33
| SELECT player FROM table_name_33 WHERE pick < 6 AND new_wnba_team = "minnesota lynx" |
List the number of assists for the DF. | columns:
- name: total
type: INTEGER
- name: position
type: VARCHAR
table: table_28068645_8
| SELECT MAX(total) FROM table_28068645_8 WHERE position = "DF" |
What was the survivor count for the episode directed by Gwyneth Horder-Payton? | columns:
- name: survivor_count
type: VARCHAR
- name: directed_by
type: VARCHAR
table: table_21304131_2
| SELECT survivor_count FROM table_21304131_2 WHERE directed_by = "Gwyneth Horder-Payton" |
What Type of museum is the Valdez museum? | columns:
- name: type
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_73
| SELECT type FROM table_name_73 WHERE name = "valdez museum" |
What is Province, when 2006 is less than 153748, when Date of Official Foundation of Municipality is after 1958, and when City is "Pakdasht"? | columns:
- name: province
type: VARCHAR
- name: city
type: VARCHAR
- name: date_of_official_foundation_of_municipality
type: VARCHAR
table: table_name_46
| SELECT province FROM table_name_46 WHERE 2006 < 153748 AND date_of_official_foundation_of_municipality > 1958 AND city = "pakdasht" |
What's the against of South Warrnambool when the draw is less than 0? | columns:
- name: against
type: INTEGER
- name: club
type: VARCHAR
- name: draws
type: VARCHAR
table: table_name_31
| SELECT SUM(against) FROM table_name_31 WHERE club = "south warrnambool" AND draws < 0 |
Which title has a length of 4:22? | columns:
- name: title
type: VARCHAR
- name: time
type: VARCHAR
table: table_name_1
| SELECT title FROM table_name_1 WHERE time = "4:22" |
What is the score having a runner-up of Magdalena Maleeva? | columns:
- name: score
type: VARCHAR
- name: runner_up
type: VARCHAR
table: table_name_45
| SELECT score FROM table_name_45 WHERE runner_up = "magdalena maleeva" |
What is Australia's Disposable USD growth? | columns:
- name: disposable_usd_growth
type: INTEGER
- name: country
type: VARCHAR
table: table_24486462_1
| SELECT MAX(disposable_usd_growth) FROM table_24486462_1 WHERE country = "Australia" |
How many stages did Team Sky lead the teams classification? | columns:
- name: stage
type: INTEGER
- name: teams_classification
type: VARCHAR
table: table_26010857_13
| SELECT MAX(stage) FROM table_26010857_13 WHERE teams_classification = "Team Sky" |
Name the power provided for transfer speed mb/s is 1250 | columns:
- name: power_provided
type: VARCHAR
- name: transfer_speed__mb_s_
type: VARCHAR
table: table_174151_5
| SELECT power_provided FROM table_174151_5 WHERE transfer_speed__mb_s_ = "1250" |
how many times what the position 6th, the competition was super league xvii and played was larger than 27? | columns:
- name: drawn
type: VARCHAR
- name: played
type: VARCHAR
- name: position
type: VARCHAR
- name: competition
type: VARCHAR
table: table_name_22
| SELECT COUNT(drawn) FROM table_name_22 WHERE position = "6th" AND competition = "super league xvii" AND played > 27 |
On what date was Wimbledon the home team? | columns:
- name: date
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_81
| SELECT date FROM table_name_81 WHERE home_team = "wimbledon" |
What is the earliest date with Great Expectations label with LP format? | columns:
- name: date
type: INTEGER
- name: label
type: VARCHAR
- name: format
type: VARCHAR
table: table_name_92
| SELECT MIN(date) FROM table_name_92 WHERE label = "great expectations" AND format = "lp" |
During Game 2, which position did Andrew Farrar play? | columns:
- name: position
type: VARCHAR
- name: game_2
type: VARCHAR
table: table_name_20
| SELECT position FROM table_name_20 WHERE game_2 = "andrew farrar" |
What is the Time of the Athlete in Lane 4? | columns:
- name: time
type: VARCHAR
- name: lane
type: VARCHAR
table: table_name_34
| SELECT COUNT(time) FROM table_name_34 WHERE lane = 4 |
What is Timo Lehkonen's highest pick number? | columns:
- name: pick__number
type: INTEGER
- name: player
type: VARCHAR
table: table_2850912_5
| SELECT MAX(pick__number) FROM table_2850912_5 WHERE player = "Timo Lehkonen" |
What is Circuit, when Team is "R.J.MacArthur Onslow", and when City / State is "Sydney , New South Wales"? | columns:
- name: circuit
type: VARCHAR
- name: team
type: VARCHAR
- name: city___state
type: VARCHAR
table: table_name_54
| SELECT circuit FROM table_name_54 WHERE team = "r.j.macarthur onslow" AND city___state = "sydney , new south wales" |
Who directed the episode that was watched by 6.62 million U.S. viewers? | columns:
- name: directed_by
type: VARCHAR
- name: us_viewers__millions_
type: VARCHAR
table: table_22181917_2
| SELECT directed_by FROM table_22181917_2 WHERE us_viewers__millions_ = "6.62" |
Which Episode had 9.1 million viewers? | columns:
- name: episode
type: VARCHAR
- name: viewers__in_millions_
type: VARCHAR
table: table_name_65
| SELECT episode FROM table_name_65 WHERE viewers__in_millions_ = "9.1" |
What was Nolan Henke's To par when he placed in t3? | columns:
- name: to_par
type: VARCHAR
- name: place
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_96
| SELECT to_par FROM table_name_96 WHERE place = "t3" AND player = "nolan henke" |
Which December is the lowest one that has Points of 52? | columns:
- name: december
type: INTEGER
- name: points
type: VARCHAR
table: table_name_96
| SELECT MIN(december) FROM table_name_96 WHERE points = 52 |
Which Opponent is on October of 29? | columns:
- name: opponent
type: VARCHAR
- name: october
type: VARCHAR
table: table_name_66
| SELECT opponent FROM table_name_66 WHERE october = 29 |
What is every original air date for series# of 26? | columns:
- name: original_airdate
type: VARCHAR
- name: series__number
type: VARCHAR
table: table_26866205_1
| SELECT original_airdate FROM table_26866205_1 WHERE series__number = 26 |
Who was the director that had a recipient of Redbag Pictures Ltd? | columns:
- name: director_s_
type: VARCHAR
- name: recipient
type: VARCHAR
table: table_name_54
| SELECT director_s_ FROM table_name_54 WHERE recipient = "redbag pictures ltd" |
What is the abbreviation of the enzyme involved in carbamoyl phosphate synthetase i deficiency? | columns:
- name: abb
type: VARCHAR
- name: disorder
type: VARCHAR
table: table_name_30
| SELECT abb FROM table_name_30 WHERE disorder = "carbamoyl phosphate synthetase i deficiency" |
What is the home record for the Auxerre club? | columns:
- name: home
type: VARCHAR
- name: club
type: VARCHAR
table: table_name_34
| SELECT home FROM table_name_34 WHERE club = "auxerre" |
What is the oppenent when the score was 5–0? | columns:
- name: opponent
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_70
| SELECT opponent FROM table_name_70 WHERE score = "5–0" |
If the poverty rate is 12.9%, what is the county? | columns:
- name: county
type: VARCHAR
- name: poverty_rate
type: VARCHAR
table: table_22815568_6
| SELECT county FROM table_22815568_6 WHERE poverty_rate = "12.9%" |
When indonesia is the country what is the rank of 2010? | columns:
- name: rank_2010
type: VARCHAR
- name: country
type: VARCHAR
table: table_293465_1
| SELECT rank_2010 FROM table_293465_1 WHERE country = "Indonesia" |
Who is the team that has played more than 18 games and has 6 losses? | columns:
- name: team_name
type: VARCHAR
- name: losses
type: VARCHAR
- name: games
type: VARCHAR
table: table_name_97
| SELECT team_name FROM table_name_97 WHERE losses = 6 AND games > 18 |
Who had the most assists agains New Orleans? | columns:
- name: high_assists
type: VARCHAR
- name: team
type: VARCHAR
table: table_27755603_7
| SELECT high_assists FROM table_27755603_7 WHERE team = "New Orleans" |
How many games were played? | columns:
- name: played
type: INTEGER
table: table_14911550_5
| SELECT MIN(played) FROM table_14911550_5 |
Who is the Shirt Back Sponsor if the Shorts Sponsor is Telestet? | columns:
- name: shirt_back_sponsor
type: VARCHAR
- name: shorts_sponsor
type: VARCHAR
table: table_name_69
| SELECT shirt_back_sponsor FROM table_name_69 WHERE shorts_sponsor = "telestet" |
What is Jockey, when Time is 1:15.89? | columns:
- name: jockey
type: VARCHAR
- name: time
type: VARCHAR
table: table_name_55
| SELECT jockey FROM table_name_55 WHERE time = "1:15.89" |
Who was the opponent when the record recorded was 64-78? | columns:
- name: opponent
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_51
| SELECT opponent FROM table_name_51 WHERE record = "64-78" |
What is the average Area (in km²), when Markatal is less than 0? | columns:
- name: "area__in_km\xB2_"
type: INTEGER
- name: markatal
type: INTEGER
table: table_name_81
| SELECT AVG(area__in_km²_) FROM table_name_81 WHERE markatal < 0 |
What is the purpose for the katherine freq of 8rn? | columns:
- name: purpose
type: VARCHAR
- name: freq_currently
type: VARCHAR
- name: area_served
type: VARCHAR
table: table_name_50
| SELECT purpose FROM table_name_50 WHERE freq_currently = "8rn" AND area_served = "katherine" |
Which Winner has a Winter Olympics of 1968? | columns:
- name: winner
type: VARCHAR
- name: winter_olympics
type: VARCHAR
table: table_name_31
| SELECT winner FROM table_name_31 WHERE winter_olympics = "1968" |
When st kilda was playing at home what was the away teams score? | columns:
- name: away_team
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_23
| SELECT away_team AS score FROM table_name_23 WHERE home_team = "st kilda" |
Name the copaxone with mitoxantrone of no and betaseron (beta-1b) of no | columns:
- name: copaxone
type: VARCHAR
- name: mitoxantrone
type: VARCHAR
- name: betaseron__beta_1b_
type: VARCHAR
table: table_name_13
| SELECT copaxone FROM table_name_13 WHERE mitoxantrone = "no" AND betaseron__beta_1b_ = "no" |
What is the lowest Tournaments, when Name is "Baruto"? | columns:
- name: tournaments
type: INTEGER
- name: name
type: VARCHAR
table: table_name_76
| SELECT MIN(tournaments) FROM table_name_76 WHERE name = "baruto" |
Name the Event of the Games of 1950 auckland and a Medal of bronze? | columns:
- name: event
type: VARCHAR
- name: games
type: VARCHAR
- name: medal
type: VARCHAR
table: table_name_60
| SELECT event FROM table_name_60 WHERE games = "1950 auckland" AND medal = "bronze" |
WHAT IS THE MOVING TO LOCATION WITH BEL AS COUNTRY? | columns:
- name: moving_to
type: VARCHAR
- name: country
type: VARCHAR
table: table_name_27
| SELECT moving_to FROM table_name_27 WHERE country = "bel" |
What is the episode number where the English title is Pilot? | columns:
- name: number_of_episode
type: VARCHAR
- name: title__english_
type: VARCHAR
table: table_1481865_1
| SELECT number_of_episode FROM table_1481865_1 WHERE title__english_ = "Pilot" |
Which Round has a Player of anna chakvetadze? | columns:
- name: round
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_23
| SELECT round FROM table_name_23 WHERE player = "anna chakvetadze" |
What date was the record 21-11? | columns:
- name: date
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_43
| SELECT date FROM table_name_43 WHERE record = "21-11" |
Name the unemployment rate for 34024 | columns:
- name: unemployment_rate
type: VARCHAR
- name: population
type: VARCHAR
table: table_22815568_12
| SELECT COUNT(unemployment_rate) FROM table_22815568_12 WHERE population = 34024 |
On what day was game 2 played? | columns:
- name: date
type: VARCHAR
- name: game
type: VARCHAR
table: table_name_56
| SELECT date FROM table_name_56 WHERE game = 2 |
What is the qual 1 for the best of 1:18.067? | columns:
- name: qual_1
type: VARCHAR
- name: best
type: VARCHAR
table: table_name_49
| SELECT qual_1 FROM table_name_49 WHERE best = "1:18.067" |
What team played at lake oval while away? | columns:
- name: away_team
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_51
| SELECT away_team FROM table_name_51 WHERE venue = "lake oval" |
What does the word "frog"in English translate to in Italian? | columns:
- name: italian
type: VARCHAR
- name: english
type: VARCHAR
table: table_2077192_2
| SELECT italian FROM table_2077192_2 WHERE english = "frog" |
Who was the incumbent in the Kentucky 8 district? | columns:
- name: incumbent
type: VARCHAR
- name: district
type: VARCHAR
table: table_2668367_7
| SELECT incumbent FROM table_2668367_7 WHERE district = "Kentucky 8" |
What is the 2000-2001 Team with a Jersey # that is 19? | columns:
- name: jersey__number
type: VARCHAR
table: table_name_15
| SELECT 2000 AS _2001_team FROM table_name_15 WHERE jersey__number = 19 |
Which Opponents have a Year of 1998–99, and a Team of aston villa? | columns:
- name: opponents
type: VARCHAR
- name: year
type: VARCHAR
- name: team
type: VARCHAR
table: table_name_23
| SELECT opponents FROM table_name_23 WHERE year = "1998–99" AND team = "aston villa" |
name the team for 36-29 record | columns:
- name: team
type: VARCHAR
- name: record
type: VARCHAR
table: table_27902171_8
| SELECT team FROM table_27902171_8 WHERE record = "36-29" |
Name the team for oct 30, 1989 | columns:
- name: team__b_
type: VARCHAR
- name: match_date
type: VARCHAR
table: table_1594772_2
| SELECT team__b_ FROM table_1594772_2 WHERE match_date = "Oct 30, 1989" |
What is the average wins has Top-25 less than 0? | columns:
- name: wins
type: INTEGER
- name: top_25
type: INTEGER
table: table_name_66
| SELECT AVG(wins) FROM table_name_66 WHERE top_25 < 0 |
What years did Representative Frank A. Oliver serve? | columns:
- name: years
type: VARCHAR
- name: representative
type: VARCHAR
table: table_name_70
| SELECT years FROM table_name_70 WHERE representative = "frank a. oliver" |
What is aggressive rider Richie Porte's team classifaction? | columns:
- name: team_classification
type: VARCHAR
- name: aggressive_rider
type: VARCHAR
table: table_29332810_14
| SELECT team_classification FROM table_29332810_14 WHERE aggressive_rider = "Richie Porte" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.