question stringlengths 12 243 | context stringlengths 45 517 | answer stringlengths 32 484 |
|---|---|---|
Name the year when start was 32 | columns:
- name: year
type: VARCHAR
- name: start
type: VARCHAR
table: table_name_78
| SELECT year FROM table_name_78 WHERE start = 32 |
What's the compression ratio when the vin code is c? | columns:
- name: vin_code
type: VARCHAR
table: table_name_38
| SELECT "c" AS ompression_ratio FROM table_name_38 WHERE vin_code = "c" |
If the grand average is 12.76-202, who is the player? | columns:
- name: players
type: VARCHAR
- name: grand_average
type: VARCHAR
table: table_27533947_1
| SELECT players FROM table_27533947_1 WHERE grand_average = "12.76-202" |
Which Tries against have Points against larger than 109? | columns:
- name: tries_against
type: INTEGER
- name: points_against
type: INTEGER
table: table_name_9
| SELECT MAX(tries_against) FROM table_name_9 WHERE points_against > 109 |
what is the date when the competition is 1996 tiger cup and the result is drew? | columns:
- name: date
type: VARCHAR
- name: competition
type: VARCHAR
- name: result
type: VARCHAR
table: table_name_60
| SELECT date FROM table_name_60 WHERE competition = "1996 tiger cup" AND result = "drew" |
How many people ha Romanian as their mother tongue in 2006? | columns:
- name: population__2006_
type: INTEGER
- name: mother_tongue
type: VARCHAR
table: table_name_12
| SELECT MAX(population__2006_) FROM table_name_12 WHERE mother_tongue = "romanian" |
Where is the company with estimated revenue of 33.3 billion headquartered? | columns:
- name: headquarters_city
type: VARCHAR
- name: revenue__$billions__2012_estimate
type: VARCHAR
table: table_21926985_2
| SELECT headquarters_city FROM table_21926985_2 WHERE revenue__$billions__2012_estimate = "33.3" |
The episode where the director is Gene Reynolds has who as the writer? | columns:
- name: writer
type: VARCHAR
- name: director
type: VARCHAR
table: table_26866233_1
| SELECT writer FROM table_26866233_1 WHERE director = "Gene Reynolds" |
Who is the GamePlan when Arabella Lazenby is the RolePlay actor? | columns:
- name: gameplan
type: VARCHAR
- name: roleplay
type: VARCHAR
table: table_name_29
| SELECT gameplan FROM table_name_29 WHERE roleplay = "arabella lazenby" |
What chassis had fewer than 0 points in a year before 1954? | columns:
- name: chassis
type: VARCHAR
- name: year
type: VARCHAR
- name: points
type: VARCHAR
table: table_name_39
| SELECT chassis FROM table_name_39 WHERE year < 1954 AND points = 0 |
What is the vote number when immunity listed as David and reward is listed as none? | columns:
- name: vote
type: VARCHAR
- name: immunity
type: VARCHAR
- name: reward
type: VARCHAR
table: table_28742659_2
| SELECT vote FROM table_28742659_2 WHERE immunity = "David" AND reward = "None" |
Which railway had the earliest build date and a disposal of "Scrapped 1941?" | columns:
- name: build_date
type: INTEGER
- name: disposal
type: VARCHAR
table: table_name_48
| SELECT MIN(build_date) FROM table_name_48 WHERE disposal = "scrapped 1941" |
What number is Tony Dixon? | columns:
- name: number
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_22
| SELECT number FROM table_name_22 WHERE name = "tony dixon" |
What is the frequency of the soft adult contemporary stations? | columns:
- name: frequency
type: VARCHAR
- name: format
type: VARCHAR
table: table_name_14
| SELECT frequency FROM table_name_14 WHERE format = "soft adult contemporary" |
Can you tell me the Annual change that has the Location of manaus? | columns:
- name: annual_change
type: VARCHAR
- name: location
type: VARCHAR
table: table_name_48
| SELECT annual_change FROM table_name_48 WHERE location = "manaus" |
What is the Place when the To par was +3 and Score was 74-73=147? | columns:
- name: place
type: VARCHAR
- name: to_par
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_46
| SELECT place FROM table_name_46 WHERE to_par = "+3" AND score = 74 - 73 = 147 |
What was the score of the game when the Blue Jays were 55-39? | columns:
- name: score
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_86
| SELECT score FROM table_name_86 WHERE record = "55-39" |
What is the description when the reserve is Half Moon Caye? | columns:
- name: description
type: VARCHAR
- name: reserve
type: VARCHAR
table: table_name_40
| SELECT description FROM table_name_40 WHERE reserve = "half moon caye" |
Who is the incumbent democratic party in district florida 11? | columns:
- name: incumbent
type: VARCHAR
- name: party
type: VARCHAR
- name: district
type: VARCHAR
table: table_1805191_10
| SELECT incumbent FROM table_1805191_10 WHERE party = "Democratic" AND district = "Florida 11" |
How many drivers were there for Samax Motorsport? | columns:
- name: driver
type: VARCHAR
- name: team
type: VARCHAR
table: table_17319931_1
| SELECT COUNT(driver) FROM table_17319931_1 WHERE team = "SAMAX Motorsport" |
Who got the high rebounds if Brook Lopez (15) earned the high points? | columns:
- name: high_rebounds
type: VARCHAR
- name: high_points
type: VARCHAR
table: table_27700375_8
| SELECT high_rebounds FROM table_27700375_8 WHERE high_points = "Brook Lopez (15)" |
Name the result for dolly parton | columns:
- name: result
type: VARCHAR
- name: original_artist
type: VARCHAR
table: table_19508635_1
| SELECT result FROM table_19508635_1 WHERE original_artist = "Dolly Parton" |
Which district had Paul B. Dague as the incumbent? | columns:
- name: district
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_1342149_38
| SELECT district FROM table_1342149_38 WHERE incumbent = "Paul B. Dague" |
Round of 9 involved what name? | columns:
- name: name
type: VARCHAR
- name: round
type: VARCHAR
table: table_name_67
| SELECT name FROM table_name_67 WHERE round = 9 |
when mixed doubles is zheng bo ma jin and womens singles is wang yihan, what was the tour? | columns:
- name: tour
type: VARCHAR
- name: mixed_doubles
type: VARCHAR
- name: womens_singles
type: VARCHAR
table: table_21001903_2
| SELECT tour FROM table_21001903_2 WHERE mixed_doubles = "Zheng Bo Ma Jin" AND womens_singles = "Wang Yihan" |
Notre-Dame-De-Lourdes has what average area km 2? | columns:
- name: area_km_2
type: INTEGER
- name: official_name
type: VARCHAR
table: table_name_46
| SELECT AVG(area_km_2) FROM table_name_46 WHERE official_name = "notre-dame-de-lourdes" |
What are the positions in the college of Alberta? | columns:
- name: position
type: VARCHAR
- name: college
type: VARCHAR
table: table_15817998_5
| SELECT position FROM table_15817998_5 WHERE college = "Alberta" |
What is the Date of the Int'l Debut of 1967? | columns:
- name: date
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_66
| SELECT date FROM table_name_66 WHERE year = "1967" |
When Douglas Soares had the fastest lap, what was the report? | columns:
- name: report
type: VARCHAR
- name: fastest_lap
type: VARCHAR
table: table_name_39
| SELECT report FROM table_name_39 WHERE fastest_lap = "douglas soares" |
How many FA cup goals did dick taylor score in the year that he had 0 league goals? | columns:
- name: fa_cup_goals
type: INTEGER
- name: name
type: VARCHAR
- name: league_goals
type: VARCHAR
table: table_name_10
| SELECT MIN(fa_cup_goals) FROM table_name_10 WHERE name = "dick taylor" AND league_goals < 0 |
What is every value for % 20-39 if % 0-19 is 21,11%? | columns:
- name: _percentage_20_39
type: VARCHAR
- name: _percentage_0_19
type: VARCHAR
table: table_23606500_4
| SELECT _percentage_20_39 FROM table_23606500_4 WHERE _percentage_0_19 = "21,11%" |
Which Lungchang has a Halang of ʒɯ², and a Rera of ʒo²? | columns:
- name: lungchang
type: VARCHAR
- name: halang
type: VARCHAR
- name: rera
type: VARCHAR
table: table_name_85
| SELECT lungchang FROM table_name_85 WHERE halang = "ʒɯ²" AND rera = "ʒo²" |
What is the score points when the total is 16? | columns:
- name: score_points
type: VARCHAR
- name: total
type: VARCHAR
table: table_name_35
| SELECT score_points FROM table_name_35 WHERE total = "16" |
What was head count in 2010 where the farm production is 6.9? | columns:
- name: agri_culture_b
type: VARCHAR
table: table_13618358_1
| SELECT MAX(2010 AS _population__000_) FROM table_13618358_1 WHERE agri_culture_b = "6.9" |
Tell me the circuit for 10 may for targa florio | columns:
- name: circuit
type: VARCHAR
- name: date
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_79
| SELECT circuit FROM table_name_79 WHERE date = "10 may" AND name = "targa florio" |
At what latitude can you find the diameter (km) of 500.0? | columns:
- name: latitude
type: VARCHAR
- name: diameter__km_
type: VARCHAR
table: table_16799784_11
| SELECT latitude FROM table_16799784_11 WHERE diameter__km_ = "500.0" |
Which name has an Area of makarewa? | columns:
- name: name
type: VARCHAR
- name: area
type: VARCHAR
table: table_name_65
| SELECT name FROM table_name_65 WHERE area = "makarewa" |
For teams that played 5 games, what was the smallest number of wins? | columns:
- name: win
type: INTEGER
- name: played
type: VARCHAR
table: table_14288212_1
| SELECT MIN(win) FROM table_14288212_1 WHERE played = 5 |
what is the highest rank for east germany with points of 128.98 and places less than 70? | columns:
- name: rank
type: INTEGER
- name: places
type: VARCHAR
- name: nation
type: VARCHAR
- name: points
type: VARCHAR
table: table_name_40
| SELECT MAX(rank) FROM table_name_40 WHERE nation = "east germany" AND points = 128.98 AND places < 70 |
What is stephen arigbabu's height? | columns:
- name: height
type: INTEGER
- name: player
type: VARCHAR
table: table_name_52
| SELECT MIN(height) FROM table_name_52 WHERE player = "stephen arigbabu" |
What is listed under chister tornell when karianne gulliksen is 7? | columns:
- name: christer_tornell
type: INTEGER
- name: karianne_gulliksen
type: VARCHAR
table: table_28677723_10
| SELECT MIN(christer_tornell) FROM table_28677723_10 WHERE karianne_gulliksen = 7 |
What was the score for the episode with Matt Smith as Andrew and Jack's guest? | columns:
- name: scores
type: VARCHAR
- name: andrew_and_jacks_guest
type: VARCHAR
table: table_29141354_7
| SELECT scores FROM table_29141354_7 WHERE andrew_and_jacks_guest = "Matt Smith" |
What pick was Dominic Uy? | columns:
- name: pick
type: INTEGER
- name: player
type: VARCHAR
table: table_name_48
| SELECT AVG(pick) FROM table_name_48 WHERE player = "dominic uy" |
At which stadium did the Los Angeles Raiders play as the visiting team? | columns:
- name: stadium
type: VARCHAR
- name: visiting_team
type: VARCHAR
table: table_name_85
| SELECT stadium FROM table_name_85 WHERE visiting_team = "los angeles raiders" |
Which category was Gene Barry nominated in? | columns:
- name: category
type: VARCHAR
- name: result
type: VARCHAR
- name: nominee
type: VARCHAR
table: table_name_54
| SELECT category FROM table_name_54 WHERE result = "nominated" AND nominee = "gene barry" |
What was the total number of weeks where the game played Ivor Wynne Stadium? | columns:
- name: week
type: VARCHAR
- name: location
type: VARCHAR
table: table_21761882_4
| SELECT COUNT(week) FROM table_21761882_4 WHERE location = "Ivor Wynne Stadium" |
What is the record for the game played on September 27? | columns:
- name: record
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_26
| SELECT record FROM table_name_26 WHERE date = "september 27" |
What is the western word for "latrones" in Latin? | columns:
- name: western
type: VARCHAR
- name: latin
type: VARCHAR
table: table_26614365_1
| SELECT western FROM table_26614365_1 WHERE latin = "latrones" |
what are all the hometown where the average age is 16 | columns:
- name: hometown
type: VARCHAR
- name: age_s_
type: VARCHAR
table: table_26267849_2
| SELECT hometown FROM table_26267849_2 WHERE age_s_ = "16" |
Which Third has a Champion of metalurh novomoskovsk? | columns:
- name: third
type: VARCHAR
- name: champion
type: VARCHAR
table: table_name_20
| SELECT third FROM table_name_20 WHERE champion = "metalurh novomoskovsk" |
At the UFC 78, what is the average round when the time is 5:00? | columns:
- name: round
type: INTEGER
- name: time
type: VARCHAR
- name: event
type: VARCHAR
table: table_name_32
| SELECT AVG(round) FROM table_name_32 WHERE time = "5:00" AND event = "ufc 78" |
With 8 as the rank, and a total of more than 2 medals what is the average bronze medals? | columns:
- name: bronze
type: INTEGER
- name: rank
type: VARCHAR
- name: total
type: VARCHAR
table: table_name_34
| SELECT AVG(bronze) FROM table_name_34 WHERE rank = "8" AND total > 2 |
Which CONMEBOL 1995 has river plate team? | columns:
- name: conmebol_1995
type: VARCHAR
- name: team
type: VARCHAR
table: table_name_61
| SELECT conmebol_1995 FROM table_name_61 WHERE team = "river plate" |
When was the song titled if you talk in your sleep released? | columns:
- name: release_date
type: VARCHAR
- name: song_title
type: VARCHAR
table: table_name_34
| SELECT release_date FROM table_name_34 WHERE song_title = "if you talk in your sleep" |
What is the identifier that has 50,000 watts of power? | columns:
- name: identifier
type: VARCHAR
- name: power
type: VARCHAR
table: table_name_45
| SELECT identifier FROM table_name_45 WHERE power = "50,000 watts" |
How many Field goals have Points larger than 5, and Touchdowns larger than 2, and an Extra points smaller than 0? | columns:
- name: field_goals
type: VARCHAR
- name: extra_points
type: VARCHAR
- name: points
type: VARCHAR
- name: touchdowns
type: VARCHAR
table: table_name_33
| SELECT COUNT(field_goals) FROM table_name_33 WHERE points > 5 AND touchdowns > 2 AND extra_points < 0 |
Name the total number of winners for allianz championship | columns:
- name: winner
type: VARCHAR
- name: tournament
type: VARCHAR
table: table_25938117_1
| SELECT COUNT(winner) FROM table_25938117_1 WHERE tournament = "Allianz Championship" |
Who was the home team at Kardinia Park? | columns:
- name: home_team
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_78
| SELECT home_team FROM table_name_78 WHERE venue = "kardinia park" |
What is the model for Thor's Hammer which is listed as operating? | columns:
- name: model
type: VARCHAR
- name: status
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_16
| SELECT model FROM table_name_16 WHERE status = "operating" AND name = "thor's hammer" |
what is the least laps when the driver is rubens barrichello and the grid is less than 12? | columns:
- name: laps
type: INTEGER
- name: driver
type: VARCHAR
- name: grid
type: VARCHAR
table: table_name_5
| SELECT MIN(laps) FROM table_name_5 WHERE driver = "rubens barrichello" AND grid < 12 |
Which club has a try bonus of 2 ? | columns:
- name: club
type: VARCHAR
- name: try_bonus
type: VARCHAR
table: table_name_8
| SELECT club FROM table_name_8 WHERE try_bonus = "2" |
What is the highest wins that has 350cc as the class, yamaha for the team, with points less than 37, and a year after 1979? | columns:
- name: wins
type: INTEGER
- name: year
type: VARCHAR
- name: points
type: VARCHAR
- name: class
type: VARCHAR
- name: team
type: VARCHAR
table: table_name_7
| SELECT MAX(wins) FROM table_name_7 WHERE class = "350cc" AND team = "yamaha" AND points < 37 AND year > 1979 |
On what Surface was the match against Ilija Bozoljac played? | columns:
- name: surface
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_9
| SELECT surface FROM table_name_9 WHERE opponent = "ilija bozoljac" |
What is the frequency of the rail with an origin of Ranchi? | columns:
- name: frequency__inbound_outbound_
type: VARCHAR
- name: origin
type: VARCHAR
table: table_name_72
| SELECT frequency__inbound_outbound_ FROM table_name_72 WHERE origin = "ranchi" |
What is the game number held on May 2? | columns:
- name: game
type: INTEGER
- name: date
type: VARCHAR
table: table_name_51
| SELECT AVG(game) FROM table_name_51 WHERE date = "may 2" |
Name the surface for australian open for winner | columns:
- name: surface
type: VARCHAR
- name: championship
type: VARCHAR
- name: outcome
type: VARCHAR
table: table_2009095_2
| SELECT surface FROM table_2009095_2 WHERE championship = "Australian Open" AND outcome = "Winner" |
When did alfonse d'amore compete? | columns:
- name: date
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_59
| SELECT date FROM table_name_59 WHERE opponent = "alfonse d'amore" |
What is the Name of the Building with 36 or more Floors with Years as tallest of 1986–1992? | columns:
- name: name
type: VARCHAR
- name: floors
type: VARCHAR
- name: years_as_tallest
type: VARCHAR
table: table_name_27
| SELECT name FROM table_name_27 WHERE floors > 36 AND years_as_tallest = "1986–1992" |
What is the population of the year featuring an 87.5% German population? | columns:
- name: population
type: VARCHAR
- name: germans
type: VARCHAR
table: table_name_51
| SELECT population FROM table_name_51 WHERE germans = "87.5%" |
Which Goals have a Player of david mcllwain, and Games larger than 52? | columns:
- name: goals
type: INTEGER
- name: player
type: VARCHAR
- name: games
type: VARCHAR
table: table_name_7
| SELECT MAX(goals) FROM table_name_7 WHERE player = "david mcllwain" AND games > 52 |
How often is the table tennis competition held? | columns:
- name: held_every
type: VARCHAR
- name: sport
type: VARCHAR
table: table_name_13
| SELECT held_every FROM table_name_13 WHERE sport = "table tennis" |
What was the average bronze when gold was larger than 1 and silver was larger than 2? | columns:
- name: bronze
type: INTEGER
- name: gold
type: VARCHAR
- name: silver
type: VARCHAR
table: table_name_42
| SELECT AVG(bronze) FROM table_name_42 WHERE gold > 1 AND silver > 2 |
What is the total number of Week, when Opponent is At Chicago Bears, and when Attendance is greater than 49,070? | columns:
- name: week
type: VARCHAR
- name: opponent
type: VARCHAR
- name: attendance
type: VARCHAR
table: table_name_81
| SELECT COUNT(week) FROM table_name_81 WHERE opponent = "at chicago bears" AND attendance > 49 OFFSET 070 |
What club scored 143 goals? | columns:
- name: club
type: VARCHAR
- name: goals
type: VARCHAR
table: table_name_71
| SELECT club FROM table_name_71 WHERE goals = "143" |
Which Model number has a Front Side Bus of 100mhz, a L2-Cache of 64kib and a Multiplier of 8.5×? | columns:
- name: model_number
type: VARCHAR
- name: multiplier
type: VARCHAR
- name: front_side_bus
type: VARCHAR
- name: l2_cache
type: VARCHAR
table: table_name_98
| SELECT model_number FROM table_name_98 WHERE front_side_bus = "100mhz" AND l2_cache = "64kib" AND multiplier = "8.5×" |
What's the Years as tallest with a Street address of 324 E. 11th Street? | columns:
- name: years_as_tallest
type: VARCHAR
- name: street_address
type: VARCHAR
table: table_name_12
| SELECT years_as_tallest FROM table_name_12 WHERE street_address = "324 e. 11th street" |
What is the sum of To Par, when Player is "Bob Rosburg"? | columns:
- name: to_par
type: INTEGER
- name: player
type: VARCHAR
table: table_name_4
| SELECT SUM(to_par) FROM table_name_4 WHERE player = "bob rosburg" |
What is the visitor team of the game with Chicago as the home team? | columns:
- name: visitor
type: VARCHAR
- name: home
type: VARCHAR
table: table_name_74
| SELECT visitor FROM table_name_74 WHERE home = "chicago" |
What is the party affiliation of the incumbent Robert Cramer? | columns:
- name: party
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_1805191_2
| SELECT party FROM table_1805191_2 WHERE incumbent = "Robert Cramer" |
What is the average number of against with less than 10 losses, more than 0 draws, and more than 7 wins? | columns:
- name: against
type: INTEGER
- name: wins
type: VARCHAR
- name: losses
type: VARCHAR
- name: draws
type: VARCHAR
table: table_name_74
| SELECT AVG(against) FROM table_name_74 WHERE losses < 10 AND draws > 0 AND wins > 7 |
When Cathi O'Malley was featured in Week 3, who was the cyber girl for Week 5? | columns:
- name: week_5
type: VARCHAR
- name: week_3
type: VARCHAR
table: table_name_96
| SELECT week_5 FROM table_name_96 WHERE week_3 = "cathi o'malley" |
What is the nationality of Shaun Sabol? | columns:
- name: nationality
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_94
| SELECT nationality FROM table_name_94 WHERE player = "shaun sabol" |
Tell me the notes with method of points and event of adcc 2001 absolute with result of loss | columns:
- name: notes
type: VARCHAR
- name: result
type: VARCHAR
- name: method
type: VARCHAR
- name: event
type: VARCHAR
table: table_name_72
| SELECT notes FROM table_name_72 WHERE method = "points" AND event = "adcc 2001 absolute" AND result = "loss" |
What is the location and attendance total from the game on December 1? | columns:
- name: location_attendance
type: VARCHAR
- name: december
type: VARCHAR
table: table_27539808_5
| SELECT location_attendance FROM table_27539808_5 WHERE december = 1 |
What is the To par when Lanny Wadkins is the player? | columns:
- name: to_par
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_66
| SELECT to_par FROM table_name_66 WHERE player = "lanny wadkins" |
What is the number in the season of the episode with a production code of 2-05? | columns:
- name: no_in_season
type: VARCHAR
- name: prod_code
type: VARCHAR
table: table_234886_3
| SELECT COUNT(no_in_season) FROM table_234886_3 WHERE prod_code = "2-05" |
Who was the opponent that played on may 12? | columns:
- name: opponent
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_32
| SELECT opponent FROM table_name_32 WHERE date = "may 12" |
Name the most number of pyewipe | columns:
- name: number_at_pyewipe
type: INTEGER
table: table_15608800_2
| SELECT MAX(number_at_pyewipe) FROM table_15608800_2 |
How many different popular vote counts were there for the candidate Rick Perry? | columns:
- name: popular_vote
type: VARCHAR
- name: candidate
type: VARCHAR
table: table_20246201_9
| SELECT COUNT(popular_vote) FROM table_20246201_9 WHERE candidate = "Rick Perry" |
What's Australia's time in the heat more than 4? | columns:
- name: time
type: VARCHAR
- name: heat
type: VARCHAR
- name: nationality
type: VARCHAR
table: table_name_43
| SELECT time FROM table_name_43 WHERE heat > 4 AND nationality = "australia" |
Which Date has Opponents in the final of valeria casillo lilly raffa? | columns:
- name: date
type: VARCHAR
- name: opponents_in_the_final
type: VARCHAR
table: table_name_59
| SELECT date FROM table_name_59 WHERE opponents_in_the_final = "valeria casillo lilly raffa" |
Which lap number had a grid number of less than 17 when the driver was Giancarlo Fisichella? | columns:
- name: laps
type: VARCHAR
- name: grid
type: VARCHAR
- name: driver
type: VARCHAR
table: table_name_1
| SELECT COUNT(laps) FROM table_name_1 WHERE grid < 17 AND driver = "giancarlo fisichella" |
What is the Hanyu Pinyin with a density of 39.63? | columns:
- name: hanyu_pinyin
type: VARCHAR
- name: "density___km\xB2_"
type: VARCHAR
table: table_name_32
| SELECT hanyu_pinyin FROM table_name_32 WHERE density___km²_ = "39.63" |
Who is every young rider classification when Jelle Vanendert is the winner? | columns:
- name: young_rider_classification
type: VARCHAR
- name: winner
type: VARCHAR
table: table_25999087_2
| SELECT young_rider_classification FROM table_25999087_2 WHERE winner = "Jelle Vanendert" |
Name the proto oceanic for *fafine | columns:
- name: proto_oceanic
type: VARCHAR
- name: proto_polynesian
type: VARCHAR
table: table_15568886_14
| SELECT proto_oceanic FROM table_15568886_14 WHERE proto_polynesian = "*fafine" |
What is the sum number of years where the wheel arrangement of 0-4-0t? | columns:
- name: year_made
type: VARCHAR
- name: wheel_arrangement
type: VARCHAR
table: table_name_18
| SELECT COUNT(year_made) FROM table_name_18 WHERE wheel_arrangement = "0-4-0t" |
WHAT IS THE PICK WITH K POSITION AND OVERALL SMALLER THAN 181? | columns:
- name: pick
type: INTEGER
- name: position
type: VARCHAR
- name: overall
type: VARCHAR
table: table_name_40
| SELECT SUM(pick) FROM table_name_40 WHERE position = "k" AND overall < 181 |
What team placed sixth during the season where Western Australia placed fourth and Tasmania placed first? | columns:
- name: sixth
type: VARCHAR
- name: fourth
type: VARCHAR
- name: first
type: VARCHAR
table: table_name_91
| SELECT sixth FROM table_name_91 WHERE fourth = "western australia" AND first = "tasmania" |
Name the total number of high points for pepsi center 19,756 | columns:
- name: high_points
type: VARCHAR
- name: location_attendance
type: VARCHAR
table: table_23284271_6
| SELECT COUNT(high_points) FROM table_23284271_6 WHERE location_attendance = "Pepsi Center 19,756" |
Name the number of silver when gold is less than 1 and bronze is 0 when total is less than 2 | columns:
- name: silver
type: VARCHAR
- name: total
type: VARCHAR
- name: gold
type: VARCHAR
- name: bronze
type: VARCHAR
table: table_name_18
| SELECT COUNT(silver) FROM table_name_18 WHERE gold < 1 AND bronze = 0 AND total < 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.