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