question stringlengths 12 243 | context stringlengths 45 517 | answer stringlengths 32 484 |
|---|---|---|
What song was chosen for the episode with the top 8? | columns:
- name: song_choice
type: VARCHAR
- name: episode
type: VARCHAR
table: table_name_72
| SELECT song_choice FROM table_name_72 WHERE episode = "top 8" |
What is the resolution of the network Carismatv? | columns:
- name: resolution
type: VARCHAR
- name: network
type: VARCHAR
table: table_name_47
| SELECT resolution FROM table_name_47 WHERE network = "carismatv" |
Name the number of date for shea stadium | columns:
- name: date
type: VARCHAR
- name: game_site
type: VARCHAR
table: table_14418812_1
| SELECT COUNT(date) FROM table_14418812_1 WHERE game_site = "Shea Stadium" |
What was the away team score at Windy Hill? | columns:
- name: away_team
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_15
| SELECT away_team AS score FROM table_name_15 WHERE venue = "windy hill" |
Where was the game played on may 20? | columns:
- name: location
type: VARCHAR
- name: date
type: VARCHAR
table: table_13710464_1
| SELECT location FROM table_13710464_1 WHERE date = "May 20" |
What's the sales breakdown of the Nintendo game released on May 15, 2006? | columns:
- name: sales_breakdown
type: VARCHAR
- name: publisher
type: VARCHAR
- name: release_date
type: VARCHAR
table: table_21458142_1
| SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = "Nintendo" AND release_date = "May 15, 2006" |
How many losses did ev bruckberg have when the drawn was more than 1? | columns:
- name: lost
type: INTEGER
- name: name
type: VARCHAR
- name: drawn
type: VARCHAR
table: table_name_42
| SELECT SUM(lost) FROM table_name_42 WHERE name = "ev bruckberg" AND drawn > 1 |
Who was Gil's partner on 10–12 july 2009 | columns:
- name: partnering
type: VARCHAR
- name: date
type: VARCHAR
table: table_18042031_16
| SELECT partnering FROM table_18042031_16 WHERE date = "10–12 July 2009" |
Which Saturday has a Thursday of 木曜日 mokuyōbi | columns:
- name: saturday
type: VARCHAR
- name: thursday
type: VARCHAR
table: table_name_8
| SELECT saturday FROM table_name_8 WHERE thursday = "木曜日 mokuyōbi" |
Name the % for total being 57613 | columns:
- name: _percentage
type: VARCHAR
- name: total
type: VARCHAR
table: table_19260_1
| SELECT _percentage FROM table_19260_1 WHERE total = 57613 |
Who was the opponent on Oct. 4? | columns:
- name: opponent
type: VARCHAR
- name: date
type: VARCHAR
table: table_24560733_1
| SELECT opponent FROM table_24560733_1 WHERE date = "Oct. 4" |
Which Location has a Previous Conference of independents, and a Mascot of hilltoppers? | columns:
- name: location
type: VARCHAR
- name: previous_conference
type: VARCHAR
- name: mascot
type: VARCHAR
table: table_name_95
| SELECT location FROM table_name_95 WHERE previous_conference = "independents" AND mascot = "hilltoppers" |
What was the score on February 14, 1999? | columns:
- name: score_in_final
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_32
| SELECT score_in_final FROM table_name_32 WHERE date = "february 14, 1999" |
Name the old bulgarian names for yuni | columns:
- name: old_bulgarian_names
type: VARCHAR
- name: Yuni
type: VARCHAR
- name: Transliteration
type: VARCHAR
table: table_15275060_1
| SELECT old_bulgarian_names FROM table_15275060_1 WHERE BULGARIAN_NAME(Transliteration) = Yuni |
Name the position for christopher smith | columns:
- name: position
type: VARCHAR
- name: player
type: VARCHAR
table: table_25017530_5
| SELECT position FROM table_25017530_5 WHERE player = "Christopher Smith" |
At a longitude of 293.0e, what is the diameter, in km? | columns:
- name: diameter__km_
type: VARCHAR
- name: longitude
type: VARCHAR
table: table_16799784_9
| SELECT diameter__km_ FROM table_16799784_9 WHERE longitude = "293.0E" |
What result does the project Once Upon A Time In The West, directed by Sergio Leone have? | columns:
- name: result
type: VARCHAR
- name: director
type: VARCHAR
- name: project
type: VARCHAR
table: table_name_40
| SELECT result FROM table_name_40 WHERE director = "sergio leone" AND project = "once upon a time in the west" |
Name the most wins | columns:
- name: wins
type: INTEGER
table: table_24587026_1
| SELECT MIN(wins) FROM table_24587026_1 |
What nationality is Daryn Fersovich? | columns:
- name: nationality
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_47
| SELECT nationality FROM table_name_47 WHERE player = "daryn fersovich" |
What is the engine for the team of Alex Morales Motorsports? | columns:
- name: engine
type: VARCHAR
- name: team
type: VARCHAR
table: table_name_19
| SELECT engine FROM table_name_19 WHERE team = "alex morales motorsports" |
What is the Location, when the Score is 38-29? | columns:
- name: location
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_88
| SELECT location FROM table_name_88 WHERE score = "38-29" |
Which district had a first elected in 1882 with a result of re-elected? | columns:
- name: district
type: VARCHAR
- name: first_elected
type: VARCHAR
- name: result
type: VARCHAR
table: table_name_7
| SELECT district FROM table_name_7 WHERE first_elected = 1882 AND result = "re-elected" |
What is the total number of winners when the team classification leader was Kelme-Costa Blanca and the combativity award was won by Jacky Durand? | columns:
- name: winner
type: VARCHAR
- name: team_classification
type: VARCHAR
- name: combativity_award
type: VARCHAR
table: table_2267345_2
| SELECT COUNT(winner) FROM table_2267345_2 WHERE team_classification = "Kelme-Costa Blanca" AND combativity_award = "Jacky Durand" |
What's the RECNet when the identifier is cbf-fm-20? | columns:
- name: recnet
type: VARCHAR
- name: identifier
type: VARCHAR
table: table_name_38
| SELECT recnet FROM table_name_38 WHERE identifier = "cbf-fm-20" |
Which Date has a Game site of jeppesen stadium? | columns:
- name: date
type: VARCHAR
- name: game_site
type: VARCHAR
table: table_name_27
| SELECT date FROM table_name_27 WHERE game_site = "jeppesen stadium" |
What was the round when the home team was chornomorets odessa? | columns:
- name: round
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_55
| SELECT round FROM table_name_55 WHERE home_team = "chornomorets odessa" |
Who was the winning driver at Okayama International Circuit? | columns:
- name: winning_driver
type: VARCHAR
- name: circuit
type: VARCHAR
table: table_16670746_2
| SELECT winning_driver FROM table_16670746_2 WHERE circuit = "Okayama International circuit" |
what is the rounds when the entrant is scuderia ferrari marlboro? | columns:
- name: rounds
type: VARCHAR
- name: entrant
type: VARCHAR
table: table_name_57
| SELECT rounds FROM table_name_57 WHERE entrant = "scuderia ferrari marlboro" |
Which position has 2 wins in 1992? | columns:
- name: position
type: VARCHAR
- name: wins
type: VARCHAR
- name: season
type: VARCHAR
table: table_name_31
| SELECT position FROM table_name_31 WHERE wins = "2" AND season = 1992 |
How many units were sold in the US of the game that sold 346,000 units in japan? | columns:
- name: units_sold_in_the_us
type: VARCHAR
- name: units_sold_in_japan
type: VARCHAR
table: table_name_72
| SELECT units_sold_in_the_us FROM table_name_72 WHERE units_sold_in_japan = "346,000" |
what's the county with code being 2 | columns:
- name: county
type: VARCHAR
- name: code
type: VARCHAR
table: table_1404456_1
| SELECT county FROM table_1404456_1 WHERE code = 2 |
What is the lowest listed In service for a vessel of xavery czernicki class? | columns:
- name: in_service
type: INTEGER
- name: vessel
type: VARCHAR
table: table_name_71
| SELECT MIN(in_service) FROM table_name_71 WHERE vessel = "xavery czernicki class" |
How many games lost for teams with over 6 games? | columns:
- name: lost
type: INTEGER
- name: games
type: INTEGER
table: table_name_46
| SELECT MIN(lost) FROM table_name_46 WHERE games > 6 |
WHAT IS THE STROKE COUNT WITH RADICAL 皿 FREQUENCY SMALLER THAN 129? | columns:
- name: stroke_count
type: INTEGER
- name: radical__variants_
type: VARCHAR
- name: frequency
type: VARCHAR
table: table_name_88
| SELECT AVG(stroke_count) FROM table_name_88 WHERE radical__variants_ = "皿" AND frequency < 129 |
Which year did the school with the mascot of the Vikings join? | columns:
- name: year_joined
type: VARCHAR
- name: mascot
type: VARCHAR
table: table_name_83
| SELECT year_joined FROM table_name_83 WHERE mascot = "vikings" |
What is the FCC info of the w214ba call sign with a frequency below 96.3? | columns:
- name: fcc_info
type: VARCHAR
- name: frequency_mhz
type: VARCHAR
- name: call_sign
type: VARCHAR
table: table_name_64
| SELECT fcc_info FROM table_name_64 WHERE frequency_mhz < 96.3 AND call_sign = "w214ba" |
What's the highest Year Left for the School of Danville? | columns:
- name: year_left
type: INTEGER
- name: school
type: VARCHAR
table: table_name_81
| SELECT MAX(year_left) FROM table_name_81 WHERE school = "danville" |
What is the total number of laps with a 128.260 qual? | columns:
- name: laps
type: VARCHAR
- name: qual
type: VARCHAR
table: table_name_29
| SELECT COUNT(laps) FROM table_name_29 WHERE qual = "128.260" |
What region has a 5 rank? | columns:
- name: region
type: VARCHAR
- name: rank
type: VARCHAR
table: table_name_25
| SELECT region FROM table_name_25 WHERE rank = 5 |
Which Surface had an Opponent of chris evert-lloyd? | columns:
- name: surface
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_45
| SELECT surface FROM table_name_45 WHERE opponent = "chris evert-lloyd" |
What is the date when the opponent is the New England Patriots? | columns:
- name: date
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_18847736_2
| SELECT date FROM table_18847736_2 WHERE opponent = "New England Patriots" |
What make and model of the diesel vehicle with a high floor type, bike capacity less than 3, and a quantity of 4? | columns:
- name: make_and_model
type: VARCHAR
- name: quantity
type: VARCHAR
- name: "bicycle_capacity\u2020"
type: VARCHAR
- name: fuel_propulsion
type: VARCHAR
- name: floor_type
type: VARCHAR
table: table_name_67
| SELECT make_and_model FROM table_name_67 WHERE fuel_propulsion = "diesel" AND floor_type = "high" AND bicycle_capacity† < 3 AND quantity = 4 |
Name the un region for 378000 population | columns:
- name: un_region
type: VARCHAR
- name: population
type: VARCHAR
table: table_16278349_1
| SELECT un_region FROM table_16278349_1 WHERE population = 378000 |
What is the away team of match 9? | columns:
- name: away_team
type: VARCHAR
- name: match_no
type: VARCHAR
table: table_name_52
| SELECT away_team FROM table_name_52 WHERE match_no = "9" |
Who was interviewed in the 8-98 issue? | columns:
- name: interview_subject
type: VARCHAR
- name: date
type: VARCHAR
table: table_1566850_9
| SELECT interview_subject FROM table_1566850_9 WHERE date = "8-98" |
What is the frequency when radio station branding is 106.3 energy fm naga? | columns:
- name: frequency
type: VARCHAR
- name: branding
type: VARCHAR
table: table_23915973_1
| SELECT frequency FROM table_23915973_1 WHERE branding = "106.3 Energy FM Naga" |
Name the team for december 19 | columns:
- name: team
type: VARCHAR
- name: date
type: VARCHAR
table: table_23285805_5
| SELECT team FROM table_23285805_5 WHERE date = "December 19" |
Name the performance order of the velasco brothers | columns:
- name: performance_order
type: VARCHAR
- name: artist
type: VARCHAR
table: table_26267849_11
| SELECT performance_order FROM table_26267849_11 WHERE artist = "Velasco Brothers" |
Which ehtinc group consists of 93% muslims? | columns:
- name: ethnic_group
type: VARCHAR
- name: muslims
type: VARCHAR
table: table_name_58
| SELECT ethnic_group FROM table_name_58 WHERE muslims = "93%" |
What's the total number of points that the rank is less than 5 and has Tiago Splitter? | columns:
- name: points
type: VARCHAR
- name: name
type: VARCHAR
- name: rank
type: VARCHAR
table: table_name_11
| SELECT COUNT(points) FROM table_name_11 WHERE name = "tiago splitter" AND rank < 5 |
What is the 1st leg of team 1 Liverpool? | columns:
- name: team_1
type: VARCHAR
table: table_name_24
| SELECT 1 AS st_leg FROM table_name_24 WHERE team_1 = "liverpool" |
What is the Date with a Set 1 with 15–1? | columns:
- name: date
type: VARCHAR
- name: set_1
type: VARCHAR
table: table_name_79
| SELECT date FROM table_name_79 WHERE set_1 = "15–1" |
When the home team is Cairns Taipans, at which venue do they play? | columns:
- name: venue
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_51
| SELECT venue FROM table_name_51 WHERE home_team = "cairns taipans" |
What is the Code Name of the figure born in Hawaii? | columns:
- name: code_name
type: VARCHAR
- name: birthplace
type: VARCHAR
table: table_name_81
| SELECT code_name FROM table_name_81 WHERE birthplace = "hawaii" |
What venue did the parntership of shoaib malik / misbah-ul-haq occur? | columns:
- name: venue
type: VARCHAR
- name: partnerships
type: VARCHAR
table: table_name_79
| SELECT venue FROM table_name_79 WHERE partnerships = "shoaib malik / misbah-ul-haq" |
What is Honor, when Singular is ẽr (his/her/its)? | columns:
- name: honor
type: VARCHAR
- name: singular
type: VARCHAR
table: table_name_97
| SELECT honor FROM table_name_97 WHERE singular = "ẽr (his/her/its)" |
Name the flight down for vladimir vasyutin , alexander volkov | columns:
- name: flight_down
type: VARCHAR
- name: crew
type: VARCHAR
table: table_245801_1
| SELECT flight_down FROM table_245801_1 WHERE crew = "Vladimir Vasyutin , Alexander Volkov" |
Which January is the lowest one that has an Opponent of florida panthers, and Points smaller than 59? | columns:
- name: january
type: INTEGER
- name: opponent
type: VARCHAR
- name: points
type: VARCHAR
table: table_name_13
| SELECT MIN(january) FROM table_name_13 WHERE opponent = "florida panthers" AND points < 59 |
What was the rank of the player in lane 6? | columns:
- name: rank
type: INTEGER
- name: lane
type: VARCHAR
table: table_name_73
| SELECT AVG(rank) FROM table_name_73 WHERE lane = 6 |
For team #40 chip ganassi racing which top 5 is the highest where top 10 is 5? | columns:
- name: top_5
type: INTEGER
- name: top_10
type: VARCHAR
- name: team_s_
type: VARCHAR
table: table_1708014_1
| SELECT MAX(top_5) FROM table_1708014_1 WHERE top_10 = 5 AND team_s_ = "#40 Chip Ganassi Racing" |
What is the average rank for players with under 205 matches and under 100 goals? | columns:
- name: rank
type: INTEGER
- name: matches
type: VARCHAR
- name: goals
type: VARCHAR
table: table_name_92
| SELECT AVG(rank) FROM table_name_92 WHERE matches < 205 AND goals < 100 |
What station has a genre of talk music and is in Malay English language? | columns:
- name: station
type: VARCHAR
- name: genre
type: VARCHAR
- name: language
type: VARCHAR
table: table_name_81
| SELECT station FROM table_name_81 WHERE genre = "talk music" AND language = "malay english" |
WHAT IS THE DEATH WHEN BIRTH DATE IS 2 AUGUST 1424? | columns:
- name: death
type: VARCHAR
- name: birth
type: VARCHAR
table: table_name_96
| SELECT death FROM table_name_96 WHERE birth = "2 august 1424" |
When Denizli was the province, what was the total number of valid votes? | columns:
- name: valid_votes
type: VARCHAR
- name: province
type: VARCHAR
table: table_27274222_2
| SELECT COUNT(valid_votes) FROM table_27274222_2 WHERE province = "Denizli" |
What number episode in the series was watched by 10.96 million U.S. viewers? | columns:
- name: no_in_series
type: INTEGER
- name: us_viewers__millions_
type: VARCHAR
table: table_28027307_1
| SELECT MIN(no_in_series) FROM table_28027307_1 WHERE us_viewers__millions_ = "10.96" |
What is every points value for race 1 if the total race points is 180? | columns:
- name: race_1_pts_
type: VARCHAR
- name: race_total_pts_
type: VARCHAR
table: table_23293785_2
| SELECT race_1_pts_ FROM table_23293785_2 WHERE race_total_pts_ = 180 |
What was the qualifying score of the competition whose final score was 12.200? | columns:
- name: score_qualifying
type: VARCHAR
- name: score_final
type: VARCHAR
table: table_25143284_1
| SELECT score_qualifying FROM table_25143284_1 WHERE score_final = "12.200" |
Which Pick # is the lowest one that has a College of troy state, and a Name of reggie dwight, and an Overall smaller than 217? | columns:
- name: pick__number
type: INTEGER
- name: overall
type: VARCHAR
- name: college
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_92
| SELECT MIN(pick__number) FROM table_name_92 WHERE college = "troy state" AND name = "reggie dwight" AND overall < 217 |
FOR AUGUST 13 WHAT IS THE RND ? | columns:
- name: rnd
type: INTEGER
- name: date
type: VARCHAR
table: table_16732659_2
| SELECT MAX(rnd) FROM table_16732659_2 WHERE date = "August 13" |
What is the average number of cuts made in events with fewer than 1 win and exactly 11 top-10s? | columns:
- name: cuts_made
type: INTEGER
- name: top_10
type: VARCHAR
- name: wins
type: VARCHAR
table: table_name_93
| SELECT AVG(cuts_made) FROM table_name_93 WHERE top_10 = 11 AND wins < 1 |
Name the country vijay singh is from | columns:
- name: country
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_16
| SELECT country FROM table_name_16 WHERE player = "vijay singh" |
tell me the average roll for pirinoa school. | columns:
- name: roll
type: INTEGER
- name: name
type: VARCHAR
table: table_name_83
| SELECT AVG(roll) FROM table_name_83 WHERE name = "pirinoa school" |
What is Last Appearance, when Wins is less than 1, when Losses is 1, and when School is Oklahoma State? | columns:
- name: last_appearance
type: VARCHAR
- name: school
type: VARCHAR
- name: wins
type: VARCHAR
- name: losses
type: VARCHAR
table: table_name_65
| SELECT last_appearance FROM table_name_65 WHERE wins < 1 AND losses = 1 AND school = "oklahoma state" |
what team played on may 20 on the home side | columns:
- name: home_team
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_50
| SELECT home_team FROM table_name_50 WHERE date = "may 20" |
What date did episode one air on? | columns:
- name: date
type: VARCHAR
- name: episode
type: VARCHAR
table: table_name_38
| SELECT date FROM table_name_38 WHERE episode = "one" |
Name the record for l 90–100 (ot) | columns:
- name: record
type: VARCHAR
- name: score
type: VARCHAR
table: table_22879323_9
| SELECT record FROM table_22879323_9 WHERE score = "L 90–100 (OT)" |
How much money was scored for 73-71-70-73=287? | columns:
- name: money___$__
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_13
| SELECT money___$__ FROM table_name_13 WHERE score = 73 - 71 - 70 - 73 = 287 |
What is the status for district georgia's 10th? | columns:
- name: status
type: VARCHAR
- name: district
type: VARCHAR
table: table_27021001_1
| SELECT status FROM table_27021001_1 WHERE district = "Georgia's 10th" |
On April 18, which team was the visitor? | columns:
- name: visitor
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_52
| SELECT visitor FROM table_name_52 WHERE date = "april 18" |
What is every entry in the QLD Cup Premierships when home ground is Dairy Farmers Stadium? | columns:
- name: qld_cup_premierships
type: VARCHAR
- name: home_ground
type: VARCHAR
table: table_2383498_4
| SELECT qld_cup_premierships FROM table_2383498_4 WHERE home_ground = "Dairy Farmers Stadium" |
The Crvena Zvezda club has what aggregate? | columns:
- name: aggregate
type: VARCHAR
- name: club
type: VARCHAR
table: table_name_58
| SELECT aggregate FROM table_name_58 WHERE club = "crvena zvezda" |
What is the population that has an area of 715.58? | columns:
- name: population
type: VARCHAR
- name: area_km_2
type: VARCHAR
table: table_171250_2
| SELECT population FROM table_171250_2 WHERE area_km_2 = "715.58" |
What is the Score that has an Attendance of 4 679? | columns:
- name: score
type: VARCHAR
- name: attendance
type: VARCHAR
table: table_name_52
| SELECT score FROM table_name_52 WHERE attendance = "4 679" |
How many incumbents resulted in a lost renomination republican gain? | columns:
- name: incumbent
type: VARCHAR
- name: result
type: VARCHAR
table: table_1341690_18
| SELECT COUNT(incumbent) FROM table_1341690_18 WHERE result = "Lost renomination Republican gain" |
Which date has a Surface of carpet (i)? | columns:
- name: date
type: VARCHAR
- name: surface
type: VARCHAR
table: table_name_44
| SELECT date FROM table_name_44 WHERE surface = "carpet (i)" |
Name the most high schools for 31851 | columns:
- name: high_schools
type: INTEGER
- name: district_wide
type: VARCHAR
table: table_2367847_2
| SELECT MAX(high_schools) FROM table_2367847_2 WHERE district_wide = 31851 |
what is the average losses when the club is warrnambool and wins is less than 12? | columns:
- name: losses
type: INTEGER
- name: club
type: VARCHAR
- name: wins
type: VARCHAR
table: table_name_58
| SELECT AVG(losses) FROM table_name_58 WHERE club = "warrnambool" AND wins < 12 |
Which Result has a Year larger than 2003, and an Award of best supporting actress? | columns:
- name: result
type: VARCHAR
- name: year
type: VARCHAR
- name: award
type: VARCHAR
table: table_name_32
| SELECT result FROM table_name_32 WHERE year > 2003 AND award = "best supporting actress" |
Where did Hawthorn have their away match against North Melbourne? | columns:
- name: venue
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_50
| SELECT venue FROM table_name_50 WHERE away_team = "hawthorn" |
What average played has an against less than 15? | columns:
- name: played
type: INTEGER
- name: against
type: INTEGER
table: table_name_40
| SELECT AVG(played) FROM table_name_40 WHERE against < 15 |
Record of 6–1 had what score? | columns:
- name: score
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_16
| SELECT score FROM table_name_16 WHERE record = "6–1" |
What is Date, when Team is "Orlando"? | columns:
- name: date
type: VARCHAR
- name: team
type: VARCHAR
table: table_name_72
| SELECT date FROM table_name_72 WHERE team = "orlando" |
What is the surface of the match when the outcome was runner-up, and a Score of julia görges polona hercog? | columns:
- name: surface
type: VARCHAR
- name: outcome
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_42
| SELECT surface FROM table_name_42 WHERE outcome = "runner-up" AND score = "julia görges polona hercog" |
1996[2] of 127, and a 1990 smaller than 120 is the sum of 1990? | columns:
- name: Id
type: VARCHAR
table: table_name_89
| SELECT SUM(1980) FROM table_name_89 WHERE 1996[2] = 127 AND 1990 < 120 |
What is the lowest number of last cfs of the team with 2 cf appearances, 0 cup wins, and less than 0 cf wins? | columns:
- name: last_cf
type: INTEGER
- name: cf_wins
type: VARCHAR
- name: cf_appearances
type: VARCHAR
- name: cup_wins
type: VARCHAR
table: table_name_90
| SELECT MIN(last_cf) FROM table_name_90 WHERE cf_appearances = 2 AND cup_wins = 0 AND cf_wins < 0 |
What are all the CFL teams where the pick number is 36? | columns:
- name: cfl_team
type: VARCHAR
- name: pick__number
type: VARCHAR
table: table_15817998_5
| SELECT cfl_team FROM table_15817998_5 WHERE pick__number = 36 |
Name the antonio thomas for Hikaru Sato of tanaka (8:09) | columns:
- name: antonio_thomas
type: VARCHAR
- name: hikaru_sato
type: VARCHAR
table: table_name_24
| SELECT antonio_thomas FROM table_name_24 WHERE hikaru_sato = "tanaka (8:09)" |
what's the jp -210- with title and source being fun! fun! minigolf | columns:
- name: jp__210_
type: VARCHAR
- name: title_and_source
type: VARCHAR
table: table_13663434_1
| SELECT jp__210_ FROM table_13663434_1 WHERE title_and_source = "Fun! Fun! Minigolf" |
What is the mascot with a #/County of 34 Howard? | columns:
- name: mascot
type: VARCHAR
- name: _number___county
type: VARCHAR
table: table_name_41
| SELECT mascot FROM table_name_41 WHERE _number___county = "34 howard" |
Who had the most rebounds on January 3? | columns:
- name: high_rebounds
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_7
| SELECT high_rebounds FROM table_name_7 WHERE date = "january 3" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.