question stringlengths 12 243 | context stringlengths 45 517 | answer stringlengths 32 484 |
|---|---|---|
What is the January climate figure for Eastman? | columns:
- name: january
type: VARCHAR
- name: region
type: VARCHAR
table: table_name_26
| SELECT january FROM table_name_26 WHERE region = "eastman" |
Which Number of vehicles has a Type designation of u5-25 (bi-directional)? | columns:
- name: number_of_vehicles
type: VARCHAR
- name: type_designation
type: VARCHAR
table: table_name_76
| SELECT number_of_vehicles FROM table_name_76 WHERE type_designation = "u5-25 (bi-directional)" |
When Jim Richards won at the Winton Motor Raceway circuit, what was the city and state listed? | columns:
- name: city___state
type: VARCHAR
- name: winner
type: VARCHAR
- name: circuit
type: VARCHAR
table: table_name_70
| SELECT city___state FROM table_name_70 WHERE winner = "jim richards" AND circuit = "winton motor raceway" |
Name the tournament of beijing | columns:
- name: tournament
type: VARCHAR
table: table_name_71
| SELECT 2011 FROM table_name_71 WHERE tournament = "beijing" |
What type of wheels did the locomotive have that was built by Baldwin Locomotive Works? | columns:
- name: wheels
type: VARCHAR
- name: builder
type: VARCHAR
table: table_name_99
| SELECT wheels FROM table_name_99 WHERE builder = "baldwin locomotive works" |
How many played have 3 as the drawn, and a position greater than 4? | columns:
- name: played
type: VARCHAR
- name: drawn
type: VARCHAR
- name: position
type: VARCHAR
table: table_name_25
| SELECT COUNT(played) FROM table_name_25 WHERE drawn = 3 AND position > 4 |
Sport of gaelic football and hurling is what league? | columns:
- name: league
type: VARCHAR
- name: sport
type: VARCHAR
table: table_name_8
| SELECT league FROM table_name_8 WHERE sport = "gaelic football and hurling" |
what is the nation when the world rank is 2 and the birth date is 1976-12-20? | columns:
- name: nation
type: VARCHAR
- name: world_rank
type: VARCHAR
- name: birth_date
type: VARCHAR
table: table_name_35
| SELECT nation FROM table_name_35 WHERE world_rank = "2" AND birth_date = "1976-12-20" |
Tell me the date for johanna konta | columns:
- name: date
type: VARCHAR
- name: opponent_in_the_final
type: VARCHAR
table: table_name_8
| SELECT date FROM table_name_8 WHERE opponent_in_the_final = "johanna konta" |
Name the current conference for 1974, 1989 | columns:
- name: current_conference
type: VARCHAR
- name: left
type: VARCHAR
table: table_16168849_1
| SELECT current_conference FROM table_16168849_1 WHERE left = "1974, 1989" |
How many silvers are there with more than 2 golds in Germany? | columns:
- name: silver
type: VARCHAR
- name: gold
type: VARCHAR
- name: nation
type: VARCHAR
table: table_name_81
| SELECT COUNT(silver) FROM table_name_81 WHERE gold > 2 AND nation = "germany" |
Where did Jay Haas place? | columns:
- name: place
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_62
| SELECT place FROM table_name_62 WHERE player = "jay haas" |
What is the Main span of the bridge from China with a Year to open of 2013 and Main span feet of 2,585? | columns:
- name: main_span_metres
type: VARCHAR
- name: main_span_feet
type: VARCHAR
- name: year_to_open
type: VARCHAR
- name: country
type: VARCHAR
table: table_name_23
| SELECT main_span_metres FROM table_name_23 WHERE year_to_open = 2013 AND country = "china" AND main_span_feet = "2,585" |
What is the location of the game with attendance of 63,336? | columns:
- name: game_site
type: VARCHAR
- name: attendance
type: VARCHAR
table: table_name_93
| SELECT game_site FROM table_name_93 WHERE attendance = "63,336" |
When was steve bartalo picked? | columns:
- name: pick
type: INTEGER
- name: player
type: VARCHAR
table: table_name_79
| SELECT MAX(pick) FROM table_name_79 WHERE player = "steve bartalo" |
On what date was South Melbourne the away team? | columns:
- name: date
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_61
| SELECT date FROM table_name_61 WHERE away_team = "south melbourne" |
What is the original title of the film for which Dersu Uzala was nominated? | columns:
- name: original_title
type: VARCHAR
- name: film_title_used_in_nomination
type: VARCHAR
table: table_name_10
| SELECT original_title FROM table_name_10 WHERE film_title_used_in_nomination = "dersu uzala" |
What was Des Dickson's lowest rank for matches smaller than 285 and less than 219 goals? | columns:
- name: rank
type: INTEGER
- name: goals
type: VARCHAR
- name: matches
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_89
| SELECT MIN(rank) FROM table_name_89 WHERE matches < 285 AND name = "des dickson" AND goals < 219 |
What is Samuel Smith's party? | columns:
- name: party
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_2668329_11
| SELECT party FROM table_2668329_11 WHERE incumbent = "Samuel Smith" |
When the rank is larger than 3 with a second quarter of johnson & johnson 156,515.9, what is the fourth quarter? | columns:
- name: fourth_quarter
type: VARCHAR
- name: rank
type: VARCHAR
- name: second_quarter
type: VARCHAR
table: table_name_86
| SELECT fourth_quarter FROM table_name_86 WHERE rank > 3 AND second_quarter = "johnson & johnson 156,515.9" |
Name the sum of played for serik berdalin and drawn more than 4 | columns:
- name: played
type: INTEGER
- name: manager
type: VARCHAR
- name: drawn
type: VARCHAR
table: table_name_25
| SELECT SUM(played) FROM table_name_25 WHERE manager = "serik berdalin" AND drawn > 4 |
What is the Set 3 with a Date of 04 oct, and a Set 2 with 15–5? | columns:
- name: set_3
type: VARCHAR
- name: date
type: VARCHAR
- name: set_2
type: VARCHAR
table: table_name_33
| SELECT set_3 FROM table_name_33 WHERE date = "04 oct" AND set_2 = "15–5" |
What is the highest round that has a draftee from Washington State University? | columns:
- name: round
type: INTEGER
- name: school
type: VARCHAR
table: table_name_60
| SELECT MAX(round) FROM table_name_60 WHERE school = "washington state university" |
What was the lowest Attendance for Games played on the Date of February 5? | columns:
- name: attendance
type: INTEGER
- name: date
type: VARCHAR
table: table_name_1
| SELECT MIN(attendance) FROM table_name_1 WHERE date = "february 5" |
What did Orebro score when Umea scored 2? | columns:
- name: "\xF6rebro"
type: VARCHAR
- name: "ume\xE5"
type: VARCHAR
table: table_name_67
| SELECT örebro FROM table_name_67 WHERE umeå = "2" |
Who is team 1 where team 2 is Fluminense (RJ)? | columns:
- name: team_1
type: VARCHAR
- name: team_2
type: VARCHAR
table: table_name_17
| SELECT team_1 FROM table_name_17 WHERE team_2 = "fluminense (rj)" |
What is Erwin Sommer's average position? | columns:
- name: position
type: INTEGER
- name: pilot
type: VARCHAR
table: table_name_18
| SELECT AVG(position) FROM table_name_18 WHERE pilot = "erwin sommer" |
What is every entry for assists if the player is Lynn Pride? | columns:
- name: assists
type: VARCHAR
- name: player
type: VARCHAR
table: table_25352324_5
| SELECT assists FROM table_25352324_5 WHERE player = "Lynn Pride" |
What is the final score when the visiting team is the Washington Redskins and the date is September 4? | columns:
- name: final_score
type: VARCHAR
- name: visiting_team
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_82
| SELECT final_score FROM table_name_82 WHERE visiting_team = "washington redskins" AND date = "september 4" |
Who was the visitor on december 15, 1976? | columns:
- name: visitor
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_94
| SELECT visitor FROM table_name_94 WHERE date = "december 15, 1976" |
who are the writers of the episode whose production code is 176206? | columns:
- name: written_by
type: VARCHAR
- name: production_code
type: VARCHAR
table: table_2866509_1
| SELECT written_by FROM table_2866509_1 WHERE production_code = 176206 |
Tell me the result for 15 july | columns:
- name: result
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_22
| SELECT result FROM table_name_22 WHERE date = "15 july" |
what is the score in february 12 of the boston celtics team | columns:
- name: score
type: VARCHAR
- name: team
type: VARCHAR
table: table_17382360_7
| SELECT score FROM table_17382360_7 WHERE team = "Boston Celtics" |
If the Away team was carlton, what Date did they play? | columns:
- name: date
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_97
| SELECT date FROM table_name_97 WHERE away_team = "carlton" |
In the Ohio 4 district, that is the first elected date that has a result of re-elected? | columns:
- name: first_elected
type: INTEGER
- name: result
type: VARCHAR
- name: district
type: VARCHAR
table: table_name_66
| SELECT SUM(first_elected) FROM table_name_66 WHERE result = "re-elected" AND district = "ohio 4" |
At what latitude can the name origin of yuzut-arkh fossae be found? | columns:
- name: latitude
type: VARCHAR
- name: name
type: VARCHAR
table: table_16799784_11
| SELECT latitude FROM table_16799784_11 WHERE name = "Yuzut-Arkh Fossae" |
For game site Schaefer Stadium, what were the results? | columns:
- name: result
type: VARCHAR
- name: game_site
type: VARCHAR
table: table_17928023_1
| SELECT result FROM table_17928023_1 WHERE game_site = "Schaefer Stadium" |
COunt the EBIT (US $m) which has a Revenue (US $million) larger than 434.8 and a Net profit (US $m) larger than 96.4? | columns:
- name: ebit__us_
type: VARCHAR
- name: revenue__us_$million_
type: VARCHAR
- name: net_profit__us_$m_
type: VARCHAR
table: table_name_35
| SELECT COUNT(ebit__us_) AS $m_ FROM table_name_35 WHERE revenue__us_$million_ > 434.8 AND net_profit__us_$m_ > 96.4 |
What week number was the result bottom 3? | columns:
- name: week__number
type: VARCHAR
- name: result
type: VARCHAR
table: table_27614707_1
| SELECT week__number FROM table_27614707_1 WHERE result = "Bottom 3" |
What are the number of losses that have Ties of 1 and 3 or more poll wins? | columns:
- name: losses
type: VARCHAR
- name: ties
type: VARCHAR
- name: poll_wins
type: VARCHAR
table: table_name_49
| SELECT COUNT(losses) FROM table_name_49 WHERE ties = 1 AND poll_wins > 3 |
Tell me the affiliation for pick number less than 59 and position of gk | columns:
- name: affiliation
type: VARCHAR
- name: pick__number
type: VARCHAR
- name: position
type: VARCHAR
table: table_name_33
| SELECT affiliation FROM table_name_33 WHERE pick__number < 59 AND position = "gk" |
What record has 46 as the game? | columns:
- name: record
type: VARCHAR
- name: game
type: VARCHAR
table: table_name_74
| SELECT record FROM table_name_74 WHERE game = 46 |
Can you tell me the Source that has the Rank of 78? | columns:
- name: source
type: VARCHAR
- name: rank
type: VARCHAR
table: table_name_86
| SELECT source FROM table_name_86 WHERE rank = 78 |
What model has an engine of 1,868 cc? | columns:
- name: model
type: VARCHAR
- name: displacement
type: VARCHAR
table: table_name_33
| SELECT model FROM table_name_33 WHERE displacement = "1,868 cc" |
What game has 27-12 record? | columns:
- name: game
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_14
| SELECT game FROM table_name_14 WHERE record = "27-12" |
How many top 10 finishes did Ken Bouchard get in the year he won $17,695? | columns:
- name: top_10
type: VARCHAR
- name: winnings
type: VARCHAR
table: table_2333416_2
| SELECT top_10 FROM table_2333416_2 WHERE winnings = "$17,695" |
What was the location of the Havaianas Beachley Classic, held in Australia? | columns:
- name: location
type: VARCHAR
- name: country
type: VARCHAR
- name: event
type: VARCHAR
table: table_name_99
| SELECT location FROM table_name_99 WHERE country = "australia" AND event = "havaianas beachley classic" |
Date of november 3, 2008 had what score? | columns:
- name: score
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_15
| SELECT score FROM table_name_15 WHERE date = "november 3, 2008" |
On 10 November 2007, what was the venue? | columns:
- name: venue
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_60
| SELECT venue FROM table_name_60 WHERE date = "10 november 2007" |
What is the score in game 3? | columns:
- name: score
type: VARCHAR
- name: game
type: VARCHAR
table: table_23286158_11
| SELECT score FROM table_23286158_11 WHERE game = 3 |
What was Olga Govortsova's outcome when she played on a grass surface? | columns:
- name: outcome
type: VARCHAR
- name: surface
type: VARCHAR
table: table_name_59
| SELECT outcome FROM table_name_59 WHERE surface = "grass" |
When did the ATV that launched on 9 March 2008, deorbit? | columns:
- name: deorbit_date
type: VARCHAR
- name: launch_date
type: VARCHAR
table: table_name_9
| SELECT deorbit_date FROM table_name_9 WHERE launch_date = "9 march 2008" |
What is the eastern word for "light"? | columns:
- name: eastern
type: VARCHAR
- name: english
type: VARCHAR
table: table_26614365_1
| SELECT eastern FROM table_26614365_1 WHERE english = "light" |
Which Perth has Gold Coast yes, Sydney yes, Melbourne yes, and Adelaide yes? | columns:
- name: perth
type: VARCHAR
- name: adelaide
type: VARCHAR
- name: melbourne
type: VARCHAR
- name: gold_coast
type: VARCHAR
- name: sydney
type: VARCHAR
table: table_name_56
| SELECT perth FROM table_name_56 WHERE gold_coast = "yes" AND sydney = "yes" AND melbourne = "yes" AND adelaide = "yes" |
What is the Score 1 of the game with Attendance of 2,571? | columns:
- name: score_1
type: VARCHAR
- name: attendance
type: VARCHAR
table: table_name_55
| SELECT score_1 FROM table_name_55 WHERE attendance = "2,571" |
Who wrote the episode that is production code 202? | columns:
- name: written_by
type: VARCHAR
- name: production_code
type: VARCHAR
table: table_26448179_3
| SELECT written_by FROM table_26448179_3 WHERE production_code = "202" |
What is the score when Philadelphia was the visitor with a Record of 7–4–0? | columns:
- name: score
type: VARCHAR
- name: visitor
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_79
| SELECT score FROM table_name_79 WHERE visitor = "philadelphia" AND record = "7–4–0" |
Which game at Arden Street Oval had the lowest attendance? | columns:
- name: crowd
type: INTEGER
- name: venue
type: VARCHAR
table: table_name_96
| SELECT MIN(crowd) FROM table_name_96 WHERE venue = "arden street oval" |
How many drawn are there where the Club is new ross? | columns:
- name: drawn
type: VARCHAR
- name: club
type: VARCHAR
table: table_20760802_1
| SELECT drawn FROM table_20760802_1 WHERE club = "New Ross" |
What is the WIAA classification of Oakland Alternative High School? | columns:
- name: wiaa_classification
type: VARCHAR
- name: high_school
type: VARCHAR
table: table_1414702_3
| SELECT wiaa_classification FROM table_1414702_3 WHERE high_school = "Oakland Alternative" |
What visiting team has a record of 4-3? | columns:
- name: visitor
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_49
| SELECT visitor FROM table_name_49 WHERE record = "4-3" |
What is the total number of Long with a Av/g of 124.9 but Loss greater than 0? | columns:
- name: long
type: VARCHAR
- name: loss
type: VARCHAR
- name: avg_g
type: VARCHAR
table: table_name_3
| SELECT COUNT(long) FROM table_name_3 WHERE loss > 0 AND avg_g = 124.9 |
What is the to par of Philip Parkin? | columns:
- name: to_par
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_64
| SELECT to_par FROM table_name_64 WHERE player = "philip parkin" |
What's the type of the school in New London, Connecticut? | columns:
- name: type
type: VARCHAR
- name: location
type: VARCHAR
table: table_1974782_1
| SELECT type FROM table_1974782_1 WHERE location = "New London, Connecticut" |
Name the became consort for marriage of 4 april 1721 | columns:
- name: became_consort
type: VARCHAR
- name: marriage
type: VARCHAR
table: table_name_92
| SELECT became_consort FROM table_name_92 WHERE marriage = "4 april 1721" |
Who is the coach for the Northamptonshire Steelbacks? | columns:
- name: coach
type: VARCHAR
- name: team
type: VARCHAR
table: table_name_36
| SELECT coach FROM table_name_36 WHERE team = "northamptonshire steelbacks" |
What is the hot 100 reaction in week of top 13 for Kanye West? | columns:
- name: hot_100_reaction
type: VARCHAR
- name: week
type: VARCHAR
- name: performer_s_
type: VARCHAR
table: table_name_41
| SELECT hot_100_reaction FROM table_name_41 WHERE week = "top 13" AND performer_s_ = "kanye west" |
What is 1st Round, when Team 1 is Sporting Toulon Var (D2)? | columns:
- name: team_1
type: VARCHAR
table: table_name_65
| SELECT 1 AS st_round FROM table_name_65 WHERE team_1 = "sporting toulon var (d2)" |
What was the distance in the race where the weight in kg was 56 and the winner/2nd was 2nd - Fritz? | columns:
- name: distance
type: VARCHAR
- name: weight__kg_
type: VARCHAR
- name: winner_2nd
type: VARCHAR
table: table_2581397_4
| SELECT distance FROM table_2581397_4 WHERE weight__kg_ = "56" AND winner_2nd = "2nd - Fritz" |
What is the sum grid number when the driver was Luciano Burti? | columns:
- name: grid
type: VARCHAR
- name: driver
type: VARCHAR
table: table_name_55
| SELECT COUNT(grid) FROM table_name_55 WHERE driver = "luciano burti" |
Who built the car that has a Time/Retired of 1:36:38.887? | columns:
- name: constructor
type: VARCHAR
- name: time_retired
type: VARCHAR
table: table_name_66
| SELECT constructor FROM table_name_66 WHERE time_retired = "1:36:38.887" |
In what City/town was their institution founded in 1860? | columns:
- name: city__town
type: VARCHAR
- name: year_founded
type: VARCHAR
table: table_name_34
| SELECT city__town FROM table_name_34 WHERE year_founded = 1860 |
What is the venue of season 1983, which had alianza lima as the home team? | columns:
- name: venue
type: VARCHAR
- name: home_team
type: VARCHAR
- name: season
type: VARCHAR
table: table_name_7
| SELECT venue FROM table_name_7 WHERE home_team = "alianza lima" AND season = 1983 |
What is the Set 2 with a Total with 45–12? | columns:
- name: set_2
type: VARCHAR
- name: total
type: VARCHAR
table: table_name_42
| SELECT set_2 FROM table_name_42 WHERE total = "45–12" |
What is the sum of the number played with more than 5 losses, more than 1 draw, and a position under 8? | columns:
- name: played
type: INTEGER
- name: drawn
type: VARCHAR
- name: lost
type: VARCHAR
- name: position
type: VARCHAR
table: table_name_13
| SELECT SUM(played) FROM table_name_13 WHERE lost > 5 AND position < 8 AND drawn > 1 |
What is Cha Bum-Kun's average number of goals per match? | columns:
- name: goals_per_match
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_12
| SELECT COUNT(goals_per_match) FROM table_name_12 WHERE name = "cha bum-kun" |
When did the wind farm in Musselshell started service? | columns:
- name: date_in_service
type: VARCHAR
- name: county
type: VARCHAR
table: table_24837750_1
| SELECT date_in_service FROM table_24837750_1 WHERE county = "Musselshell" |
Name the team for wins being 0 and top 5 is 0 and poles is 0 and avg start is 37.0 | columns:
- name: team_s_
type: VARCHAR
- name: avg_start
type: VARCHAR
- name: poles
type: VARCHAR
- name: wins
type: VARCHAR
- name: top_5
type: VARCHAR
table: table_2463383_2
| SELECT team_s_ FROM table_2463383_2 WHERE wins = 0 AND top_5 = 0 AND poles = 0 AND avg_start = "37.0" |
Name the circuit for #47 orbit racing | columns:
- name: circuit
type: VARCHAR
- name: challenge_winning_team
type: VARCHAR
table: table_19598014_2
| SELECT circuit FROM table_19598014_2 WHERE challenge_winning_team = "#47 Orbit Racing" |
What is the fewest number of wins when he has 3 poles in 2010? | columns:
- name: wins
type: INTEGER
- name: poles
type: VARCHAR
- name: season
type: VARCHAR
table: table_name_51
| SELECT MIN(wins) FROM table_name_51 WHERE poles = 3 AND season = "2010" |
Who was the race winner with a pole position james hunt, and a Fastest Lap of james hunt, and a Date of 15 august? | columns:
- name: race
type: VARCHAR
- name: date
type: VARCHAR
- name: pole_position
type: VARCHAR
- name: fastest_lap
type: VARCHAR
table: table_name_58
| SELECT race AS Winner FROM table_name_58 WHERE pole_position = "james hunt" AND fastest_lap = "james hunt" AND date = "15 august" |
What is the area of the school with a decile of 2 and a roll number 222? | columns:
- name: area
type: VARCHAR
- name: decile
type: VARCHAR
- name: roll
type: VARCHAR
table: table_name_33
| SELECT area FROM table_name_33 WHERE decile = "2" AND roll = "222" |
How many matches had 360 goals? | columns:
- name: matches
type: VARCHAR
- name: goals
type: VARCHAR
table: table_name_31
| SELECT matches FROM table_name_31 WHERE goals = 360 |
what is the number of attendance on june 24 | columns:
- name: attendance
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_8
| SELECT COUNT(attendance) FROM table_name_8 WHERE date = "june 24" |
What is the total number of population in the year 2005 where the population density 35.9 (/km 2)? | columns:
- name: population__2005_
type: VARCHAR
- name: population_density___km_2__
type: VARCHAR
table: table_1480455_1
| SELECT COUNT(population__2005_) FROM table_1480455_1 WHERE population_density___km_2__ = "35.9" |
What is the Austin record of Kansas State? | columns:
- name: at_austin
type: VARCHAR
- name: texas_vs
type: VARCHAR
table: table_name_21
| SELECT at_austin FROM table_name_21 WHERE texas_vs = "kansas state" |
What is the score of the Boston Bruins game from April 11? | columns:
- name: score
type: VARCHAR
- name: home
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_39
| SELECT score FROM table_name_39 WHERE home = "boston bruins" AND date = "april 11" |
When 10th, south west district 1 is the mens 2nd xi what is the ladies 1st xi? | columns:
- name: ladies_1st_xi
type: VARCHAR
- name: mens_2nd_xi
type: VARCHAR
table: table_21576644_2
| SELECT ladies_1st_xi FROM table_21576644_2 WHERE mens_2nd_xi = "10th, South West District 1" |
When was the Hon Ian Causley first elected? | columns:
- name: first_elected
type: VARCHAR
- name: member
type: VARCHAR
table: table_name_66
| SELECT first_elected FROM table_name_66 WHERE member = "hon ian causley" |
What is the number of tries for when the try bonus is 0? | columns:
- name: tries_for
type: VARCHAR
- name: try_bonus
type: VARCHAR
table: table_name_16
| SELECT tries_for FROM table_name_16 WHERE try_bonus = "0" |
How much power does the fuel injection system have with a displacement of 1991cc? | columns:
- name: power
type: VARCHAR
- name: fuel_system
type: VARCHAR
- name: displacement
type: VARCHAR
table: table_name_47
| SELECT power FROM table_name_47 WHERE fuel_system = "fuel injection" AND displacement = "1991cc" |
What is the total rate of murder and non-negligent manslaughter when larceny-theft is 3,693.9 and burglary is more than 1,027.0? | columns:
- name: murder_and_non_negligent_manslaughter
type: INTEGER
- name: larceny_theft
type: VARCHAR
- name: burglary
type: VARCHAR
table: table_name_86
| SELECT SUM(murder_and_non_negligent_manslaughter) FROM table_name_86 WHERE larceny_theft = "3,693.9" AND burglary > 1 OFFSET 027.0 |
What venue held that game against the Queens Park Rangers? | columns:
- name: venue
type: VARCHAR
- name: opponents
type: VARCHAR
table: table_name_32
| SELECT venue FROM table_name_32 WHERE opponents = "queens park rangers" |
How many wins were in the PGA Championship when there were more than 10 events? | columns:
- name: wins
type: VARCHAR
- name: tournament
type: VARCHAR
- name: events
type: VARCHAR
table: table_name_55
| SELECT COUNT(wins) FROM table_name_55 WHERE tournament = "pga championship" AND events > 10 |
what is the unemployment rate where the market income per capita is $16,406? | columns:
- name: unemployment_rate
type: VARCHAR
- name: market_income_per_capita
type: VARCHAR
table: table_22815568_13
| SELECT unemployment_rate FROM table_22815568_13 WHERE market_income_per_capita = "$16,406" |
Who has won $98,860? | columns:
- name: driver
type: VARCHAR
- name: winnings
type: VARCHAR
table: table_name_97
| SELECT driver FROM table_name_97 WHERE winnings = "$98,860" |
What is the year elected for incumbent Cynthia Mckinney? | columns:
- name: elected
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_27021001_1
| SELECT elected FROM table_27021001_1 WHERE incumbent = "Cynthia McKinney" |
What Tournament of monte carlo had 1996 and a 1987 of nme? | columns:
- name: tournament
type: VARCHAR
table: table_name_45
| SELECT 1996 FROM table_name_45 WHERE 1987 = "nme" AND tournament = "monte carlo" |
On what date was the home team Footscray? | columns:
- name: date
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_49
| SELECT date FROM table_name_49 WHERE home_team = "footscray" |
What is the smallest value for Wins when the number of cuts is greater than 4 and the Top-5 value is less than 1? | columns:
- name: wins
type: INTEGER
- name: cuts_made
type: VARCHAR
- name: top_5
type: VARCHAR
table: table_name_51
| SELECT MIN(wins) FROM table_name_51 WHERE cuts_made > 4 AND top_5 < 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.