training_input stringlengths 118 1.06k |
|---|
###context:CREATE TABLE table_22810095_8 (moving_from VARCHAR, name VARCHAR)
###human: Where did Kisnorbo move from?
###assistant: SELECT moving_from FROM table_22810095_8 WHERE name = "Kisnorbo" |
###context:CREATE TABLE table_22810095_8 (name VARCHAR, n VARCHAR)
###human: What is the name of the player when n is 28?
###assistant: SELECT name FROM table_22810095_8 WHERE n = 28 |
###context:CREATE TABLE table_22810095_8 (transfer_fee VARCHAR, n VARCHAR)
###human: How much was the transfer fee when n is 2?
###assistant: SELECT transfer_fee FROM table_22810095_8 WHERE n = 2 |
###context:CREATE TABLE table_22810095_9 (name VARCHAR, age VARCHAR)
###human: What player is 24 years old?
###assistant: SELECT name FROM table_22810095_9 WHERE age = 24 |
###context:CREATE TABLE table_228149_1 (bruce_coulter_award VARCHAR, game VARCHAR)
###human: Nam the total number for bruce coulter award for 9th game
###assistant: SELECT COUNT(bruce_coulter_award) FROM table_228149_1 WHERE game = "9th" |
###context:CREATE TABLE table_22815265_1 (opponents INTEGER, opponent VARCHAR)
###human: How many opponents were there when the opponent was Arizona State?
###assistant: SELECT MIN(opponents) FROM table_22815265_1 WHERE opponent = "Arizona State" |
###context:CREATE TABLE table_22815265_1 (record VARCHAR, opponent VARCHAR)
###human: How many records show Utah as the opponent?
###assistant: SELECT COUNT(record) FROM table_22815265_1 WHERE opponent = "Utah" |
###context:CREATE TABLE table_22815265_1 (opponents VARCHAR, cowboys_points VARCHAR)
###human: How many opponents are there when cowboy points were 10?
###assistant: SELECT opponents FROM table_22815265_1 WHERE cowboys_points = 10 |
###context:CREATE TABLE table_22815265_1 (record VARCHAR, opponents VARCHAR)
###human: How many records were there when opponents were 9?
###assistant: SELECT COUNT(record) FROM table_22815265_1 WHERE opponents = 9 |
###context:CREATE TABLE table_22815259_1 (record VARCHAR, cowboys_points VARCHAR)
###human: Name the number of record for 12 cowboys points
###assistant: SELECT COUNT(record) FROM table_22815259_1 WHERE cowboys_points = 12 |
###context:CREATE TABLE table_22815259_1 (game INTEGER, record VARCHAR)
###human: Name the most game for record 4-0
###assistant: SELECT MAX(game) FROM table_22815259_1 WHERE record = "4-0" |
###context:CREATE TABLE table_22815259_1 (result VARCHAR, cowboys_points VARCHAR)
###human: Name the result for cowboys points being 23
###assistant: SELECT COUNT(result) FROM table_22815259_1 WHERE cowboys_points = 23 |
###context:CREATE TABLE table_22815259_1 (record VARCHAR, opponent VARCHAR)
###human: Name the record for arizona
###assistant: SELECT record FROM table_22815259_1 WHERE opponent = "Arizona" |
###context:CREATE TABLE table_22815568_12 (unemployment_rate VARCHAR, population VARCHAR)
###human: Name the unemployment rate for 34024
###assistant: SELECT COUNT(unemployment_rate) FROM table_22815568_12 WHERE population = 34024 |
###context:CREATE TABLE table_22815568_12 (population VARCHAR, county VARCHAR)
###human: Name the total number of population for craig
###assistant: SELECT COUNT(population) FROM table_22815568_12 WHERE county = "Craig" |
###context:CREATE TABLE table_22815568_12 (unemployment_rate VARCHAR, county VARCHAR)
###human: Name the unemployment rate for botetourt
###assistant: SELECT unemployment_rate FROM table_22815568_12 WHERE county = "Botetourt" |
###context:CREATE TABLE table_22815568_12 (status VARCHAR, unemployment_rate VARCHAR)
###human: Name the status for unemployment rate being 6.7%
###assistant: SELECT status FROM table_22815568_12 WHERE unemployment_rate = "6.7%" |
###context:CREATE TABLE table_22815568_1 (status VARCHAR, poverty_rate VARCHAR)
###human: What is the status of the county that has a 14.7% poverty rate?
###assistant: SELECT status FROM table_22815568_1 WHERE poverty_rate = "14.7%" |
###context:CREATE TABLE table_22815568_1 (poverty_rate VARCHAR, market_income_per_capita VARCHAR)
###human: What is the poverty rate in the county that has a market income per capita of $16,420?
###assistant: SELECT poverty_rate FROM table_22815568_1 WHERE market_income_per_capita = "$16,420" |
###context:CREATE TABLE table_22815568_1 (population INTEGER, market_income_per_capita VARCHAR)
###human: What is the lowest population in a county with market income per capita of $24,383?
###assistant: SELECT MIN(population) FROM table_22815568_1 WHERE market_income_per_capita = "$24,383" |
###context:CREATE TABLE table_22815568_1 (poverty_rate VARCHAR, market_income_per_capita VARCHAR)
###human: What is the povery rate of the county with market income per capita of $20,518?
###assistant: SELECT poverty_rate FROM table_22815568_1 WHERE market_income_per_capita = "$20,518" |
###context:CREATE TABLE table_22815568_13 (market_income_per_capita VARCHAR, county VARCHAR)
###human: what is the market income per capita where the county is hancock?
###assistant: SELECT market_income_per_capita FROM table_22815568_13 WHERE county = "Hancock" |
###context:CREATE TABLE table_22815568_13 (county VARCHAR, market_income_per_capita VARCHAR)
###human: what is the county where the market income per capita is $25,006?
###assistant: SELECT county FROM table_22815568_13 WHERE market_income_per_capita = "$25,006" |
###context:CREATE TABLE table_22815568_13 (unemployment_rate VARCHAR, market_income_per_capita VARCHAR)
###human: what is the unemployment rate where the market income per capita is $16,406?
###assistant: SELECT unemployment_rate FROM table_22815568_13 WHERE market_income_per_capita = "$16,406" |
###context:CREATE TABLE table_22815568_13 (unemployment_rate VARCHAR, county VARCHAR)
###human: what is the unemployment rate for wayne county?
###assistant: SELECT unemployment_rate FROM table_22815568_13 WHERE county = "Wayne" |
###context:CREATE TABLE table_22815870_1 (original_air_date VARCHAR, prod_code VARCHAR)
###human: What is the original air date of the episode with a production code of 105?
###assistant: SELECT original_air_date FROM table_22815870_1 WHERE prod_code = 105 |
###context:CREATE TABLE table_22815568_3 (county VARCHAR, population VARCHAR)
###human: How many counties have a population of 2266?
###assistant: SELECT COUNT(county) FROM table_22815568_3 WHERE population = 2266 |
###context:CREATE TABLE table_22815568_3 (status VARCHAR, county VARCHAR)
###human: How many statuses are listed for Wayne county?
###assistant: SELECT COUNT(status) FROM table_22815568_3 WHERE county = "Wayne" |
###context:CREATE TABLE table_22815568_3 (market_income_per_capita VARCHAR, status VARCHAR, unemployment_rate VARCHAR)
###human: What is the market income per capita in a county where the status is distressed and the unemployment rate is at 10.5%?
###assistant: SELECT market_income_per_capita FROM table_228155... |
###context:CREATE TABLE table_22815568_3 (status VARCHAR, poverty_rate VARCHAR)
###human: What is the status for all the counties that have a poverty rate of 36.6%?
###assistant: SELECT status FROM table_22815568_3 WHERE poverty_rate = "36.6%" |
###context:CREATE TABLE table_22815568_6 (status VARCHAR, poverty_rate VARCHAR)
###human: What is the status if the poverty rate is 11.4%?
###assistant: SELECT status FROM table_22815568_6 WHERE poverty_rate = "11.4%" |
###context:CREATE TABLE table_22815568_6 (county VARCHAR, poverty_rate VARCHAR)
###human: If the poverty rate is 12.9%, what is the county?
###assistant: SELECT county FROM table_22815568_6 WHERE poverty_rate = "12.9%" |
###context:CREATE TABLE table_22815568_6 (population INTEGER)
###human: What is the population maximum?
###assistant: SELECT MAX(population) FROM table_22815568_6 |
###context:CREATE TABLE table_22815568_6 (county VARCHAR, unemployment_rate VARCHAR)
###human: What county is the unemployment rate 4.8%?
###assistant: SELECT county FROM table_22815568_6 WHERE unemployment_rate = "4.8%" |
###context:CREATE TABLE table_22815568_6 (market_income_per_capita VARCHAR, poverty_rate VARCHAR)
###human: If the poverty rate is 12.9%, what is the market income per capita?
###assistant: SELECT market_income_per_capita FROM table_22815568_6 WHERE poverty_rate = "12.9%" |
###context:CREATE TABLE table_22822468_2 (viewers__millions_ VARCHAR, rating VARCHAR)
###human: Name the viewers for 2.1 rating
###assistant: SELECT viewers__millions_ FROM table_22822468_2 WHERE rating = "2.1" |
###context:CREATE TABLE table_22822468_2 (share INTEGER, viewers__millions_ VARCHAR)
###human: Name the most share for 2.76 million viewers
###assistant: SELECT MAX(share) FROM table_22822468_2 WHERE viewers__millions_ = "2.76" |
###context:CREATE TABLE table_22822468_2 (viewers__millions_ VARCHAR, rating VARCHAR)
###human: Name the viewers for 1.2/4 rating
###assistant: SELECT viewers__millions_ FROM table_22822468_2 WHERE rating / SHARE(18 AS β49) = 1.2 / 4 |
###context:CREATE TABLE table_22822468_2 (rating VARCHAR, viewers__millions_ VARCHAR)
###human: Name the rating for 3.79 viewers
###assistant: SELECT rating / SHARE(18 AS β49) FROM table_22822468_2 WHERE viewers__millions_ = "3.79" |
###context:CREATE TABLE table (europa_league INTEGER)
###human: Name the least europa league
###assistant: SELECT MIN(europa_league) FROM table |
###context:CREATE TABLE table_22822559_4 (high_rebounds VARCHAR, date VARCHAR)
###human: What was the total number of rebounds on november 27?
###assistant: SELECT COUNT(high_rebounds) FROM table_22822559_4 WHERE date = "November 27" |
###context:CREATE TABLE table_22822559_4 (date VARCHAR, team VARCHAR)
###human: On what date did the Pistons play @ toronto?
###assistant: SELECT date FROM table_22822559_4 WHERE team = "@ Toronto" |
###context:CREATE TABLE table_22822559_4 (location_attendance VARCHAR, game VARCHAR)
###human: List the location and number of fans in attendance for game 7/
###assistant: SELECT COUNT(location_attendance) FROM table_22822559_4 WHERE game = 7 |
###context:CREATE TABLE table_22824302_3 (steals VARCHAR, games_played VARCHAR)
###human: How many interceptions for the team who played 31 games?
###assistant: SELECT steals FROM table_22824302_3 WHERE games_played = 31 |
###context:CREATE TABLE table_22824302_3 (steals INTEGER, rebounds VARCHAR)
###human: How many steals for the player who had 121 rebounds?
###assistant: SELECT MIN(steals) FROM table_22824302_3 WHERE rebounds = 121 |
###context:CREATE TABLE table_22822559_8 (date VARCHAR, record VARCHAR)
###human: What date was the Piston's record at 23-47?
###assistant: SELECT date FROM table_22822559_8 WHERE record = "23-47" |
###context:CREATE TABLE table_22822559_8 (high_rebounds VARCHAR, record VARCHAR)
###human: Who had the highest rebounds during the game with a record of 23-47?
###assistant: SELECT high_rebounds FROM table_22822559_8 WHERE record = "23-47" |
###context:CREATE TABLE table_22824199_1 (rebounds VARCHAR, points VARCHAR)
###human: How many rebound did the person who scored 147 points have?
###assistant: SELECT COUNT(rebounds) FROM table_22824199_1 WHERE points = 147 |
###context:CREATE TABLE table_22824199_1 (three_pointers INTEGER, free_throws VARCHAR)
###human: Of the players with 50 free throws, what is the lowest number of three pointers?
###assistant: SELECT MIN(three_pointers) FROM table_22824199_1 WHERE free_throws = 50 |
###context:CREATE TABLE table_22824199_1 (player VARCHAR, rebounds VARCHAR)
###human: Who are all the players with 156 rebounds?
###assistant: SELECT player FROM table_22824199_1 WHERE rebounds = 156 |
###context:CREATE TABLE table_22824199_1 (games_played INTEGER, three_pointers VARCHAR)
###human: Of the players who scored 5 three pointers, what is the highest number of games played?
###assistant: SELECT MAX(games_played) FROM table_22824199_1 WHERE three_pointers = 5 |
###context:CREATE TABLE table_22824297_1 (no VARCHAR, hometown VARCHAR)
###human: What is every number for the hometown of Canton, Illinois?
###assistant: SELECT no FROM table_22824297_1 WHERE hometown = "Canton, Illinois" |
###context:CREATE TABLE table_22824297_1 (player VARCHAR, height VARCHAR)
###human: Who is every player with a height of 6-5?
###assistant: SELECT player FROM table_22824297_1 WHERE height = "6-5" |
###context:CREATE TABLE table_22824297_1 (player VARCHAR, hometown VARCHAR)
###human: Who are all players from hometown of Carbondale, Illinois?
###assistant: SELECT player FROM table_22824297_1 WHERE hometown = "Carbondale, Illinois" |
###context:CREATE TABLE table_22824297_1 (class VARCHAR, position VARCHAR, player VARCHAR)
###human: What is every class with a position of guard and Tal Brody as the player?
###assistant: SELECT class FROM table_22824297_1 WHERE position = "Guard" AND player = "Tal Brody" |
###context:CREATE TABLE table_22824297_1 (no VARCHAR, hometown VARCHAR)
###human: How many values for number occur with the hometown of Canton, Illinois?
###assistant: SELECT COUNT(no) FROM table_22824297_1 WHERE hometown = "Canton, Illinois" |
###context:CREATE TABLE table_22824312_1 (class VARCHAR, player VARCHAR)
###human: What class was ren alde?
###assistant: SELECT class FROM table_22824312_1 WHERE player = "Ren Alde" |
###context:CREATE TABLE table_22824312_1 (player VARCHAR, weight VARCHAR)
###human: Who are the player's who weighed 170?
###assistant: SELECT player FROM table_22824312_1 WHERE weight = 170 |
###context:CREATE TABLE table_22824312_1 (hometown VARCHAR, player VARCHAR)
###human: What is jim dutcher's hometown?
###assistant: SELECT hometown FROM table_22824312_1 WHERE player = "Jim Dutcher" |
###context:CREATE TABLE table_22824319_3 (player VARCHAR, points VARCHAR)
###human: Name the total number of player for 51 points
###assistant: SELECT COUNT(player) FROM table_22824319_3 WHERE points = 51 |
###context:CREATE TABLE table_22824319_3 (rebounds INTEGER, player VARCHAR)
###human: Name the most rebounds for larry smith
###assistant: SELECT MAX(rebounds) FROM table_22824319_3 WHERE player = "Larry Smith" |
###context:CREATE TABLE table_22824319_3 (steals VARCHAR, blocks VARCHAR)
###human: Name the steals for 5 blocks
###assistant: SELECT steals FROM table_22824319_3 WHERE blocks = 5 |
###context:CREATE TABLE table_22824319_3 (points INTEGER)
###human: Name the least points
###assistant: SELECT MIN(points) FROM table_22824319_3 |
###context:CREATE TABLE table_2282444_1 (h_ci__ka_m_ VARCHAR, b_r__t_ VARCHAR)
###human: When 0.6β1.4 is the b r (t) what is the h ci (ka/m)?
###assistant: SELECT h_ci__ka_m_ FROM table_2282444_1 WHERE b_r__t_ = "0.6β1.4" |
###context:CREATE TABLE table_2282444_1 (t_c__ VARCHAR, magnet VARCHAR)
###human: When nd 2 fe 14 b (bonded) is the magnet how many measurements of tc (Β°c)?
###assistant: SELECT COUNT(t_c__) AS Β°c_ FROM table_2282444_1 WHERE magnet = "Nd 2 Fe 14 B (bonded)" |
###context:CREATE TABLE table_2282444_1 (h_ci__ka_m_ VARCHAR, t_c__Β°c_ VARCHAR)
###human: When 720 is the t c (Β°c) what is the h ci (ka/m)?
###assistant: SELECT h_ci__ka_m_ FROM table_2282444_1 WHERE t_c__Β°c_ = "720" |
###context:CREATE TABLE table_22825679_1 (sec_wins VARCHAR, percentage VARCHAR, home_record VARCHAR)
###human: Name the sec wins for .357 percentage and 4-3 home record
###assistant: SELECT sec_wins FROM table_22825679_1 WHERE percentage = ".357" AND home_record = "4-3" |
###context:CREATE TABLE table_22825679_1 (percentage VARCHAR, team VARCHAR)
###human: Name the percentage for georgia
###assistant: SELECT percentage FROM table_22825679_1 WHERE team = "Georgia" |
###context:CREATE TABLE table_22825679_1 (overall_record VARCHAR, road_record VARCHAR)
###human: Name the overall record for road record being 4-3
###assistant: SELECT overall_record FROM table_22825679_1 WHERE road_record = "4-3" |
###context:CREATE TABLE table_22825679_1 (road_record VARCHAR, team VARCHAR)
###human: Name the number of road record for team ole miss
###assistant: SELECT COUNT(road_record) FROM table_22825679_1 WHERE team = "Ole Miss" |
###context:CREATE TABLE table_22825679_1 (percentage VARCHAR, team VARCHAR)
###human: Name the percentage for ole miss
###assistant: SELECT percentage FROM table_22825679_1 WHERE team = "Ole Miss" |
###context:CREATE TABLE table_22824324_2 (blocks INTEGER, player VARCHAR)
###human: What is the most number of blocks kendall gill had?
###assistant: SELECT MAX(blocks) FROM table_22824324_2 WHERE player = "Kendall Gill" |
###context:CREATE TABLE table_22824324_2 (three_pointers INTEGER, rebounds VARCHAR)
###human: What is the lowest number of three pointers in games where the number of rebounds was 178?
###assistant: SELECT MIN(three_pointers) FROM table_22824324_2 WHERE rebounds = 178 |
###context:CREATE TABLE table_22824324_2 (steals VARCHAR, player VARCHAR)
###human: How many steals were the in games that andy kaufmann played?
###assistant: SELECT COUNT(steals) FROM table_22824324_2 WHERE player = "Andy Kaufmann" |
###context:CREATE TABLE table_22824324_2 (three_pointers INTEGER, player VARCHAR)
###human: What is the lowest number of three pointers in games that kendall gill played?
###assistant: SELECT MIN(three_pointers) FROM table_22824324_2 WHERE player = "Kendall Gill" |
###context:CREATE TABLE table_22824324_2 (three_pointers VARCHAR, points VARCHAR)
###human: How many games had three pointers where the number of points was 581?
###assistant: SELECT COUNT(three_pointers) FROM table_22824324_2 WHERE points = 581 |
###context:CREATE TABLE table_22837363_1 (episodes INTEGER, viewers__in_millions_ VARCHAR)
###human: What was the highest amount of episodes for the season with 5.74 million viewers?
###assistant: SELECT MAX(episodes) FROM table_22837363_1 WHERE viewers__in_millions_ = "5.74" |
###context:CREATE TABLE table_22834834_3 (surface VARCHAR, score_in_the_final VARCHAR)
###human: Which surfaces have the final score of 6β1, 6β7 (2β7) , 7β6 (7β5) , 7β6 (10β8)?
###assistant: SELECT surface FROM table_22834834_3 WHERE score_in_the_final = "6β1, 6β7 (2β7) , 7β6 (7β5) , 7β6 (10β8)" |
###context:CREATE TABLE table_22834834_3 (outcome VARCHAR, score_in_the_final VARCHAR)
###human: How many outcome have a score of 7β6 (9β7) , 6β3?
###assistant: SELECT COUNT(outcome) FROM table_22834834_3 WHERE score_in_the_final = "7β6 (9β7) , 6β3" |
###context:CREATE TABLE table_22834834_3 (outcome VARCHAR, score_in_the_final VARCHAR)
###human: Which outcomes have a final score of 6β3, 6β2?
###assistant: SELECT outcome FROM table_22834834_3 WHERE score_in_the_final = "6β3, 6β2" |
###context:CREATE TABLE table_22834834_3 (year INTEGER, opponent_in_the_final VARCHAR)
###human: What is the last year that Andre Agassi was the final opponent?
###assistant: SELECT MAX(year) FROM table_22834834_3 WHERE opponent_in_the_final = "Andre Agassi" |
###context:CREATE TABLE table_22834834_3 (year VARCHAR, score_in_the_final VARCHAR)
###human: How many years have a final score of 6β3, 6β2?
###assistant: SELECT COUNT(year) FROM table_22834834_3 WHERE score_in_the_final = "6β3, 6β2" |
###context:CREATE TABLE table_22834834_3 (championship VARCHAR, score_in_the_final VARCHAR)
###human: Which championship has a final score of 6β7 (9β11) , 6β4, 7β5, 4β6, 4β6?
###assistant: SELECT championship FROM table_22834834_3 WHERE score_in_the_final = "6β7 (9β11) , 6β4, 7β5, 4β6, 4β6" |
###context:CREATE TABLE table_22834834_12 (year VARCHAR, earnings__$_ VARCHAR)
###human: How many years had a total earnings amount of 2254598?
###assistant: SELECT COUNT(year) FROM table_22834834_12 WHERE earnings__$_ = 2254598 |
###context:CREATE TABLE table_22834834_12 (year INTEGER)
###human: What is the latest year that data is available for?
###assistant: SELECT MAX(year) FROM table_22834834_12 |
###context:CREATE TABLE table_22834834_2 (score_in_the_final VARCHAR, year VARCHAR)
###human: What is the score in the final in the year 1994?
###assistant: SELECT score_in_the_final FROM table_22834834_2 WHERE year = 1994 |
###context:CREATE TABLE table_22834834_2 (championship VARCHAR, year VARCHAR)
###human: Who is the championship for the year of 1993?
###assistant: SELECT championship FROM table_22834834_2 WHERE year = 1993 |
###context:CREATE TABLE table_22834834_2 (opponent_in_the_final VARCHAR, championship VARCHAR, year VARCHAR)
###human: Who is the opponent in the final when frankfurt is championship and the year is less than 1993.0?
###assistant: SELECT opponent_in_the_final FROM table_22834834_2 WHERE championship = "Frankfur... |
###context:CREATE TABLE table_22839669_12 (year INTEGER, money_list_rank VARCHAR)
###human: In what year was his money list rank 3?
###assistant: SELECT MIN(year) FROM table_22839669_12 WHERE money_list_rank = 3 |
###context:CREATE TABLE table_22839669_12 (money_list_rank INTEGER, year VARCHAR)
###human: What was his money list rank in 2001?
###assistant: SELECT MIN(money_list_rank) FROM table_22839669_12 WHERE year = 2001 |
###context:CREATE TABLE table_22839669_12 (atp_wins INTEGER, money_list_rank VARCHAR)
###human: How many atp wins did he have when his money list rank was 4?
###assistant: SELECT MAX(atp_wins) FROM table_22839669_12 WHERE money_list_rank = 4 |
###context:CREATE TABLE table_22839669_12 (total_wins INTEGER)
###human: What is the maximum total wins he had for any year?
###assistant: SELECT MAX(total_wins) FROM table_22839669_12 |
###context:CREATE TABLE table_228439_4 (district VARCHAR, successor VARCHAR)
###human: What district is Samuel A. Bridges ( D ) assigned to as a successor?
###assistant: SELECT district FROM table_228439_4 WHERE successor = "Samuel A. Bridges ( D )" |
###context:CREATE TABLE table_228439_4 (reason_for_change VARCHAR, successor VARCHAR)
###human: what was the reason Richard K. Meade ( d ) became a successor?
###assistant: SELECT reason_for_change FROM table_228439_4 WHERE successor = "Richard K. Meade ( D )" |
###context:CREATE TABLE table_228439_4 (successor VARCHAR, district VARCHAR)
###human: Who is the successor for massachusetts 8th?
###assistant: SELECT successor FROM table_228439_4 WHERE district = "Massachusetts 8th" |
###context:CREATE TABLE table_22847880_2 (opponent VARCHAR, record VARCHAR)
###human: Name the opponent for 11-1
###assistant: SELECT opponent FROM table_22847880_2 WHERE record = "11-1" |
###context:CREATE TABLE table_22847880_2 (record VARCHAR, opponent VARCHAR)
###human: Name the record for kentucky
###assistant: SELECT record FROM table_22847880_2 WHERE opponent = "Kentucky" |
###context:CREATE TABLE table_22839669_1 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)
###human: Who is the opponent in the match with final score 3β6, 4β6, 7β5, 4β6?
###assistant: SELECT opponent_in_the_final FROM table_22839669_1 WHERE score_in_the_final = "3β6, 4β6, 7β5, 4β6" |
###context:CREATE TABLE table_22839669_1 (outcome VARCHAR, score_in_the_final VARCHAR)
###human: What was the outcome of the match with score 4β6, 3β6, 2β6?
###assistant: SELECT outcome FROM table_22839669_1 WHERE score_in_the_final = "4β6, 3β6, 2β6" |
###context:CREATE TABLE table_22839669_1 (year INTEGER, score_in_the_final VARCHAR)
###human: What is the most recent year where the final score is 4β6, 3β6, 6β4, 5β7?
###assistant: SELECT MAX(year) FROM table_22839669_1 WHERE score_in_the_final = "4β6, 3β6, 6β4, 5β7" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.