question stringlengths 12 243 | context stringlengths 45 517 | answer stringlengths 32 484 |
|---|---|---|
Who was the home team on February 3? | columns:
- name: home
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_68
| SELECT home FROM table_name_68 WHERE date = "february 3" |
What was the lowest round number at the UFC 16 event with a record of 19-1-1? | columns:
- name: round
type: INTEGER
- name: event
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_64
| SELECT MIN(round) FROM table_name_64 WHERE event = "ufc 16" AND record = "19-1-1" |
Name the Winning constructor on 31 may and a Circuit of madonie? | columns:
- name: winning_constructor
type: VARCHAR
- name: date
type: VARCHAR
- name: circuit
type: VARCHAR
table: table_name_96
| SELECT winning_constructor FROM table_name_96 WHERE date = "31 may" AND circuit = "madonie" |
When was the race that set the record for the Izod Indycar Series? | columns:
- name: date
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_47
| SELECT date FROM table_name_47 WHERE record = "izod indycar series" |
Name the highest Against on 21 november 1978? | columns:
- name: against
type: INTEGER
- name: date
type: VARCHAR
table: table_name_30
| SELECT MAX(against) FROM table_name_30 WHERE date = "21 november 1978" |
Name the womens doubles when tour is malaysia super series | columns:
- name: womens_doubles
type: VARCHAR
- name: tour
type: VARCHAR
table: table_14496232_2
| SELECT womens_doubles FROM table_14496232_2 WHERE tour = "Malaysia Super Series" |
Tell me the icao of isla grande | columns:
- name: icao
type: VARCHAR
- name: city
type: VARCHAR
table: table_name_76
| SELECT icao FROM table_name_76 WHERE city = "isla grande" |
If the number of floors is 70, what is the height? | columns:
- name: height
type: VARCHAR
- name: number_of_floors
type: VARCHAR
table: table_27067379_1
| SELECT height FROM table_27067379_1 WHERE number_of_floors = 70 |
What is Date, when Team is Holden Racing Team, and when Circuit is Eastern Creek Raceway? | columns:
- name: date
type: VARCHAR
- name: team
type: VARCHAR
- name: circuit
type: VARCHAR
table: table_name_40
| SELECT date FROM table_name_40 WHERE team = "holden racing team" AND circuit = "eastern creek raceway" |
What is listed under occupation for someone from Santa Monica, California? | columns:
- name: occupation
type: VARCHAR
- name: hometown
type: VARCHAR
table: table_name_71
| SELECT occupation FROM table_name_71 WHERE hometown = "santa monica, california" |
Who is the away team that tottenham hotspur played? | columns:
- name: away_team
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_85
| SELECT away_team FROM table_name_85 WHERE home_team = "tottenham hotspur" |
How many wins have a year after 1976, and 350cc as the class? | columns:
- name: wins
type: INTEGER
- name: year
type: VARCHAR
- name: class
type: VARCHAR
table: table_name_21
| SELECT SUM(wins) FROM table_name_21 WHERE year > 1976 AND class = "350cc" |
What is the TV Time of the game on December 27, 2003? | columns:
- name: tv_time
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_51
| SELECT tv_time FROM table_name_51 WHERE date = "december 27, 2003" |
What's the attendance numbers for veterans stadium? | columns:
- name: attendance
type: VARCHAR
- name: game_site
type: VARCHAR
table: table_name_17
| SELECT attendance FROM table_name_17 WHERE game_site = "veterans stadium" |
What is the lowest number of losses for a team with more than 0 wins? | columns:
- name: losses
type: INTEGER
- name: wins
type: INTEGER
table: table_name_53
| SELECT MIN(losses) FROM table_name_53 WHERE wins > 0 |
What position did Rich Manning play? | columns:
- name: position
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_87
| SELECT position FROM table_name_87 WHERE player = "rich manning" |
How many episodes were there in season 19? | columns:
- name: title
type: VARCHAR
- name: season__number
type: VARCHAR
table: table_17355820_1
| SELECT COUNT(title) FROM table_17355820_1 WHERE season__number = 19 |
What is the frequency that the magazine issues that was first published on april 27, 2010? | columns:
- name: frequency
type: VARCHAR
- name: first_published
type: VARCHAR
table: table_name_67
| SELECT frequency FROM table_name_67 WHERE first_published = "april 27, 2010" |
Where did Richmond play as the away team? | columns:
- name: venue
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_57
| SELECT venue FROM table_name_57 WHERE away_team = "richmond" |
What is the total number of round values that had opponents named Paul Sutherland? | columns:
- name: round
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_93
| SELECT COUNT(round) FROM table_name_93 WHERE opponent = "paul sutherland" |
What is the total of the crowd when the home team is footscray? | columns:
- name: crowd
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_60
| SELECT COUNT(crowd) FROM table_name_60 WHERE home_team = "footscray" |
What is the score for set 2 when the score of set 1 is 19–25? | columns:
- name: set_2
type: VARCHAR
- name: set_1
type: VARCHAR
table: table_name_70
| SELECT set_2 FROM table_name_70 WHERE set_1 = "19–25" |
Which Rider has less than 18 laps, and a Grid of 24? | columns:
- name: rider
type: VARCHAR
- name: laps
type: VARCHAR
- name: grid
type: VARCHAR
table: table_name_73
| SELECT rider FROM table_name_73 WHERE laps < 18 AND grid = 24 |
Was it a win or loss for Wanganui in round 3? | columns:
- name: win_loss
type: VARCHAR
- name: round__number
type: VARCHAR
table: table_26847237_1
| SELECT win_loss FROM table_26847237_1 WHERE round__number = "Round 3" |
When was the incumbent first elected in the district where the result was a democratic-republican gain? | columns:
- name: first_elected
type: VARCHAR
- name: result
type: VARCHAR
table: table_2668401_17
| SELECT first_elected FROM table_2668401_17 WHERE result = "Democratic-Republican gain" |
Who was the opponent of the New Orleans Saints? | columns:
- name: result
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_79
| SELECT result FROM table_name_79 WHERE opponent = "new orleans saints" |
What is the score of game 37? | columns:
- name: score
type: VARCHAR
- name: game
type: VARCHAR
table: table_name_72
| SELECT score FROM table_name_72 WHERE game = 37 |
What is the period for Ben Eager? | columns:
- name: period
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_49
| SELECT period FROM table_name_49 WHERE player = "ben eager" |
What is the highest position the album Where we belong, which had an issue date higher than 9, had? | columns:
- name: highest_position
type: VARCHAR
- name: issue_date
type: VARCHAR
- name: album_title
type: VARCHAR
table: table_name_14
| SELECT COUNT(highest_position) FROM table_name_14 WHERE issue_date < 9 AND album_title = "where we belong" |
What is No.1, when No. 2 is Emma, and when No. 7 is Olivia? | columns:
- name: no_1
type: VARCHAR
- name: no_2
type: VARCHAR
- name: no_7
type: VARCHAR
table: table_name_28
| SELECT no_1 FROM table_name_28 WHERE no_2 = "emma" AND no_7 = "olivia" |
What is the name of the corporation that incorporated on october 15, 1955? | columns:
- name: corporate_name
type: VARCHAR
- name: incorporation_date__city_
type: VARCHAR
table: table_28367242_1
| SELECT corporate_name FROM table_28367242_1 WHERE incorporation_date__city_ = "October 15, 1955" |
Which Qual 1 has a Qual 2 of 59.822? | columns:
- name: qual_1
type: VARCHAR
- name: qual_2
type: VARCHAR
table: table_name_76
| SELECT qual_1 FROM table_name_76 WHERE qual_2 = "59.822" |
How many poles have 4 Starts of 4 and position of 46th? | columns:
- name: poles
type: VARCHAR
- name: starts
type: VARCHAR
- name: position
type: VARCHAR
table: table_name_20
| SELECT COUNT(poles) FROM table_name_20 WHERE starts = 4 AND position = "46th" |
which school shows #/county of 29 hamilton? | columns:
- name: school
type: VARCHAR
- name: _number___county
type: VARCHAR
table: table_name_49
| SELECT school FROM table_name_49 WHERE _number___county = "29 hamilton" |
Which title has content including mysticism, spiritualism, and a translation of the minaret of light? | columns:
- name: title
type: VARCHAR
- name: content
type: VARCHAR
- name: translation
type: VARCHAR
table: table_name_86
| SELECT title FROM table_name_86 WHERE content = "mysticism, spiritualism" AND translation = "the minaret of light" |
If the incoming head coach is Carlos Azenha, what is the date of vacancy? | columns:
- name: date_of_vacancy
type: VARCHAR
- name: incoming_head_coach
type: VARCHAR
table: table_27133147_3
| SELECT date_of_vacancy FROM table_27133147_3 WHERE incoming_head_coach = "Carlos Azenha" |
What is the sum of the places of the team with more than 49 points and less than 54 goals scored? | columns:
- name: "place__posici\xF3n_"
type: INTEGER
- name: points__pts_
type: VARCHAR
- name: goals_scored__gf_
type: VARCHAR
table: table_name_70
| SELECT SUM(place__posición_) FROM table_name_70 WHERE points__pts_ > 49 AND goals_scored__gf_ < 54 |
What is Year, when Name is "Dong Shihou, 29 (董世侯)"? | columns:
- name: year
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_93
| SELECT year FROM table_name_93 WHERE name = "dong shihou, 29 (董世侯)" |
Which division in the AFC Conference had a total of 10 wins and appeared more than 18 times? | columns:
- name: division
type: VARCHAR
- name: appearances
type: VARCHAR
- name: conference
type: VARCHAR
- name: wins
type: VARCHAR
table: table_name_90
| SELECT division FROM table_name_90 WHERE conference = "afc" AND wins = 10 AND appearances > 18 |
What is Builder, when Location is "Govan , Scotland"? | columns:
- name: builder
type: VARCHAR
- name: location
type: VARCHAR
table: table_name_80
| SELECT builder FROM table_name_80 WHERE location = "govan , scotland" |
Which Playoffs have a Year smaller than 2012, and an Open Cup of did not enter? | columns:
- name: playoffs
type: VARCHAR
- name: year
type: VARCHAR
- name: open_cup
type: VARCHAR
table: table_name_83
| SELECT playoffs FROM table_name_83 WHERE year < 2012 AND open_cup = "did not enter" |
What is the Story Title that has Albers as the Letterer? | columns:
- name: story_title
type: VARCHAR
- name: letterer_s
type: VARCHAR
table: table_name_60
| SELECT story_title FROM table_name_60 WHERE letterer_s = "albers" |
What is the Set 5 with a Game that is 59? | columns:
- name: set_5
type: VARCHAR
- name: game
type: VARCHAR
table: table_name_9
| SELECT set_5 FROM table_name_9 WHERE game = 59 |
What was the score for 1911? | columns:
- name: score
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_10
| SELECT score FROM table_name_10 WHERE year = 1911 |
What player from the United States played in the western collegiate hockey association? | columns:
- name: player
type: VARCHAR
- name: nationality
type: VARCHAR
- name: league_from
type: VARCHAR
table: table_name_40
| SELECT player FROM table_name_40 WHERE nationality = "united states" AND league_from = "western collegiate hockey association" |
What venue is in Santa Barbara, California? | columns:
- name: venue
type: VARCHAR
- name: state
type: VARCHAR
- name: city
type: VARCHAR
table: table_name_58
| SELECT venue FROM table_name_58 WHERE state = "california" AND city = "santa barbara" |
How many Apps did Player Gilberto with more than 1 Goals have? | columns:
- name: apps
type: INTEGER
- name: player
type: VARCHAR
- name: goals
type: VARCHAR
table: table_name_64
| SELECT AVG(apps) FROM table_name_64 WHERE player = "gilberto" AND goals > 1 |
Where was adac rally deutschland's rally HQ? | columns:
- name: rally_hq
type: VARCHAR
- name: rally_name
type: VARCHAR
table: table_name_62
| SELECT rally_hq FROM table_name_62 WHERE rally_name = "adac rally deutschland" |
Name the date for hard surface and tournament of fort walton beach | columns:
- name: date
type: VARCHAR
- name: surface
type: VARCHAR
- name: tournament
type: VARCHAR
table: table_name_84
| SELECT date FROM table_name_84 WHERE surface = "hard" AND tournament = "fort walton beach" |
What is the sum of elections in vicenza? | columns:
- name: election
type: INTEGER
- name: province
type: VARCHAR
table: table_name_1
| SELECT SUM(election) FROM table_name_1 WHERE province = "vicenza" |
Can you tell me the sum of Score that has the Place of t5, and the Country of united states, and the Player of jeff maggert? | columns:
- name: score
type: INTEGER
- name: player
type: VARCHAR
- name: place
type: VARCHAR
- name: country
type: VARCHAR
table: table_name_27
| SELECT SUM(score) FROM table_name_27 WHERE place = "t5" AND country = "united states" AND player = "jeff maggert" |
Which player had a draft before 1975 and before round 6? | columns:
- name: player
type: VARCHAR
- name: draft
type: VARCHAR
- name: round
type: VARCHAR
table: table_name_79
| SELECT player FROM table_name_79 WHERE draft < 1975 AND round < 6 |
what is the stroke where the vehicle code is t211? | columns:
- name: stroke__mm_
type: VARCHAR
- name: vehicle_code
type: VARCHAR
table: table_23722304_2
| SELECT stroke__mm_ FROM table_23722304_2 WHERE vehicle_code = "T211" |
What is the sum of Altrincham's Points 2 when they had more than 52 Goals For? | columns:
- name: points_2
type: INTEGER
- name: goals_for
type: VARCHAR
- name: team
type: VARCHAR
table: table_name_98
| SELECT SUM(points_2) FROM table_name_98 WHERE goals_for > 52 AND team = "altrincham" |
Was the semi-final round held at home or away? | columns:
- name: h___a
type: VARCHAR
- name: round
type: VARCHAR
table: table_name_53
| SELECT h___a FROM table_name_53 WHERE round = "semi-final" |
When the regular season of 2nd, Northeast and the year was less than 2008 what was the total number of Division? | columns:
- name: division
type: VARCHAR
- name: regular_season
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_89
| SELECT COUNT(division) FROM table_name_89 WHERE regular_season = "2nd, northeast" AND year < 2008 |
What was the home team with the away team of rushden & diamonds? | columns:
- name: home_team
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_73
| SELECT home_team FROM table_name_73 WHERE away_team = "rushden & diamonds" |
Which Points is the highest one that has a Game smaller than 43, and a January larger than 8? | columns:
- name: points
type: INTEGER
- name: game
type: VARCHAR
- name: january
type: VARCHAR
table: table_name_64
| SELECT MAX(points) FROM table_name_64 WHERE game < 43 AND january > 8 |
In stage 13, what is the intergiro classification and is on the team of Asics-c.g.a.? | columns:
- name: intergiro_classification
type: VARCHAR
- name: trofeo_fast_team
type: VARCHAR
- name: stage
type: VARCHAR
table: table_name_10
| SELECT intergiro_classification FROM table_name_10 WHERE trofeo_fast_team = "asics-c.g.a." AND stage = "13" |
What type has a scratch of 750 GB? | columns:
- name: type
type: VARCHAR
- name: scratch
type: VARCHAR
table: table_name_2
| SELECT type FROM table_name_2 WHERE scratch = "750 gb" |
What B Mountain Channel has station call letters of k41go? | columns:
- name: b_mountain_channel
type: VARCHAR
- name: station_call_letters
type: VARCHAR
table: table_name_75
| SELECT b_mountain_channel FROM table_name_75 WHERE station_call_letters = "k41go" |
What is the Date of Birth of the CB Player with a Height of m (ft 4in)? | columns:
- name: date_of_birth
type: VARCHAR
- name: pos
type: VARCHAR
- name: height
type: VARCHAR
table: table_name_61
| SELECT date_of_birth FROM table_name_61 WHERE pos = "cb" AND height = "m (ft 4in)" |
What was the ladder position when the score was 15.9 (99)–14.6 (90)? | columns:
- name: ladder_position
type: VARCHAR
- name: score
type: VARCHAR
table: table_24919137_2
| SELECT ladder_position FROM table_24919137_2 WHERE score = "15.9 (99)–14.6 (90)" |
Which have more than $80k and a total percent of 2.2%? | columns:
- name: more_than_$80
type: VARCHAR
- name: percent_of_total
type: VARCHAR
table: table_name_60
| SELECT more_than_$80, 000 FROM table_name_60 WHERE percent_of_total = "2.2%" |
What is the total number of Year, when Result is "Nominated", when Category is "Outstanding Actor in a Musical", and when Award is "Drama Desk Award"? | columns:
- name: year
type: VARCHAR
- name: award
type: VARCHAR
- name: result
type: VARCHAR
- name: category
type: VARCHAR
table: table_name_68
| SELECT COUNT(year) FROM table_name_68 WHERE result = "nominated" AND category = "outstanding actor in a musical" AND award = "drama desk award" |
What is the first elected for south carolina 4? | columns:
- name: first_elected
type: VARCHAR
- name: district
type: VARCHAR
table: table_1342256_40
| SELECT first_elected FROM table_1342256_40 WHERE district = "South Carolina 4" |
What is the sum of all the points won by Peter Whitehead in an alta f2 Chassis? | columns:
- name: points
type: INTEGER
- name: entrant
type: VARCHAR
- name: chassis
type: VARCHAR
table: table_name_41
| SELECT SUM(points) FROM table_name_41 WHERE entrant = "peter whitehead" AND chassis = "alta f2" |
Name the least game for l 109–116 (ot) | columns:
- name: game
type: INTEGER
- name: score
type: VARCHAR
table: table_27700375_11
| SELECT MIN(game) FROM table_27700375_11 WHERE score = "L 109–116 (OT)" |
What is the venue of teh carfax 250 race? | columns:
- name: venue
type: VARCHAR
- name: race
type: VARCHAR
table: table_name_62
| SELECT venue FROM table_name_62 WHERE race = "carfax 250" |
Who is the owner that built in 2009-2011? | columns:
- name: owner
type: VARCHAR
- name: built
type: VARCHAR
table: table_name_98
| SELECT owner FROM table_name_98 WHERE built = "2009-2011" |
How many episodes were written by Alison McDonald? | columns:
- name: directed_by
type: VARCHAR
- name: written_by
type: VARCHAR
table: table_26961951_4
| SELECT COUNT(directed_by) FROM table_26961951_4 WHERE written_by = "Alison McDonald" |
What is Pick, when Position is OL, and when Round is less than 6? | columns:
- name: pick
type: VARCHAR
- name: position
type: VARCHAR
- name: round
type: VARCHAR
table: table_name_59
| SELECT pick FROM table_name_59 WHERE position = "ol" AND round < 6 |
Which label had a Japan region and a date of November 3, 2004? | columns:
- name: label
type: VARCHAR
- name: region
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_53
| SELECT label FROM table_name_53 WHERE region = "japan" AND date = "november 3, 2004" |
What is Bandwidth Included, when Internet Plan is "8mb"? | columns:
- name: bandwidth_included
type: VARCHAR
- name: internet_plan
type: VARCHAR
table: table_name_85
| SELECT bandwidth_included FROM table_name_85 WHERE internet_plan = "8mb" |
What is the lowest pick number for the Russian Major League? | columns:
- name: pick__number
type: INTEGER
- name: league_from
type: VARCHAR
table: table_name_70
| SELECT MIN(pick__number) FROM table_name_70 WHERE league_from = "russian major league" |
What is Second Member, when Election is "1835"? | columns:
- name: second_member
type: VARCHAR
- name: election
type: VARCHAR
table: table_name_99
| SELECT second_member FROM table_name_99 WHERE election = "1835" |
Which club has more than 46 goals, 10 wins, and a goal difference of -24? | columns:
- name: club
type: VARCHAR
- name: goal_difference
type: VARCHAR
- name: goals_against
type: VARCHAR
- name: wins
type: VARCHAR
table: table_name_25
| SELECT club FROM table_name_25 WHERE goals_against > 46 AND wins = 10 AND goal_difference = -24 |
What was the province with an election date of 5 cannot handle non-empty timestamp argument! 1861? | columns:
- name: province
type: VARCHAR
- name: election_date
type: VARCHAR
table: table_27592654_2
| SELECT province FROM table_27592654_2 WHERE election_date = "5 Cannot handle non-empty timestamp argument! 1861" |
What was the highest attendance of a game that had a score of 3-5? | columns:
- name: attendance
type: INTEGER
- name: score
type: VARCHAR
table: table_name_83
| SELECT MAX(attendance) FROM table_name_83 WHERE score = "3-5" |
What is the lowest population in a county with market income per capita of $24,383? | columns:
- name: population
type: INTEGER
- name: market_income_per_capita
type: VARCHAR
table: table_22815568_1
| SELECT MIN(population) FROM table_22815568_1 WHERE market_income_per_capita = "$24,383" |
What is the highest score in round 4 and total of 284 in a year more recent than 1998? | columns:
- name: round_4
type: INTEGER
- name: score
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_56
| SELECT MAX(round_4) FROM table_name_56 WHERE score = 284 AND year > 1998 |
What is the total audience on may 28? | columns:
- name: attendance
type: INTEGER
- name: date
type: VARCHAR
table: table_name_99
| SELECT SUM(attendance) FROM table_name_99 WHERE date = "may 28" |
How many rounds have a Pick of 13? | columns:
- name: round
type: INTEGER
- name: pick
type: VARCHAR
table: table_name_21
| SELECT SUM(round) FROM table_name_21 WHERE pick = 13 |
Which Opponent has a Location/Attendance of delta center/19,911 on dec 6? | columns:
- name: opponent
type: VARCHAR
- name: location_attendance
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_63
| SELECT opponent FROM table_name_63 WHERE location_attendance = "delta center/19,911" AND date = "dec 6" |
What was the category in 2008? | columns:
- name: category
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_72
| SELECT category FROM table_name_72 WHERE year = 2008 |
Which game was released in 2011? | columns:
- name: game
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_13
| SELECT game FROM table_name_13 WHERE year = 2011 |
Name the year for points less than 20 and chassis of dallara 3087 | columns:
- name: year
type: VARCHAR
- name: points
type: VARCHAR
- name: chassis
type: VARCHAR
table: table_name_62
| SELECT year FROM table_name_62 WHERE points < 20 AND chassis = "dallara 3087" |
Which Producer has a Role of rizzette? | columns:
- name: producer
type: VARCHAR
- name: role
type: VARCHAR
table: table_name_74
| SELECT producer FROM table_name_74 WHERE role = "rizzette" |
What is the lowest avg/g that has an effic greater than 34.36, with wesley carroll as the name? | columns:
- name: avg_g
type: INTEGER
- name: effic
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_86
| SELECT MIN(avg_g) FROM table_name_86 WHERE effic > 34.36 AND name = "wesley carroll" |
Which Award is the winner for Outstanding Revival of a Musical given? | columns:
- name: award
type: VARCHAR
- name: category
type: VARCHAR
table: table_name_57
| SELECT award FROM table_name_57 WHERE category = "outstanding revival of a musical" |
what is the competing entities when the age group is 18 or younger, held every is one year and the sport is table tennis? | columns:
- name: competing_entities
type: VARCHAR
- name: sport
type: VARCHAR
- name: age_groups
type: VARCHAR
- name: held_every
type: VARCHAR
table: table_name_37
| SELECT competing_entities FROM table_name_37 WHERE age_groups = "18 or younger" AND held_every = "one year" AND sport = "table tennis" |
What is the total number of losses with less than 6 wins and less than 0 draws? | columns:
- name: losses
type: VARCHAR
- name: wins
type: VARCHAR
- name: draws
type: VARCHAR
table: table_name_94
| SELECT COUNT(losses) FROM table_name_94 WHERE wins < 6 AND draws < 0 |
What is 2nd Leg, when Team 2 is "Dunaferr"? | columns:
- name: team_2
type: VARCHAR
table: table_name_57
| SELECT 2 AS nd_leg FROM table_name_57 WHERE team_2 = "dunaferr" |
How many laps were there when the constructor was Renault, and when the Driver was Fernando Alonso? | columns:
- name: laps
type: VARCHAR
- name: constructor
type: VARCHAR
- name: driver
type: VARCHAR
table: table_name_7
| SELECT laps FROM table_name_7 WHERE constructor = "renault" AND driver = "fernando alonso" |
How many Weeks have a Result of w 17–13? | columns:
- name: week
type: INTEGER
- name: result
type: VARCHAR
table: table_name_82
| SELECT AVG(week) FROM table_name_82 WHERE result = "w 17–13" |
How many losses does Alex Wilkinson have? | columns:
- name: losses
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_98
| SELECT COUNT(losses) FROM table_name_98 WHERE name = "alex wilkinson" |
Which player plays for the Winnipeg Blue Bombers? | columns:
- name: player
type: VARCHAR
- name: cfl_team
type: VARCHAR
table: table_21321804_3
| SELECT player FROM table_21321804_3 WHERE cfl_team = "Winnipeg Blue Bombers" |
What is the lowest number of FA cups associated with 0 malaysia cups? | columns:
- name: fa_cup
type: INTEGER
- name: malaysia_cup
type: INTEGER
table: table_name_69
| SELECT MIN(fa_cup) FROM table_name_69 WHERE malaysia_cup < 0 |
What was the title for the Undercard of Stevenson/Bellew? | columns:
- name: titles
type: VARCHAR
- name: notes
type: VARCHAR
table: table_25840200_1
| SELECT titles FROM table_25840200_1 WHERE notes = "Undercard of Stevenson/Bellew" |
What is Position, when Laps is 156? | columns:
- name: position
type: VARCHAR
- name: laps
type: VARCHAR
table: table_name_90
| SELECT position FROM table_name_90 WHERE laps = 156 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.