question stringlengths 12 243 | context stringlengths 45 517 | answer stringlengths 32 484 |
|---|---|---|
Who scored a 68? | columns:
- name: player
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_96
| SELECT player FROM table_name_96 WHERE score = 68 |
What is the score for the southern home team? | columns:
- name: score
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_78
| SELECT score FROM table_name_78 WHERE home_team = "southern" |
Name the player name with matches of 51 | columns:
- name: player_name
type: VARCHAR
- name: matches
type: VARCHAR
table: table_name_23
| SELECT player_name FROM table_name_23 WHERE matches = "51" |
What is the rank of the team with a time of 1:00.61? | columns:
- name: rank
type: INTEGER
- name: time
type: VARCHAR
table: table_name_1
| SELECT AVG(rank) FROM table_name_1 WHERE time = "1:00.61" |
What points has 18 for the played and bala rfc as the club? | columns:
- name: points_for
type: VARCHAR
- name: played
type: VARCHAR
- name: club
type: VARCHAR
table: table_name_31
| SELECT points_for FROM table_name_31 WHERE played = "18" AND club = "bala rfc" |
What was the final score for the game at giants stadium when the indianapolis colts were the visiting team? | columns:
- name: final_score
type: VARCHAR
- name: visiting_team
type: VARCHAR
- name: stadium
type: VARCHAR
table: table_name_9
| SELECT final_score FROM table_name_9 WHERE visiting_team = "indianapolis colts" AND stadium = "giants stadium" |
what is the percentage of democratic voters in which the registered voters is 67.8%? | columns:
- name: democratic
type: VARCHAR
- name: registered_voters
type: VARCHAR
table: table_27003223_4
| SELECT democratic FROM table_27003223_4 WHERE registered_voters = "67.8%" |
What's the duration of the Archers with Norman Painting as an actor? | columns:
- name: duration
type: VARCHAR
- name: soap_opera
type: VARCHAR
- name: actor
type: VARCHAR
table: table_name_98
| SELECT duration FROM table_name_98 WHERE soap_opera = "the archers" AND actor = "norman painting" |
For a team with a goals against less than 58, a position of 10, and a points 2 more than 53, what is the average lost? | columns:
- name: lost
type: INTEGER
- name: points_2
type: VARCHAR
- name: goals_against
type: VARCHAR
- name: position
type: VARCHAR
table: table_name_37
| SELECT AVG(lost) FROM table_name_37 WHERE goals_against < 58 AND position = 10 AND points_2 > 53 |
Who directed the episode with production code 208? | columns:
- name: directed_by
type: VARCHAR
- name: prod_code
type: VARCHAR
table: table_23403578_3
| SELECT directed_by FROM table_23403578_3 WHERE prod_code = "208" |
What is the attendance of the game on July 26? | columns:
- name: attendance
type: INTEGER
- name: date
type: VARCHAR
table: table_name_1
| SELECT SUM(attendance) FROM table_name_1 WHERE date = "july 26" |
Tell me the player for pick number less than 29 and mls team of chicago fire | columns:
- name: player
type: VARCHAR
- name: pick__number
type: VARCHAR
- name: mls_team
type: VARCHAR
table: table_name_97
| SELECT player FROM table_name_97 WHERE pick__number < 29 AND mls_team = "chicago fire" |
What is the highest Grid with a time of +1:19.905, and less than 20 laps? | columns:
- name: grid
type: INTEGER
- name: time
type: VARCHAR
- name: laps
type: VARCHAR
table: table_name_22
| SELECT MAX(grid) FROM table_name_22 WHERE time = "+1:19.905" AND laps < 20 |
Which hard has a Clay of 0–0, Grass of 0–0, Carpet of 0–0, and a Record of 1–0? | columns:
- name: hard
type: VARCHAR
- name: record
type: VARCHAR
- name: carpet
type: VARCHAR
- name: clay
type: VARCHAR
- name: grass
type: VARCHAR
table: table_name_10
| SELECT hard FROM table_name_10 WHERE clay = "0–0" AND grass = "0–0" AND carpet = "0–0" AND record = "1–0" |
Which React has a Lane smaller than 4, and a Rank larger than 4, and a Time larger than 23.22? | columns:
- name: react
type: INTEGER
- name: time
type: VARCHAR
- name: lane
type: VARCHAR
- name: rank
type: VARCHAR
table: table_name_72
| SELECT AVG(react) FROM table_name_72 WHERE lane < 4 AND rank > 4 AND time > 23.22 |
What Average Pick # has an Overall of 296? | columns:
- name: pick__number
type: INTEGER
- name: overall
type: VARCHAR
table: table_name_8
| SELECT AVG(pick__number) FROM table_name_8 WHERE overall = 296 |
What artist was released in 2005? | columns:
- name: artist
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_71
| SELECT artist FROM table_name_71 WHERE year = 2005 |
When was The Love Eterne released? | columns:
- name: year
type: VARCHAR
- name: title
type: VARCHAR
table: table_name_2
| SELECT year FROM table_name_2 WHERE title = "the love eterne" |
What is the name of the manager who was replaced by michael skibbe? | columns:
- name: name
type: VARCHAR
- name: replacement
type: VARCHAR
table: table_name_87
| SELECT name FROM table_name_87 WHERE replacement = "michael skibbe" |
What is the smallest Earnings that has a Money list rank of 6 and Starts smaller than 22? | columns:
- name: earnings__
type: INTEGER
- name: money_list_rank
type: VARCHAR
- name: starts
type: VARCHAR
table: table_name_93
| SELECT MIN(earnings__) AS $_ FROM table_name_93 WHERE money_list_rank = "6" AND starts < 22 |
What is the home team's score when south melbourne is away? | columns:
- name: home_team
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_23
| SELECT home_team AS score FROM table_name_23 WHERE away_team = "south melbourne" |
What are the average start(s) when he had $1,663,868? | columns:
- name: avg_start
type: VARCHAR
- name: winnings
type: VARCHAR
table: table_1637041_2
| SELECT avg_start FROM table_1637041_2 WHERE winnings = "$1,663,868" |
What is the club/province of Sireli Bobo, who plays wing and has less than 24 caps? | columns:
- name: club_province
type: VARCHAR
- name: player
type: VARCHAR
- name: position
type: VARCHAR
- name: caps
type: VARCHAR
table: table_name_93
| SELECT club_province FROM table_name_93 WHERE position = "wing" AND caps < 24 AND player = "sireli bobo" |
Is it material or non-material when there are 2 suits for either opponent? | columns:
- name: material_or_non_material
type: VARCHAR
- name: suits
type: VARCHAR
- name: opponents
type: VARCHAR
table: table_name_63
| SELECT material_or_non_material FROM table_name_63 WHERE suits = "2" AND opponents = "either" |
Who is the GC leader at ávila - segovia? | columns:
- name: gc_leader
type: VARCHAR
- name: course
type: VARCHAR
table: table_name_51
| SELECT gc_leader FROM table_name_51 WHERE course = "ávila - segovia" |
What competition was played on 2 June 1992? | columns:
- name: competition
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_4
| SELECT competition FROM table_name_4 WHERE date = "2 june 1992" |
Who received the bronze medal in the 2000 Sydney games? | columns:
- name: name
type: VARCHAR
- name: medal
type: VARCHAR
- name: games
type: VARCHAR
table: table_name_95
| SELECT name FROM table_name_95 WHERE medal = "bronze" AND games = "2000 sydney" |
What is Finish, when To Par is less than 14, and when Year(s) Won is "1952 , 1963"? | columns:
- name: finish
type: VARCHAR
- name: to_par
type: VARCHAR
- name: year_s__won
type: VARCHAR
table: table_name_85
| SELECT finish FROM table_name_85 WHERE to_par < 14 AND year_s__won = "1952 , 1963" |
Who is the November playmate with the July playmate Hope Marie Carlton? | columns:
- name: november
type: VARCHAR
- name: july
type: VARCHAR
table: table_name_66
| SELECT november FROM table_name_66 WHERE july = "hope marie carlton" |
Which Location has a Year larger than 2006, and a Score of 6–3, 6–3? | columns:
- name: location
type: VARCHAR
- name: year
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_78
| SELECT location FROM table_name_78 WHERE year > 2006 AND score = "6–3, 6–3" |
Name the stops for stations 36 | columns:
- name: stops
type: VARCHAR
- name: stations
type: VARCHAR
table: table_2385460_1
| SELECT stops FROM table_2385460_1 WHERE stations = 36 |
What college has Lance Moore Category:articles with hcards? | columns:
- name: college
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_94
| SELECT college FROM table_name_94 WHERE player = "lance moore category:articles with hcards" |
What's the ijekavian translation of the ikavian word grijati? | columns:
- name: ijekavian
type: VARCHAR
- name: ikavian
type: VARCHAR
table: table_27730_9
| SELECT ijekavian FROM table_27730_9 WHERE ikavian = "grijati" |
What is the verb meaning when the part 2 is blēot? | columns:
- name: verb_meaning
type: VARCHAR
- name: part_2
type: VARCHAR
table: table_name_5
| SELECT verb_meaning FROM table_name_5 WHERE part_2 = "blēot" |
in which city was charter date december 4, 2011 | columns:
- name: city
type: VARCHAR
- name: charter_date
type: VARCHAR
table: table_18159601_1
| SELECT city FROM table_18159601_1 WHERE charter_date = "December 4, 2011" |
What core clocks ( mhz ) have a 21.3 memory bandwidth ( gb/s )? | columns:
- name: core_clock___mhz__
type: VARCHAR
- name: memory_bandwidth___gb_s__
type: VARCHAR
table: table_25839957_5
| SELECT core_clock___mhz__ FROM table_25839957_5 WHERE memory_bandwidth___gb_s__ = "21.3" |
How many millions of U.S viewers watched the episode written by Liz Feldman? | columns:
- name: us_viewers__million_
type: VARCHAR
- name: written_by
type: VARCHAR
table: table_29920800_1
| SELECT us_viewers__million_ FROM table_29920800_1 WHERE written_by = "Liz Feldman" |
Name the green for otaki | columns:
- name: green
type: VARCHAR
- name: electorate
type: VARCHAR
table: table_20217811_1
| SELECT green FROM table_20217811_1 WHERE electorate = "Otaki" |
On what surface did Katarina Srebotnik play Paola Suárez? | columns:
- name: surface
type: VARCHAR
- name: opponent_in_final
type: VARCHAR
table: table_name_83
| SELECT surface FROM table_name_83 WHERE opponent_in_final = "paola suárez" |
Name the player for 68-68-75-74=285 | columns:
- name: player
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_69
| SELECT player FROM table_name_69 WHERE score = 68 - 68 - 75 - 74 = 285 |
What is the name of the city with a capacity of 41,311? | columns:
- name: city
type: VARCHAR
- name: capacity
type: VARCHAR
table: table_name_97
| SELECT city FROM table_name_97 WHERE capacity = "41,311" |
Name the height for asko esna | columns:
- name: height
type: VARCHAR
- name: player
type: VARCHAR
table: table_25058562_2
| SELECT height FROM table_25058562_2 WHERE player = "Asko Esna" |
What is Term End, when Political Party is Albanian Fascist Party, and when Term Start is 12 April 1939? | columns:
- name: term_end
type: VARCHAR
- name: political_party
type: VARCHAR
- name: term_start
type: VARCHAR
table: table_name_78
| SELECT term_end FROM table_name_78 WHERE political_party = "albanian fascist party" AND term_start = "12 april 1939" |
Who was the winner when the result was 56-0 before 1935? | columns:
- name: winner
type: VARCHAR
- name: year
type: VARCHAR
- name: result
type: VARCHAR
table: table_name_53
| SELECT winner FROM table_name_53 WHERE year < 1935 AND result = "56-0" |
How much tonnage Tonnage (GRT) has a Nationality of united kingdom, and a Date of 27 june 1941? | columns:
- name: tonnage__grt_
type: VARCHAR
- name: nationality
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_8
| SELECT COUNT(tonnage__grt_) FROM table_name_8 WHERE nationality = "united kingdom" AND date = "27 june 1941" |
When did the woman, who was married 22 may 1657, cease to be the duchess? | columns:
- name: ceased_to_be_duchess
type: VARCHAR
- name: marriage
type: VARCHAR
table: table_name_59
| SELECT ceased_to_be_duchess FROM table_name_59 WHERE marriage = "22 may 1657" |
Which Year Introduced has a Memory (GB) of 0.125–2? | columns:
- name: year_introduced
type: INTEGER
- name: memory__gb_
type: VARCHAR
table: table_name_26
| SELECT MAX(year_introduced) FROM table_name_26 WHERE memory__gb_ = "0.125–2" |
Was the record of 8-1 (1) a win or a loss? | columns:
- name: res
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_10
| SELECT res FROM table_name_10 WHERE record = "8-1 (1)" |
What place did jacky cupit take when his To par was under 13? | columns:
- name: place
type: VARCHAR
- name: to_par
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_67
| SELECT place FROM table_name_67 WHERE to_par < 13 AND player = "jacky cupit" |
How much Total has a Silver smaller than 0? | columns:
- name: total
type: VARCHAR
- name: silver
type: INTEGER
table: table_name_38
| SELECT COUNT(total) FROM table_name_38 WHERE silver < 0 |
Name the howard bake when bush had 66% | columns:
- name: howard_baker
type: VARCHAR
- name: george_h_w_bush
type: VARCHAR
table: table_name_64
| SELECT howard_baker FROM table_name_64 WHERE george_h_w_bush = "66%" |
What was 2009, when 2001 was, "not masters series"? | columns:
- name: Id
type: VARCHAR
table: table_name_5
| SELECT 2009 FROM table_name_5 WHERE 2001 = "not masters series" |
Name all the team clasification where the combination classification is mederic clain | columns:
- name: team_classification
type: VARCHAR
- name: combination_classification
type: VARCHAR
table: table_15088557_1
| SELECT team_classification FROM table_15088557_1 WHERE combination_classification = "Mederic Clain" |
What team was 2 on November 22, 2008 when the result was 1-0? | columns:
- name: team_2
type: VARCHAR
- name: date
type: VARCHAR
- name: result
type: VARCHAR
table: table_name_82
| SELECT team_2 FROM table_name_82 WHERE date = "november 22, 2008" AND result = "1-0" |
In what format was the release from the Nebt068 catalog on April 11, 2005 in? | columns:
- name: format
type: VARCHAR
- name: date
type: VARCHAR
- name: catalog
type: VARCHAR
table: table_name_62
| SELECT format FROM table_name_62 WHERE date = "april 11, 2005" AND catalog = "nebt068" |
Who is the chairman when the current manager is bob peeters? | columns:
- name: chairman
type: VARCHAR
- name: current_manager
type: VARCHAR
table: table_27374004_2
| SELECT chairman FROM table_27374004_2 WHERE current_manager = "Bob Peeters" |
Which CFL team was pick #35? | columns:
- name: cfl_team
type: VARCHAR
- name: pick__number
type: VARCHAR
table: table_30108930_6
| SELECT cfl_team FROM table_30108930_6 WHERE pick__number = 35 |
Who was the home team when real juventud was the away team when there were more than 1189 in attendance? | columns:
- name: home
type: VARCHAR
- name: attendance
type: VARCHAR
- name: away
type: VARCHAR
table: table_name_4
| SELECT home FROM table_name_4 WHERE attendance > 1189 AND away = "real juventud" |
What is the assists for the Team of Florida and the total points of 75? | columns:
- name: assists
type: VARCHAR
- name: team
type: VARCHAR
- name: total_points
type: VARCHAR
table: table_name_29
| SELECT assists FROM table_name_29 WHERE team = "florida" AND total_points = "75" |
What's the series number of the episode written by Tim Schlattmann? | columns:
- name: no_in_series
type: INTEGER
- name: written_by
type: VARCHAR
table: table_24132083_1
| SELECT MIN(no_in_series) FROM table_24132083_1 WHERE written_by = "Tim Schlattmann" |
Who had the high assists while Erick Dampier (8) had the high rebounds? | columns:
- name: high_assists
type: VARCHAR
- name: high_rebounds
type: VARCHAR
table: table_17288869_7
| SELECT high_assists FROM table_17288869_7 WHERE high_rebounds = "Erick Dampier (8)" |
What is Venue, when Figures is 5/29? | columns:
- name: venue
type: VARCHAR
- name: figures
type: VARCHAR
table: table_name_9
| SELECT venue FROM table_name_9 WHERE figures = "5/29" |
What is the name of the settlement that had a population of 9443 in 2011? | columns:
- name: settlement
type: VARCHAR
- name: population__2011_
type: VARCHAR
table: table_2562572_53
| SELECT settlement FROM table_2562572_53 WHERE population__2011_ = 9443 |
What is the 1955 rate when the 1956 is more than 2.9, and 1953 is larger than 4.5? | columns:
- name: Id
type: VARCHAR
table: table_name_7
| SELECT SUM(1955) FROM table_name_7 WHERE 1956 > 2.9 AND 1953 > 4.5 |
Which Week has an Attendance larger than 65,070? | columns:
- name: week
type: INTEGER
- name: attendance
type: INTEGER
table: table_name_57
| SELECT MAX(week) FROM table_name_57 WHERE attendance > 65 OFFSET 070 |
Which nationality is associated with Temple? | columns:
- name: nationality
type: VARCHAR
- name: school_country
type: VARCHAR
table: table_name_72
| SELECT nationality FROM table_name_72 WHERE school_country = "temple" |
When vp8 ( webm ) is 6.0, how much is the vp9 ( webm )? | columns:
- name: vp9___webm__
type: VARCHAR
- name: vp8___webm__
type: VARCHAR
table: table_26099252_1
| SELECT vp9___webm__ FROM table_26099252_1 WHERE vp8___webm__ = "6.0" |
When was the game at Essendon? | columns:
- name: date
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_83
| SELECT date FROM table_name_83 WHERE away_team = "essendon" |
what's the try bonus with club being abercwmboi rfc | columns:
- name: try_bonus
type: VARCHAR
- name: club
type: VARCHAR
table: table_13940275_5
| SELECT try_bonus FROM table_13940275_5 WHERE club = "Abercwmboi RFC" |
What is the score in the final in the year 1994? | columns:
- name: score_in_the_final
type: VARCHAR
- name: year
type: VARCHAR
table: table_22834834_2
| SELECT score_in_the_final FROM table_22834834_2 WHERE year = 1994 |
What is the percentage of Atheism associated with an other percentage of 0.08%? | columns:
- name: atheism
type: VARCHAR
- name: other
type: VARCHAR
table: table_name_90
| SELECT atheism FROM table_name_90 WHERE other = "0.08%" |
In how many games did Terrence Williams (9) have High assists? | columns:
- name: score
type: VARCHAR
- name: high_assists
type: VARCHAR
table: table_27700375_6
| SELECT COUNT(score) FROM table_27700375_6 WHERE high_assists = "Terrence Williams (9)" |
Name the country when dar is 16:9 for italian english for disney xd +2 | columns:
- name: country
type: VARCHAR
- name: television_service
type: VARCHAR
- name: dar
type: VARCHAR
- name: language
type: VARCHAR
table: table_15887683_9
| SELECT country FROM table_15887683_9 WHERE dar = "16:9" AND language = "Italian English" AND television_service = "Disney XD +2" |
When was alfred university founded? | columns:
- name: founded
type: INTEGER
- name: institution
type: VARCHAR
table: table_262476_3
| SELECT MAX(founded) FROM table_262476_3 WHERE institution = "Alfred University" |
What is the high loss total for players with zero wins and a win % greater than 0? | columns:
- name: losses
type: INTEGER
- name: wins
type: VARCHAR
- name: win__percentage
type: VARCHAR
table: table_name_82
| SELECT MAX(losses) FROM table_name_82 WHERE wins = 0 AND win__percentage > 0 |
What is Eric Johnson at in the poll where Karen Handel is at 12%? | columns:
- name: eric_johnson
type: VARCHAR
- name: karen_handel
type: VARCHAR
table: table_name_38
| SELECT eric_johnson FROM table_name_38 WHERE karen_handel = "12%" |
Who was the away team when the attendance was 7,891? | columns:
- name: away_team
type: VARCHAR
- name: attendance
type: VARCHAR
table: table_name_64
| SELECT away_team FROM table_name_64 WHERE attendance = "7,891" |
What is the Population of the group that has a Height (m) of 15 and an Area (ha) of 00017 17? | columns:
- name: population
type: VARCHAR
- name: height__m_
type: VARCHAR
- name: area___ha__
type: VARCHAR
table: table_name_30
| SELECT population FROM table_name_30 WHERE height__m_ = 15 AND area___ha__ = "00017 17" |
Name the name of award for zubeen garg | columns:
- name: name_of_award
type: VARCHAR
- name: awardee_s_
type: VARCHAR
table: table_24446718_7
| SELECT name_of_award FROM table_24446718_7 WHERE awardee_s_ = "Zubeen Garg" |
What venue had a Score of 120-108? | columns:
- name: venue
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_1
| SELECT venue FROM table_name_1 WHERE score = "120-108" |
Which Against has Losses larger than 2, and Wins of 8, and Byes smaller than 0? | columns:
- name: against
type: INTEGER
- name: byes
type: VARCHAR
- name: losses
type: VARCHAR
- name: wins
type: VARCHAR
table: table_name_65
| SELECT SUM(against) FROM table_name_65 WHERE losses > 2 AND wins = 8 AND byes < 0 |
Who was the 3rd performer when christopher smith was the 2nd performer? | columns:
- name: performer_3
type: VARCHAR
- name: performer_2
type: VARCHAR
table: table_name_19
| SELECT performer_3 FROM table_name_19 WHERE performer_2 = "christopher smith" |
Name the last for softball before 2000 | columns:
- name: last
type: VARCHAR
- name: year
type: VARCHAR
- name: sport
type: VARCHAR
table: table_name_95
| SELECT last FROM table_name_95 WHERE year < 2000 AND sport = "softball" |
Which Team has a Pos larger than 3, and a Make of toyota, and a Car # smaller than 59, and a Driver of mike skinner? | columns:
- name: team
type: VARCHAR
- name: driver
type: VARCHAR
- name: car__number
type: VARCHAR
- name: pos
type: VARCHAR
- name: make
type: VARCHAR
table: table_name_75
| SELECT team FROM table_name_75 WHERE pos > 3 AND make = "toyota" AND car__number < 59 AND driver = "mike skinner" |
If torque is n·m (lb·ft) @1600–2400 rpm and applications is 2000 w90x sprinter, what is the power? | columns:
- name: power
type: VARCHAR
- name: torque
type: VARCHAR
- name: applications
type: VARCHAR
table: table_21021796_1
| SELECT power FROM table_21021796_1 WHERE torque = "N·m (lb·ft) @1600–2400 rpm" AND applications = "2000 W90x Sprinter" |
Name the total number of nicknames for andrew college | columns:
- name: nickname
type: VARCHAR
- name: institution
type: VARCHAR
table: table_16734640_1
| SELECT COUNT(nickname) FROM table_16734640_1 WHERE institution = "Andrew College" |
How many different finales had the English title "Beyond the Realm of Conscience"? | columns:
- name: finale
type: VARCHAR
- name: english_title
type: VARCHAR
table: table_19210674_1
| SELECT COUNT(finale) FROM table_19210674_1 WHERE english_title = "Beyond the Realm of Conscience" |
The singular word of hand uses what plural word? | columns:
- name: plural_word
type: VARCHAR
- name: singular_word
type: VARCHAR
table: table_name_20
| SELECT plural_word FROM table_name_20 WHERE singular_word = "hand" |
What college did the player who was drafted by Calgary go to? | columns:
- name: college
type: VARCHAR
- name: cfl_team
type: VARCHAR
table: table_28059992_6
| SELECT college FROM table_28059992_6 WHERE cfl_team = "Calgary" |
Which game is named tsegay kebede category:articles with hcards? | columns:
- name: games
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_70
| SELECT games FROM table_name_70 WHERE name = "tsegay kebede category:articles with hcards" |
What is the fewest goals for when goal difference is +10 and goals against is more than 61? | columns:
- name: goals_for
type: INTEGER
- name: goal_difference
type: VARCHAR
- name: goals_against
type: VARCHAR
table: table_name_20
| SELECT MIN(goals_for) FROM table_name_20 WHERE goal_difference = "+10" AND goals_against > 61 |
What is Run 1, when Run 4 is 1:56.59? | columns:
- name: run_1
type: VARCHAR
- name: run_4
type: VARCHAR
table: table_name_62
| SELECT run_1 FROM table_name_62 WHERE run_4 = "1:56.59" |
How much 1969 has a 1967 smaller than 0.73, and a 1964 larger than 0.07? | columns:
- name: Id
type: VARCHAR
table: table_name_18
| SELECT COUNT(1969) FROM table_name_18 WHERE 1967 < 0.73 AND 1964 > 0.07 |
what is the elevation of south america? | columns:
- name: elevation_ft
type: VARCHAR
- name: continent
type: VARCHAR
table: table_27435931_1
| SELECT elevation_ft FROM table_27435931_1 WHERE continent = "South America" |
What is the total gold from New zealand and a rank less than 14? | columns:
- name: gold
type: INTEGER
- name: nation
type: VARCHAR
- name: rank
type: VARCHAR
table: table_name_18
| SELECT SUM(gold) FROM table_name_18 WHERE nation = "new zealand" AND rank < 14 |
Who is the outgoing head coach when the incoming head coach is abdollah veysi? | columns:
- name: outgoing_head_coach
type: VARCHAR
- name: incoming_head_coach
type: VARCHAR
table: table_27383390_4
| SELECT outgoing_head_coach FROM table_27383390_4 WHERE incoming_head_coach = "Abdollah Veysi" |
Which opponent led to a 56-59 record? | columns:
- name: opponent
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_53
| SELECT opponent FROM table_name_53 WHERE record = "56-59" |
Which of the Latest version had a 16-bit Architecture and was released on Release date 1985-11-20? | columns:
- name: latest_version
type: VARCHAR
- name: architecture
type: VARCHAR
- name: release_date
type: VARCHAR
table: table_name_29
| SELECT latest_version FROM table_name_29 WHERE architecture = "16-bit" AND release_date = "1985-11-20" |
Name the winner for nick nuyens for general classification and stage of 2 | columns:
- name: winner
type: VARCHAR
- name: general_classification
type: VARCHAR
- name: stage
type: VARCHAR
table: table_name_96
| SELECT winner FROM table_name_96 WHERE general_classification = "nick nuyens" AND stage = "2" |
Who was the opponent when Steven Smith had 3.3 overs? | columns:
- name: opponent
type: VARCHAR
- name: overs
type: VARCHAR
table: table_name_45
| SELECT opponent FROM table_name_45 WHERE overs = 3.3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.