question stringlengths 12 243 | context stringlengths 45 517 | answer stringlengths 32 484 |
|---|---|---|
Which country scored 70-68-71-71=280? | columns:
- name: country
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_29
| SELECT country FROM table_name_29 WHERE score = 70 - 68 - 71 - 71 = 280 |
Name the lowest Wins which has Points of 28, and a Year smaller than 1972? | columns:
- name: wins
type: INTEGER
- name: points
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_94
| SELECT MIN(wins) FROM table_name_94 WHERE points = 28 AND year < 1972 |
what is the score when the surface is hard and outcome is runner-up? | columns:
- name: score
type: VARCHAR
- name: surface
type: VARCHAR
- name: outcome
type: VARCHAR
table: table_name_85
| SELECT score FROM table_name_85 WHERE surface = "hard" AND outcome = "runner-up" |
What is the average grid with more than 23 laps? | columns:
- name: grid
type: INTEGER
- name: laps
type: INTEGER
table: table_name_56
| SELECT AVG(grid) FROM table_name_56 WHERE laps > 23 |
What is the area of the city with a density of 955.6? | columns:
- name: "area_km\xB2"
type: VARCHAR
- name: "density__hab_km\xB2_"
type: VARCHAR
table: table_name_72
| SELECT area_km² FROM table_name_72 WHERE density__hab_km²_ = "955.6" |
When was the University founded that joined in 1978? | columns:
- name: founded
type: INTEGER
- name: joined
type: VARCHAR
table: table_255188_1
| SELECT MAX(founded) FROM table_255188_1 WHERE joined = 1978 |
What is the Attendance of the game against Minnesota Vikings? | columns:
- name: attendance
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_87
| SELECT COUNT(attendance) FROM table_name_87 WHERE opponent = "minnesota vikings" |
Which Player has a To par of –2, and a Country of wales? | columns:
- name: player
type: VARCHAR
- name: to_par
type: VARCHAR
- name: country
type: VARCHAR
table: table_name_7
| SELECT player FROM table_name_7 WHERE to_par = "–2" AND country = "wales" |
Which nationality has a round of 1, and F position from Louisville? | columns:
- name: nationality
type: VARCHAR
- name: college
type: VARCHAR
- name: round
type: VARCHAR
- name: position
type: VARCHAR
table: table_name_15
| SELECT nationality FROM table_name_15 WHERE round = "1" AND position = "f" AND college = "louisville" |
Who is the together we can do more when democratic coalition is rené alinco ( ppd )? | columns:
- name: together_we_can_do_more
type: VARCHAR
- name: democratic_coalition
type: VARCHAR
table: table_2651755_1
| SELECT together_we_can_do_more FROM table_2651755_1 WHERE democratic_coalition = "René Alinco ( PPD )" |
Who was the rider when Fri 28 Aug was 24' 23.36 92.820mph? | columns:
- name: rider
type: VARCHAR
- name: fri_28_aug
type: VARCHAR
table: table_23465864_6
| SELECT rider FROM table_23465864_6 WHERE fri_28_aug = "24' 23.36 92.820mph" |
WHAT IS THE YEARS AS TALLEST WITH 01.0 10 light street? | columns:
- name: years_as_tallest
type: VARCHAR
- name: street_address
type: VARCHAR
table: table_name_81
| SELECT years_as_tallest FROM table_name_81 WHERE street_address = "01.0 10 light street" |
What is the smallest number of total medals for Georgia with 0 silver and 1 bronze? | columns:
- name: total
type: INTEGER
- name: bronze
type: VARCHAR
- name: silver
type: VARCHAR
- name: nation
type: VARCHAR
table: table_name_87
| SELECT MIN(total) FROM table_name_87 WHERE silver > 0 AND nation = "georgia" AND bronze < 1 |
What was the match number for Start Gniezno? | columns:
- name: match
type: VARCHAR
- name: team
type: VARCHAR
table: table_name_13
| SELECT match FROM table_name_13 WHERE team = "start gniezno" |
What is the highest Points, when Played is greater than 5? | columns:
- name: points
type: INTEGER
- name: played
type: INTEGER
table: table_name_30
| SELECT MAX(points) FROM table_name_30 WHERE played > 5 |
What is Jimmy Smith's opponent's record? | columns:
- name: record
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_70
| SELECT record FROM table_name_70 WHERE opponent = "jimmy smith" |
If the Vinto Municipality is 18630, what is the Quillacollo Municipality? | columns:
- name: quillacollo_municipality
type: INTEGER
- name: vinto_municipality
type: VARCHAR
table: table_2509113_2
| SELECT MAX(quillacollo_municipality) FROM table_2509113_2 WHERE vinto_municipality = 18630 |
Name the representative appointed by george w. bush with presentation of credentials 9 november 2007 | columns:
- name: representative
type: VARCHAR
- name: appointed_by
type: VARCHAR
- name: presentation_of_credentials
type: VARCHAR
table: table_name_65
| SELECT representative FROM table_name_65 WHERE appointed_by = "george w. bush" AND presentation_of_credentials = "9 november 2007" |
Which Assist/pass has a Score of 1-0, and a Goal of 5? | columns:
- name: assist_pass
type: VARCHAR
- name: score
type: VARCHAR
- name: goal
type: VARCHAR
table: table_name_85
| SELECT assist_pass FROM table_name_85 WHERE score = "1-0" AND goal = "5" |
What was the spending per capita when the revenue per capita was $7,755? | columns:
- name: spending_per_capita
type: VARCHAR
- name: revenue_per_capita
type: VARCHAR
table: table_14700336_1
| SELECT spending_per_capita FROM table_14700336_1 WHERE revenue_per_capita = "$7,755" |
How many cardiff wins have a draw greater than 27? | columns:
- name: cardiff_win
type: VARCHAR
- name: draw
type: INTEGER
table: table_name_26
| SELECT COUNT(cardiff_win) FROM table_name_26 WHERE draw > 27 |
How many points did Judd v8 has in 1989? | columns:
- name: points
type: VARCHAR
- name: engine
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_71
| SELECT COUNT(points) FROM table_name_71 WHERE engine = "judd v8" AND year = 1989 |
What is Cross Country, when Soccer is Ashland, when Volleyball is Wooster, and when School Year is 2006-07? | columns:
- name: cross_country
type: VARCHAR
- name: school_year
type: VARCHAR
- name: soccer
type: VARCHAR
- name: volleyball
type: VARCHAR
table: table_name_35
| SELECT cross_country FROM table_name_35 WHERE soccer = "ashland" AND volleyball = "wooster" AND school_year = "2006-07" |
What is the arena capacity of the arena in the town whose head coach is Yuriy Korotkevich? | columns:
- name: arena__capacity_
type: VARCHAR
- name: head_coach
type: VARCHAR
table: table_19526911_1
| SELECT COUNT(arena__capacity_) FROM table_19526911_1 WHERE head_coach = "Yuriy Korotkevich" |
Which player had 9 blocks? | columns:
- name: player
type: VARCHAR
- name: blocks
type: VARCHAR
table: table_25353861_5
| SELECT player FROM table_25353861_5 WHERE blocks = 9 |
Who was the previous champion of the title won on July 7, 2010? | columns:
- name: previous_champion_s_
type: VARCHAR
- name: date_won
type: VARCHAR
table: table_name_98
| SELECT previous_champion_s_ FROM table_name_98 WHERE date_won = "july 7, 2010" |
What is the name of the game with odds of winning 1 in 4.23 with a top prize of $15,000? | columns:
- name: game_name
type: VARCHAR
- name: odds_of_winning
type: VARCHAR
- name: top_prize
type: VARCHAR
table: table_name_92
| SELECT game_name FROM table_name_92 WHERE odds_of_winning = "1 in 4.23" AND top_prize = "$15,000" |
What is the latest round for Pohang Steelers as the away team? | columns:
- name: round
type: INTEGER
- name: away_team
type: VARCHAR
table: table_name_28
| SELECT MAX(round) FROM table_name_28 WHERE away_team = "pohang steelers" |
When the stolen ends equal 5 whats the amount of pa? | columns:
- name: pa
type: INTEGER
- name: stolen_ends
type: VARCHAR
table: table_15597975_2
| SELECT MAX(pa) FROM table_15597975_2 WHERE stolen_ends = 5 |
What date has an against of pohang steelers? | columns:
- name: date
type: VARCHAR
- name: against
type: VARCHAR
table: table_name_2
| SELECT date FROM table_name_2 WHERE against = "pohang steelers" |
Which country has a GDP (nominal) of $29.9 billion? | columns:
- name: country
type: VARCHAR
- name: gdp__nominal_
type: VARCHAR
table: table_name_30
| SELECT country FROM table_name_30 WHERE gdp__nominal_ = "$29.9 billion" |
How many live births per year do people with a life expectancy of 65.1 have? | columns:
- name: live_births_per_year
type: VARCHAR
- name: life_expectancy_total
type: VARCHAR
table: table_27434_2
| SELECT live_births_per_year FROM table_27434_2 WHERE life_expectancy_total = "65.1" |
How many different genres appear for the Jimi Hendrix Experience? | columns:
- name: genre
type: VARCHAR
- name: artist
type: VARCHAR
table: table_26488540_1
| SELECT COUNT(genre) FROM table_26488540_1 WHERE artist = "The Jimi Hendrix Experience" |
What opponents have a record of 90-70? | columns:
- name: opponent
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_34
| SELECT opponent FROM table_name_34 WHERE record = "90-70" |
How much Overall has a Pick # smaller than 20, and a Round smaller than 6? | columns:
- name: overall
type: INTEGER
- name: pick__number
type: VARCHAR
- name: round
type: VARCHAR
table: table_name_13
| SELECT SUM(overall) FROM table_name_13 WHERE pick__number < 20 AND round < 6 |
Name the D 46 which has a D 43 of majority→ | columns:
- name: d_46
type: VARCHAR
- name: d_43
type: VARCHAR
table: table_name_34
| SELECT d_46 FROM table_name_34 WHERE d_43 = "majority→" |
Tell me the score for Venue of tanteen recreation ground, st. george's | columns:
- name: score
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_43
| SELECT score FROM table_name_43 WHERE venue = "tanteen recreation ground, st. george's" |
On what date was god & guns released? | columns:
- name: date_of_release
type: VARCHAR
- name: title
type: VARCHAR
table: table_name_15
| SELECT date_of_release FROM table_name_15 WHERE title = "god & guns" |
Who was the "incumbent" of district south carolina 7? | columns:
- name: incumbent
type: VARCHAR
- name: district
type: VARCHAR
table: table_2668243_22
| SELECT incumbent FROM table_2668243_22 WHERE district = "South Carolina 7" |
How many tries did the player Paul Sykes take when he earned 0 points? | columns:
- name: tries
type: INTEGER
- name: player
type: VARCHAR
- name: points
type: VARCHAR
table: table_name_49
| SELECT MAX(tries) FROM table_name_49 WHERE player = "paul sykes" AND points > 0 |
What is the average number of games drawn among the teams that lost over 13 games? | columns:
- name: drawn
type: INTEGER
- name: lost
type: INTEGER
table: table_name_37
| SELECT AVG(drawn) FROM table_name_37 WHERE lost > 13 |
How many records show Utah as the opponent? | columns:
- name: record
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_22815265_1
| SELECT COUNT(record) FROM table_22815265_1 WHERE opponent = "Utah" |
Which language do 706 females speak? | columns:
- name: females
type: VARCHAR
- name: number
type: VARCHAR
table: table_name_10
| SELECT females FROM table_name_10 WHERE number = "706" |
What was the date of the Women's Individual Class 3? | columns:
- name: date
type: VARCHAR
- name: event
type: VARCHAR
table: table_name_73
| SELECT date FROM table_name_73 WHERE event = "women's individual class 3" |
Which Release Date has a Voltage Range of 1.148 v - 1.196 v? | columns:
- name: release_date
type: VARCHAR
- name: voltage_range
type: VARCHAR
table: table_name_34
| SELECT release_date FROM table_name_34 WHERE voltage_range = "1.148 v - 1.196 v" |
How many goes played fot hteam that lost less than 12 games, drew 5, and had over 37 points? | columns:
- name: played
type: VARCHAR
- name: drawn
type: VARCHAR
- name: lost
type: VARCHAR
- name: points
type: VARCHAR
table: table_name_75
| SELECT played FROM table_name_75 WHERE lost < 12 AND points > 37 AND drawn = 5 |
What score did Lee Trevino get in T1? | columns:
- name: score
type: VARCHAR
- name: place
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_53
| SELECT score FROM table_name_53 WHERE place = "t1" AND player = "lee trevino" |
Who was the away team on sunday, 13 february? | columns:
- name: away_team
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_40
| SELECT away_team FROM table_name_40 WHERE date = "sunday, 13 february" |
Which Song Sung has a Status of Eliminated? | columns:
- name: song_sung
type: VARCHAR
- name: status
type: VARCHAR
table: table_name_14
| SELECT song_sung FROM table_name_14 WHERE status = "eliminated" |
What was the miles (km) for the race that had an average speed of 136.117 MPH? | columns:
- name: miles__km_
type: VARCHAR
- name: average_speed__mph_
type: VARCHAR
table: table_2220432_1
| SELECT miles__km_ FROM table_2220432_1 WHERE average_speed__mph_ = "136.117" |
Name the most legs for steinlager 2 | columns:
- name: legs
type: INTEGER
- name: winning_yacht
type: VARCHAR
table: table_256862_1
| SELECT MAX(legs) FROM table_256862_1 WHERE winning_yacht = "Steinlager 2" |
What is the highest Roll of Orere School with a Decile less than 8 with a State Authority? | columns:
- name: roll
type: INTEGER
- name: name
type: VARCHAR
- name: decile
type: VARCHAR
- name: authority
type: VARCHAR
table: table_name_98
| SELECT MAX(roll) FROM table_name_98 WHERE decile < 8 AND authority = "state" AND name = "orere school" |
Which first leg had Galatasaray as Team 1? | columns:
- name: team_1
type: VARCHAR
table: table_name_34
| SELECT 1 AS st_leg FROM table_name_34 WHERE team_1 = "galatasaray" |
What candidate has a result of being re-elected in the Texas 7 District? | columns:
- name: candidates
type: VARCHAR
- name: result
type: VARCHAR
- name: district
type: VARCHAR
table: table_1342218_43
| SELECT candidates FROM table_1342218_43 WHERE result = "Re-elected" AND district = "Texas 7" |
What was the cargo value in 2005 with a ship size of all product carriers? | columns:
- name: ship_size
type: VARCHAR
table: table_name_31
| SELECT 2005 FROM table_name_31 WHERE ship_size = "all product carriers" |
Name the samurai for stampede of t. mask | columns:
- name: samurai
type: VARCHAR
- name: stampede
type: VARCHAR
table: table_name_97
| SELECT samurai FROM table_name_97 WHERE stampede = "t. mask" |
For a long scale of one million, what is the power notion? | columns:
- name: power_notation
type: VARCHAR
- name: long_scale
type: VARCHAR
table: table_name_35
| SELECT power_notation FROM table_name_35 WHERE long_scale = "one million" |
What is the average Position, when Bike No is greater than 8, and when Points is less than 240? | columns:
- name: position
type: INTEGER
- name: bike_no
type: VARCHAR
- name: points
type: VARCHAR
table: table_name_16
| SELECT AVG(position) FROM table_name_16 WHERE bike_no > 8 AND points < 240 |
What is the Venue of the WCQ5 Competition? | columns:
- name: venue
type: VARCHAR
- name: competition
type: VARCHAR
table: table_name_49
| SELECT venue FROM table_name_49 WHERE competition = "wcq5" |
What is the total number of points combined from the teams that played over 14 games? | columns:
- name: points
type: VARCHAR
- name: played
type: INTEGER
table: table_name_52
| SELECT COUNT(points) FROM table_name_52 WHERE played > 14 |
Which Competition has a Venue of Seoul, and Result of 4-1? | columns:
- name: competition
type: VARCHAR
- name: venue
type: VARCHAR
- name: result
type: VARCHAR
table: table_name_36
| SELECT competition FROM table_name_36 WHERE venue = "seoul" AND result = "4-1" |
In what round was Kelsey Tessier drafted? | columns:
- name: round
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_16
| SELECT round FROM table_name_16 WHERE player = "kelsey tessier" |
what is the barony and an area of 560? | columns:
- name: barony
type: VARCHAR
- name: area__acres__
type: VARCHAR
table: table_30120560_1
| SELECT barony FROM table_30120560_1 WHERE area__acres__ = 560 |
What is the smallest round for the welterweight class with a preliminary card? | columns:
- name: round
type: INTEGER
- name: weight_class
type: VARCHAR
- name: card
type: VARCHAR
table: table_name_11
| SELECT MIN(round) FROM table_name_11 WHERE weight_class = "welterweight" AND card = "preliminary" |
What is the result for Normativa Vigente? | columns:
- name: result
type: VARCHAR
- name: artist
type: VARCHAR
table: table_19763199_3
| SELECT result FROM table_19763199_3 WHERE artist = "Normativa Vigente" |
What position does Sergio Rodríguez, who is less than 1.96 tall and was born after 1980, play? | columns:
- name: position
type: VARCHAR
- name: player
type: VARCHAR
- name: height
type: VARCHAR
- name: year_born
type: VARCHAR
table: table_name_39
| SELECT position FROM table_name_39 WHERE height < 1.96 AND year_born > 1980 AND player = "sergio rodríguez" |
What rank is Germany? | columns:
- name: rank
type: VARCHAR
- name: country
type: VARCHAR
table: table_name_74
| SELECT rank FROM table_name_74 WHERE country = "germany" |
Who did the play-by-play before 1992 with the Ice level reporter Mike Emrick? | columns:
- name: play_by_play
type: VARCHAR
- name: year
type: VARCHAR
- name: ice_level_reporters
type: VARCHAR
table: table_name_15
| SELECT play_by_play FROM table_name_15 WHERE year < 1992 AND ice_level_reporters = "mike emrick" |
What was the team from Austria when the Netherlands sent Brunssum/Schinnen LL Brunssum and Belgium sent Shape and Waterloo LL Brussels? | columns:
- name: austria
type: VARCHAR
- name: netherlands
type: VARCHAR
- name: belgium
type: VARCHAR
table: table_28562675_3
| SELECT austria FROM table_28562675_3 WHERE netherlands = "Brunssum/Schinnen LL Brunssum" AND belgium = "SHAPE and Waterloo LL Brussels" |
Can you tell me the highest Game that has the Opponent of atlanta hawks? | columns:
- name: game
type: INTEGER
- name: opponent
type: VARCHAR
table: table_name_56
| SELECT MAX(game) FROM table_name_56 WHERE opponent = "atlanta hawks" |
What was the attendance at the Billericay Town home game? | columns:
- name: attendance
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_51
| SELECT attendance FROM table_name_51 WHERE home_team = "billericay town" |
How many tries for are there when 11 were won? | columns:
- name: tries_for
type: VARCHAR
- name: won
type: VARCHAR
table: table_17625749_3
| SELECT tries_for FROM table_17625749_3 WHERE won = "11" |
HOW MANY TIMES WAS LUDACRIS THE INTERVIEW SUBJECT FOR THE 20 QUESTIONS COLUMN? | columns:
- name: interview_subject
type: VARCHAR
table: table_1566852_7
| SELECT COUNT(20 AS _questions) FROM table_1566852_7 WHERE interview_subject = "Ludacris" |
What is the PSIP Short name for the Channel that is less than 51.6? | columns:
- name: psip_short_name
type: VARCHAR
- name: channel
type: INTEGER
table: table_name_70
| SELECT psip_short_name FROM table_name_70 WHERE channel < 51.6 |
What stage (winner) has quick step as the team classification, and trent lowe as the young rider classification? | columns:
- name: stage__winner_
type: VARCHAR
- name: team_classification
type: VARCHAR
- name: young_rider_classification
type: VARCHAR
table: table_name_69
| SELECT stage__winner_ FROM table_name_69 WHERE team_classification = "quick step" AND young_rider_classification = "trent lowe" |
What was the major version when the webkit version was 528.17? | columns:
- name: major_version
type: VARCHAR
- name: webkit_version
type: VARCHAR
table: table_24257833_4
| SELECT major_version FROM table_24257833_4 WHERE webkit_version = "528.17" |
What was away team Geelong's crowd numbers? | columns:
- name: crowd
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_6
| SELECT crowd FROM table_name_6 WHERE away_team = "geelong" |
Name the birth date for estonia for spiker and height of 189 | columns:
- name: birth_date
type: VARCHAR
- name: height
type: VARCHAR
- name: nationality
type: VARCHAR
- name: position
type: VARCHAR
table: table_25058562_2
| SELECT birth_date FROM table_25058562_2 WHERE nationality = "Estonia" AND position = "Spiker" AND height = 189 |
What is the minimum number of seasons? | columns:
- name: season
type: INTEGER
table: table_2140071_13
| SELECT MIN(season) FROM table_2140071_13 |
What is the lowest number of goals of the player with 9 (0) games and less than 0 assists? | columns:
- name: goals
type: INTEGER
- name: games
type: VARCHAR
- name: assists
type: VARCHAR
table: table_name_37
| SELECT MIN(goals) FROM table_name_37 WHERE games = "9 (0)" AND assists < 0 |
What was the result of the game played at Jeppesen Stadium? | columns:
- name: result
type: VARCHAR
- name: game_site
type: VARCHAR
table: table_name_95
| SELECT result FROM table_name_95 WHERE game_site = "jeppesen stadium" |
What is the Total of kyrgyzstan with a Silver smaller than 0? | columns:
- name: total
type: INTEGER
- name: nation
type: VARCHAR
- name: silver
type: VARCHAR
table: table_name_97
| SELECT AVG(total) FROM table_name_97 WHERE nation = "kyrgyzstan" AND silver < 0 |
What is the highest ERP W with a w216bo call sign? | columns:
- name: erp_w
type: INTEGER
- name: call_sign
type: VARCHAR
table: table_name_10
| SELECT MAX(erp_w) FROM table_name_10 WHERE call_sign = "w216bo" |
What is the geo ID for the township with 0.771 square miles of water? | columns:
- name: geo_id
type: INTEGER
- name: water__sqmi_
type: VARCHAR
table: table_18600760_10
| SELECT MAX(geo_id) FROM table_18600760_10 WHERE water__sqmi_ = "0.771" |
Who was the 2004 color commentator? | columns:
- name: color_commentator_s_
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_82
| SELECT color_commentator_s_ FROM table_name_82 WHERE year = 2004 |
What is the scoring average where the wins are 0? | columns:
- name: scoring_average
type: VARCHAR
- name: wins
type: INTEGER
table: table_name_56
| SELECT COUNT(scoring_average) FROM table_name_56 WHERE wins < 0 |
What is the Margin of Victory, when Tournament is Mercedes Championships (3)? | columns:
- name: margin_of_victory
type: VARCHAR
- name: tournament
type: VARCHAR
table: table_name_24
| SELECT margin_of_victory FROM table_name_24 WHERE tournament = "mercedes championships (3)" |
how many times is the week # is audition? | columns:
- name: original_artist
type: VARCHAR
- name: week__number
type: VARCHAR
table: table_27075510_1
| SELECT COUNT(original_artist) FROM table_27075510_1 WHERE week__number = "Audition" |
What is the smallest grid number that had 10 laps listed with Jonathan Summerton as the driver? | columns:
- name: grid
type: INTEGER
- name: laps
type: VARCHAR
- name: driver
type: VARCHAR
table: table_name_31
| SELECT MIN(grid) FROM table_name_31 WHERE laps = 10 AND driver = "jonathan summerton" |
What is Record, when Date is November 23? | columns:
- name: record
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_16
| SELECT record FROM table_name_16 WHERE date = "november 23" |
With wins greater than 0 what is the minimum Top-10? | columns:
- name: top_10
type: INTEGER
- name: wins
type: INTEGER
table: table_name_43
| SELECT MIN(top_10) FROM table_name_43 WHERE wins > 0 |
What is the least number of laps for the constructor Ferrari and where the grid number was less than 4? | columns:
- name: laps
type: INTEGER
- name: constructor
type: VARCHAR
- name: grid
type: VARCHAR
table: table_name_64
| SELECT MIN(laps) FROM table_name_64 WHERE constructor = "ferrari" AND grid < 4 |
Tell me the name for longitude more than 103.8 and latitude of -11.4 | columns:
- name: name
type: VARCHAR
- name: longitude
type: VARCHAR
- name: latitude
type: VARCHAR
table: table_name_80
| SELECT name FROM table_name_80 WHERE longitude > 103.8 AND latitude = -11.4 |
At what position is the association with 279 points? | columns:
- name: pos
type: INTEGER
- name: points__total_500_
type: VARCHAR
table: table_19412902_2
| SELECT MIN(pos) FROM table_19412902_2 WHERE points__total_500_ = 279 |
What was the score for the away team of Brentford? | columns:
- name: score
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_25
| SELECT score FROM table_name_25 WHERE away_team = "brentford" |
What is ICAO, when IATA is "HKG"? | columns:
- name: icao
type: VARCHAR
- name: iata
type: VARCHAR
table: table_name_99
| SELECT icao FROM table_name_99 WHERE iata = "hkg" |
How is the bleeding time wherein platelet count is decreased and prothrombin time is unaffected? | columns:
- name: bleeding_time
type: VARCHAR
- name: platelet_count
type: VARCHAR
- name: prothrombin_time
type: VARCHAR
table: table_1555308_1
| SELECT bleeding_time FROM table_1555308_1 WHERE platelet_count = "Decreased" AND prothrombin_time = "Unaffected" |
What school/club did the player who layed shooting guard attend? | columns:
- name: school_club_team
type: VARCHAR
- name: position
type: VARCHAR
table: table_name_35
| SELECT school_club_team FROM table_name_35 WHERE position = "shooting guard" |
What is the position of the player on the Los Angeles Kings? | columns:
- name: position
type: VARCHAR
- name: nhl_team
type: VARCHAR
table: table_name_92
| SELECT position FROM table_name_92 WHERE nhl_team = "los angeles kings" |
What is the game number that was on November 27? | columns:
- name: _number
type: VARCHAR
- name: date
type: VARCHAR
table: table_22871239_5
| SELECT _number FROM table_22871239_5 WHERE date = "November 27" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.