question stringlengths 12 243 | context stringlengths 45 517 | answer stringlengths 32 484 |
|---|---|---|
Which title was developed by Battlecry Studios? | columns:
- name: title
type: VARCHAR
- name: developer
type: VARCHAR
table: table_name_96
| SELECT title FROM table_name_96 WHERE developer = "battlecry studios" |
what is the sum of wins for the ottawa hockey club when the games played is less than 10? | columns:
- name: wins
type: INTEGER
- name: team
type: VARCHAR
- name: games_played
type: VARCHAR
table: table_name_53
| SELECT SUM(wins) FROM table_name_53 WHERE team = "ottawa hockey club" AND games_played < 10 |
What was Melbourne's score when they were the home team? | columns:
- name: home_team
type: VARCHAR
table: table_name_37
| SELECT home_team AS score FROM table_name_37 WHERE home_team = "melbourne" |
What was the smallest crowd of vfl park? | columns:
- name: crowd
type: INTEGER
- name: venue
type: VARCHAR
table: table_name_83
| SELECT MIN(crowd) FROM table_name_83 WHERE venue = "vfl park" |
What was the score of Wally Armstrong? | columns:
- name: score
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_49
| SELECT score FROM table_name_49 WHERE player = "wally armstrong" |
Which Wins has a Top-5 of 6? | columns:
- name: wins
type: INTEGER
- name: top_5
type: VARCHAR
table: table_name_26
| SELECT AVG(wins) FROM table_name_26 WHERE top_5 = 6 |
What is the largest amount of goals when the points are less than 0? | columns:
- name: goals
type: INTEGER
- name: points
type: INTEGER
table: table_name_3
| SELECT MAX(goals) FROM table_name_3 WHERE points < 0 |
Which film title used in nomination has vinterkyss as the original title? | columns:
- name: film_title_used_in_nomination
type: VARCHAR
- name: original_title
type: VARCHAR
table: table_21655290_1
| SELECT film_title_used_in_nomination FROM table_21655290_1 WHERE original_title = "Vinterkyss" |
What is the birthplace of the player who is 190 CM tall, plays the D position, and wears number 11? | columns:
- name: birthplace
type: VARCHAR
- name: jersey_number
type: VARCHAR
- name: position
type: VARCHAR
- name: height__cm_
type: VARCHAR
table: table_name_79
| SELECT birthplace FROM table_name_79 WHERE position = "d" AND height__cm_ = 190 AND jersey_number = 11 |
How many placements in total does russia have? | columns:
- name: total
type: INTEGER
- name: country
type: VARCHAR
table: table_28634206_1
| SELECT MAX(total) FROM table_28634206_1 WHERE country = "Russia" |
What city is the indianapolis speedrome in? | columns:
- name: city
type: VARCHAR
- name: track
type: VARCHAR
table: table_name_21
| SELECT city FROM table_name_21 WHERE track = "indianapolis speedrome" |
What is the date of the episode in which the presenter is Johnny Vaughan? | columns:
- name: date
type: VARCHAR
- name: presenter
type: VARCHAR
table: table_20466963_4
| SELECT date FROM table_20466963_4 WHERE presenter = "Johnny Vaughan" |
What was the result of the game in halifax? | columns:
- name: result
type: VARCHAR
- name: city
type: VARCHAR
table: table_name_34
| SELECT result FROM table_name_34 WHERE city = "halifax" |
What is Tournament, when Outcome is Winner, and when Date is 13 July 2013? | columns:
- name: tournament
type: VARCHAR
- name: outcome
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_63
| SELECT tournament FROM table_name_63 WHERE outcome = "winner" AND date = "13 july 2013" |
What is the 1989 result of the tournament that had a 1987 result of 1R? | columns:
- name: Id
type: VARCHAR
table: table_name_71
| SELECT 1989 FROM table_name_71 WHERE 1987 = "1r" |
Who drove for Mathiasen Motorsports with dane cameron as pole position? | columns:
- name: winning_driver
type: VARCHAR
- name: winning_team
type: VARCHAR
- name: pole_position
type: VARCHAR
table: table_name_62
| SELECT winning_driver FROM table_name_62 WHERE winning_team = "mathiasen motorsports" AND pole_position = "dane cameron" |
What is Record, when Method is "Technical Submission (Rear Naked Choke)"? | columns:
- name: record
type: VARCHAR
- name: method
type: VARCHAR
table: table_name_4
| SELECT record FROM table_name_4 WHERE method = "technical submission (rear naked choke)" |
How many average points did the team Minardi Team USA have when there was a grid 3 and more laps than 68? | columns:
- name: points
type: INTEGER
- name: laps
type: VARCHAR
- name: team
type: VARCHAR
- name: grid
type: VARCHAR
table: table_name_21
| SELECT AVG(points) FROM table_name_21 WHERE team = "minardi team usa" AND grid = 3 AND laps > 68 |
What are the notes of the satellite whose nssdc id number is 1959-002a? | columns:
- name: notes
type: VARCHAR
- name: nssdc_id_no
type: VARCHAR
table: table_191323_2
| SELECT notes FROM table_191323_2 WHERE nssdc_id_no = "1959-002A" |
When t3 is the best finish what is the lowest amount of tournaments played? | columns:
- name: tournaments_played
type: INTEGER
- name: best_finish
type: VARCHAR
table: table_24330912_1
| SELECT MIN(tournaments_played) FROM table_24330912_1 WHERE best_finish = "T3" |
how many times was hancock % considered when starky % was 20.96% | columns:
- name: hancock__percentage
type: VARCHAR
- name: starky__percentage
type: VARCHAR
table: table_19681738_1
| SELECT COUNT(hancock__percentage) FROM table_19681738_1 WHERE starky__percentage = "20.96%" |
shows for the artist Santana featuring the product g&b? | columns:
- name: volume
type: VARCHAR
- name: artist
type: VARCHAR
table: table_name_78
| SELECT volume AS :issue FROM table_name_78 WHERE artist = "santana featuring the product g&b" |
Opponent of @ blue jays, and a Date of october 6 had what score? | columns:
- name: score
type: VARCHAR
- name: opponent
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_19
| SELECT score FROM table_name_19 WHERE opponent = "@ blue jays" AND date = "october 6" |
What is the home team when the visiting team is the Mavericks? | columns:
- name: home
type: VARCHAR
- name: visitor
type: VARCHAR
table: table_name_26
| SELECT home FROM table_name_26 WHERE visitor = "mavericks" |
What is the lowest Avg/G with a Long less than 0? | columns:
- name: avg_g
type: INTEGER
- name: long
type: INTEGER
table: table_name_99
| SELECT MIN(avg_g) FROM table_name_99 WHERE long < 0 |
What away team is the home team richmond? | columns:
- name: away_team
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_16
| SELECT away_team FROM table_name_16 WHERE home_team = "richmond" |
Result of w 21–7 had what average week? | columns:
- name: week
type: INTEGER
- name: result
type: VARCHAR
table: table_name_96
| SELECT AVG(week) FROM table_name_96 WHERE result = "w 21–7" |
What is the total number of people in 2011 speaking the mother tongue language spoken by 120 in 2006? | columns:
- name: population__2011_
type: VARCHAR
- name: population__2006_
type: VARCHAR
table: table_name_49
| SELECT COUNT(population__2011_) FROM table_name_49 WHERE population__2006_ = 120 |
What is the date for 45,000 in attendance? | columns:
- name: date
type: VARCHAR
- name: attendance
type: VARCHAR
table: table_name_32
| SELECT date FROM table_name_32 WHERE attendance = "45,000" |
Where was the game located on January 23, 2008? | columns:
- name: location
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_93
| SELECT location FROM table_name_93 WHERE date = "january 23, 2008" |
What is the sum of the points when Carlos drove for repsol honda in 8th place? | columns:
- name: points
type: INTEGER
- name: team
type: VARCHAR
- name: rank
type: VARCHAR
table: table_name_93
| SELECT SUM(points) FROM table_name_93 WHERE team = "repsol honda" AND rank = "8th" |
When mount kobowre is the peak what is the highest elevation in meters? | columns:
- name: elevation__m_
type: INTEGER
- name: peak
type: VARCHAR
table: table_18946749_1
| SELECT MAX(elevation__m_) FROM table_18946749_1 WHERE peak = "Mount Kobowre" |
Name the years in orlando that the player from concord hs was in | columns:
- name: years_in_orlando
type: VARCHAR
- name: school_club_team
type: VARCHAR
table: table_15621965_10
| SELECT years_in_orlando FROM table_15621965_10 WHERE school_club_team = "Concord HS" |
What tournament had an extra of 3:06.94 s? | columns:
- name: tournament
type: VARCHAR
- name: extra
type: VARCHAR
table: table_name_60
| SELECT tournament FROM table_name_60 WHERE extra = "3:06.94 s" |
What is the highest Attendance, when Date is "Oct. 26"? | columns:
- name: attendance
type: INTEGER
- name: date
type: VARCHAR
table: table_name_25
| SELECT MAX(attendance) FROM table_name_25 WHERE date = "oct. 26" |
Who was the French Elector Elevated on 1288, May 16? | columns:
- name: elector
type: VARCHAR
- name: nationality
type: VARCHAR
- name: elevated
type: VARCHAR
table: table_name_92
| SELECT elector FROM table_name_92 WHERE nationality = "french" AND elevated = "1288, may 16" |
What is the date released when the Left Bloc had 3.2%? | columns:
- name: date_released
type: VARCHAR
- name: left_bloc
type: VARCHAR
table: table_name_35
| SELECT date_released FROM table_name_35 WHERE left_bloc = "3.2%" |
What College team has 8 rounds? | columns:
- name: college_junior_club_team__league_
type: VARCHAR
- name: round
type: VARCHAR
table: table_name_31
| SELECT college_junior_club_team__league_ FROM table_name_31 WHERE round = 8 |
What's the record for january 10? | columns:
- name: record
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_48
| SELECT record FROM table_name_48 WHERE date = "january 10" |
What novelty has USA as the location, and coryloides as the name? | columns:
- name: novelty
type: VARCHAR
- name: location
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_70
| SELECT novelty FROM table_name_70 WHERE location = "usa" AND name = "coryloides" |
Which site has a Cost free and a Editor of jsvi? | columns:
- name: site
type: VARCHAR
- name: cost___us$__
type: VARCHAR
- name: editor
type: VARCHAR
table: table_name_46
| SELECT site FROM table_name_46 WHERE cost___us$__ = "free" AND editor = "jsvi" |
What was the vote when the air date is 4 october 1997? | columns:
- name: vote
type: VARCHAR
- name: air_date
type: VARCHAR
table: table_25016824_2
| SELECT vote FROM table_25016824_2 WHERE air_date = "4 October 1997" |
What's the rank that has a total of less than 1? | columns:
- name: rank
type: INTEGER
- name: total
type: INTEGER
table: table_name_19
| SELECT SUM(rank) FROM table_name_19 WHERE total < 1 |
Who wrote the episode with series number 45? | columns:
- name: written_by
type: VARCHAR
- name: no_in_series
type: VARCHAR
table: table_20046379_3
| SELECT written_by FROM table_20046379_3 WHERE no_in_series = "45" |
What is the sum of Pick #, when College is Laurier? | columns:
- name: pick__number
type: INTEGER
- name: college
type: VARCHAR
table: table_name_79
| SELECT SUM(pick__number) FROM table_name_79 WHERE college = "laurier" |
what is the stream(s) and / or lake(s) when the date founded is 1959? | columns:
- name: stream_s__and___or_lake_s_
type: VARCHAR
- name: date_founded
type: VARCHAR
table: table_name_42
| SELECT stream_s__and___or_lake_s_ FROM table_name_42 WHERE date_founded = 1959 |
Who was the Home captain when the Result was Aus by 218 runs? | columns:
- name: home_captain
type: VARCHAR
- name: result
type: VARCHAR
table: table_name_22
| SELECT home_captain FROM table_name_22 WHERE result = "aus by 218 runs" |
Say the frequency of 1290 khz | columns:
- name: format
type: VARCHAR
- name: frequency
type: VARCHAR
table: table_name_31
| SELECT format FROM table_name_31 WHERE frequency = "1290 khz" |
What is the total that wehn Lithuania is the nation, and Silver is more than 0? | columns:
- name: total
type: INTEGER
- name: nation
type: VARCHAR
- name: silver
type: VARCHAR
table: table_name_35
| SELECT MIN(total) FROM table_name_35 WHERE nation = "lithuania" AND silver > 0 |
How many Points has Wins larger than 0? | columns:
- name: points
type: VARCHAR
- name: wins
type: INTEGER
table: table_name_24
| SELECT COUNT(points) FROM table_name_24 WHERE wins > 0 |
Which club had more than 2 FA trophies and more than 2 FA cups? | columns:
- name: club
type: VARCHAR
- name: fa_trophy
type: VARCHAR
- name: fa_cup
type: VARCHAR
table: table_name_34
| SELECT club FROM table_name_34 WHERE fa_trophy > 2 AND fa_cup > 2 |
Who has ties of 5? | columns:
- name: name
type: VARCHAR
- name: ties
type: VARCHAR
table: table_name_24
| SELECT name FROM table_name_24 WHERE ties = 5 |
What was the score against the team with an 11-3 record against the Hawks? | columns:
- name: score
type: VARCHAR
- name: record
type: VARCHAR
table: table_23248910_5
| SELECT score FROM table_23248910_5 WHERE record = "11-3" |
What is the start address when the network number bit field is 16? | columns:
- name: start_address
type: VARCHAR
- name: size_of_network_number_bit_field
type: VARCHAR
table: table_name_88
| SELECT start_address FROM table_name_88 WHERE size_of_network_number_bit_field = "16" |
What was the score of the game with a loss of Mercedes (0-1)? | columns:
- name: score
type: VARCHAR
- name: loss
type: VARCHAR
table: table_name_47
| SELECT score FROM table_name_47 WHERE loss = "mercedes (0-1)" |
Which mission number has alternate name 1962-f01 | columns:
- name: mission_no
type: VARCHAR
- name: alt_name
type: VARCHAR
table: table_191323_2
| SELECT mission_no FROM table_191323_2 WHERE alt_name = "1962-F01" |
Who is the champion of the title previously held by Lash? | columns:
- name: champion_s_
type: VARCHAR
- name: previous_champion_s_
type: VARCHAR
table: table_name_4
| SELECT champion_s_ FROM table_name_4 WHERE previous_champion_s_ = "lash" |
What game was held against a team with a 6-3 record against the Cowboys? | columns:
- name: game
type: VARCHAR
- name: record
type: VARCHAR
table: table_22801331_1
| SELECT game FROM table_22801331_1 WHERE record = "6-3" |
What was the name for the locomotive with a type of 2-8-0 and a number of 20? | columns:
- name: name
type: VARCHAR
- name: type
type: VARCHAR
- name: number
type: VARCHAR
table: table_name_23
| SELECT name FROM table_name_23 WHERE type = "2-8-0" AND number = 20 |
what skipper has the sail number aus60000? | columns:
- name: skipper
type: VARCHAR
- name: sail_number
type: VARCHAR
table: table_25561560_2
| SELECT skipper FROM table_25561560_2 WHERE sail_number = "AUS60000" |
Name the sum of points for 1984 | columns:
- name: points
type: INTEGER
- name: year
type: INTEGER
table: table_name_95
| SELECT SUM(points) FROM table_name_95 WHERE year < 1984 |
Who was the winner when Niki Lauda held pole position? | columns:
- name: race
type: VARCHAR
- name: pole_position
type: VARCHAR
table: table_name_48
| SELECT race AS Winner FROM table_name_48 WHERE pole_position = "niki lauda" |
what is the least laps when the grid is 5? | columns:
- name: laps
type: INTEGER
- name: grid
type: VARCHAR
table: table_name_94
| SELECT MIN(laps) FROM table_name_94 WHERE grid = 5 |
What District was Incumbent Steve Israel First elected after 1998 in the Democratic party? | columns:
- name: district
type: VARCHAR
- name: incumbent
type: VARCHAR
- name: first_elected
type: VARCHAR
- name: party
type: VARCHAR
table: table_name_1
| SELECT district FROM table_name_1 WHERE first_elected > 1998 AND party = "democratic" AND incumbent = "steve israel" |
What is the name listed for the country that has a status of loaned and a moving to listed as leyton orient? | columns:
- name: name
type: VARCHAR
- name: status
type: VARCHAR
- name: moving_to
type: VARCHAR
table: table_name_57
| SELECT name FROM table_name_57 WHERE status = "loaned" AND moving_to = "leyton orient" |
In Western Oval, what was the away team score? | columns:
- name: away_team
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_33
| SELECT away_team AS score FROM table_name_33 WHERE venue = "western oval" |
Which method took place against Chris Herring? | columns:
- name: method
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_73
| SELECT method FROM table_name_73 WHERE opponent = "chris herring" |
Which team is John Williams a rider for? | columns:
- name: team
type: VARCHAR
- name: rider
type: VARCHAR
table: table_name_7
| SELECT team FROM table_name_7 WHERE rider = "john williams" |
What is the least amount of wins when against is 1314? | columns:
- name: wins
type: INTEGER
- name: against
type: VARCHAR
table: table_name_41
| SELECT MIN(wins) FROM table_name_41 WHERE against = 1314 |
What was the aggregate in the match with a team 1 of Dinamo Minsk? | columns:
- name: agg
type: VARCHAR
- name: team_1
type: VARCHAR
table: table_name_27
| SELECT agg FROM table_name_27 WHERE team_1 = "dinamo minsk" |
In what format was the release that was dated 7 April 2003 from catalog 584 2112? | columns:
- name: format
type: VARCHAR
- name: date
type: VARCHAR
- name: catalog
type: VARCHAR
table: table_name_18
| SELECT format FROM table_name_18 WHERE date = "7 april 2003" AND catalog = "584 2112" |
What was the high assists from a high points of dorell wright (20)? | columns:
- name: high_assists
type: VARCHAR
- name: high_points
type: VARCHAR
table: table_name_98
| SELECT high_assists FROM table_name_98 WHERE high_points = "dorell wright (20)" |
What player has over 1 first apperance and over 32 first team goals? | columns:
- name: player
type: VARCHAR
- name: first_team_appearances
type: VARCHAR
- name: first_team_goals
type: VARCHAR
table: table_name_97
| SELECT player FROM table_name_97 WHERE first_team_appearances > 1 AND first_team_goals = 32 |
What is the grand final television commentator status after 1959 when Dave was the grand final dual television commentator and Marie Myriam was the spokesperson? | columns:
- name: grand_final_television_commentator
type: VARCHAR
- name: spokesperson
type: VARCHAR
- name: year_s_
type: VARCHAR
- name: grand_final_dual_television_commentator
type: VARCHAR
table: table_name_20
| SELECT grand_final_television_commentator FROM table_name_20 WHERE year_s_ > 1959 AND grand_final_dual_television_commentator = "dave" AND spokesperson = "marie myriam" |
Who was the leader at the summit for the race in 2005? | columns:
- name: leader_at_the_summit
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_23
| SELECT leader_at_the_summit FROM table_name_23 WHERE year = 2005 |
What club did Cyril Christiani play for? | columns:
- name: club
type: VARCHAR
- name: player
type: VARCHAR
table: table_27771406_1
| SELECT club FROM table_27771406_1 WHERE player = "Cyril Christiani" |
Which Time/Retired has a Grid smaller than 3, and a Driver of mika häkkinen? | columns:
- name: time_retired
type: VARCHAR
- name: grid
type: VARCHAR
- name: driver
type: VARCHAR
table: table_name_58
| SELECT time_retired FROM table_name_58 WHERE grid < 3 AND driver = "mika häkkinen" |
What's the result when the Carolina Panthers were the opponent? | columns:
- name: result
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_86
| SELECT result FROM table_name_86 WHERE opponent = "carolina panthers" |
When καθ are the letters what is the nickname? | columns:
- name: nickname
type: VARCHAR
- name: letters
type: VARCHAR
table: table_28436909_4
| SELECT nickname FROM table_28436909_4 WHERE letters = "ΚΑΘ" |
When has a Week of 8? | columns:
- name: date
type: VARCHAR
- name: week
type: VARCHAR
table: table_name_73
| SELECT date FROM table_name_73 WHERE week = 8 |
How many production numbers have a Title of bosko in dutch? | columns:
- name: production_num
type: INTEGER
- name: title
type: VARCHAR
table: table_name_93
| SELECT SUM(production_num) FROM table_name_93 WHERE title = "bosko in dutch" |
What score in the final had a tournament of $25,000 Glasgow, Great Britain? | columns:
- name: score_in_the_final
type: VARCHAR
- name: tournament
type: VARCHAR
table: table_name_82
| SELECT score_in_the_final FROM table_name_82 WHERE tournament = "$25,000 glasgow, great britain" |
What were the lowest amount of points for season 1994? | columns:
- name: points
type: INTEGER
- name: season
type: VARCHAR
table: table_name_33
| SELECT MIN(points) FROM table_name_33 WHERE season = "1994" |
What penalties has P.I.M. of 34.5? | columns:
- name: penalties
type: VARCHAR
- name: pim
type: VARCHAR
table: table_name_88
| SELECT penalties FROM table_name_88 WHERE pim = "34.5" |
What is Chesterfield Spires average? | columns:
- name: average
type: VARCHAR
- name: club
type: VARCHAR
table: table_21991074_1
| SELECT average FROM table_21991074_1 WHERE club = "Chesterfield Spires" |
What's the Proto-Germanic when the German is /t/? | columns:
- name: proto_germanic
type: VARCHAR
- name: german
type: VARCHAR
table: table_name_48
| SELECT proto_germanic FROM table_name_48 WHERE german = "/t/" |
What is Player, when Position is "SS", and when Pick is "11"? | columns:
- name: player
type: VARCHAR
- name: position
type: VARCHAR
- name: pick
type: VARCHAR
table: table_name_61
| SELECT player FROM table_name_61 WHERE position = "ss" AND pick = 11 |
What was willie goggin's score? | columns:
- name: score
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_49
| SELECT score FROM table_name_49 WHERE player = "willie goggin" |
What was the air date of the episod that had 456.58 thousand viewers? | columns:
- name: original_air_date
type: VARCHAR
- name: nz_viewers__thousand_
type: VARCHAR
table: table_23114705_7
| SELECT original_air_date FROM table_23114705_7 WHERE nz_viewers__thousand_ = "456.58" |
How many results did the GT1 Winning Team No. 50 Larbre Compétition on the Algarve circuit? | columns:
- name: results
type: VARCHAR
- name: circuit
type: VARCHAR
- name: gt1_winning_team
type: VARCHAR
table: table_24865763_2
| SELECT COUNT(results) FROM table_24865763_2 WHERE circuit = "Algarve" AND gt1_winning_team = "No. 50 Larbre Compétition" |
What is the highest Peroutka with 46 others, and less than 15 electors? | columns:
- name: peroutka
type: INTEGER
- name: others
type: VARCHAR
- name: electors
type: VARCHAR
table: table_name_69
| SELECT MAX(peroutka) FROM table_name_69 WHERE others = 46 AND electors < 15 |
How many starts had an avg start of less than 37 and won $1,636,827? | columns:
- name: starts
type: INTEGER
- name: winnings
type: VARCHAR
- name: avg_start
type: VARCHAR
table: table_name_66
| SELECT SUM(starts) FROM table_name_66 WHERE winnings = "$1,636,827" AND avg_start < 37 |
How many points did the opponents score on the game where Sooners' record was 16-5? | columns:
- name: opp_points
type: INTEGER
- name: record
type: VARCHAR
table: table_22903773_2
| SELECT MAX(opp_points) FROM table_22903773_2 WHERE record = "16-5" |
What is the Series leader with a Date that is may 31? | columns:
- name: series_leader
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_64
| SELECT series_leader FROM table_name_64 WHERE date = "may 31" |
What was the 18 to 49 rating when 9.50 million watched? | columns:
- name: rating__18_49_
type: VARCHAR
- name: viewers__millions_
type: VARCHAR
table: table_24689168_5
| SELECT rating__18_49_ FROM table_24689168_5 WHERE viewers__millions_ = "9.50" |
Who was the opponent in the bout that led to a win in a time of 1:21? | columns:
- name: opponent
type: VARCHAR
- name: res
type: VARCHAR
- name: time
type: VARCHAR
table: table_name_47
| SELECT opponent FROM table_name_47 WHERE res = "win" AND time = "1:21" |
What series had a high points of Prince (23)? | columns:
- name: series
type: VARCHAR
- name: high_points
type: VARCHAR
table: table_name_32
| SELECT series FROM table_name_32 WHERE high_points = "prince (23)" |
What is the earliest day in November with a record of 15-7-1? | columns:
- name: november
type: INTEGER
- name: record
type: VARCHAR
table: table_name_67
| SELECT MIN(november) FROM table_name_67 WHERE record = "15-7-1" |
With the distribution mechanism of Microsoft website and the security issues of 98-004, what is the version? | columns:
- name: version
type: VARCHAR
- name: security_issues
type: VARCHAR
- name: distribution_mechanism
type: VARCHAR
table: table_2263152_1
| SELECT version FROM table_2263152_1 WHERE security_issues = "98-004" AND distribution_mechanism = "Microsoft website" |
What is every BSE code for a free float of 0.2726? | columns:
- name: bse_code
type: VARCHAR
- name: free_float
type: VARCHAR
table: table_20667854_1
| SELECT bse_code FROM table_20667854_1 WHERE free_float = "0.2726" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.