instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: what is the market income per capita where the county is hancock?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_13 (market_income_per_capita VARCHAR, county VARCHAR)
SELECT market_income_per_capita FROM table_22815568_13 WHERE county = "Hancock"
Write a SQL query that answers the following question: what is the county where the market income per capita is $25,006?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: what is the unemployment rate where the market income per capita is $16,406?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: what is the unemployment rate for wayne county?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_13 (unemployment_rate VARCHAR, county VARCHAR)
SELECT unemployment_rate FROM table_22815568_13 WHERE county = "Wayne"
Write a SQL query that answers the following question: What is the original air date of the episode with a production code of 105?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815870_1 (original_air_date VARCHAR, prod_code VARCHAR)
SELECT original_air_date FROM table_22815870_1 WHERE prod_code = 105
Write a SQL query that answers the following question: How many counties have a population of 2266?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_3 (county VARCHAR, population VARCHAR)
SELECT COUNT(county) FROM table_22815568_3 WHERE population = 2266
Write a SQL query that answers the following question: How many statuses are listed for Wayne county?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_3 (status VARCHAR, county VARCHAR)
SELECT COUNT(status) FROM table_22815568_3 WHERE county = "Wayne"
Write a SQL query that answers the following question: What is the market income per capita in a county where the status is distressed and the unemployment rate is at 10.5%?
The relevant table was constructed using the following SQL : 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%"
Write a SQL query that answers the following question: What is the status for all the counties that have a poverty rate of 36.6%?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_3 (status VARCHAR, poverty_rate VARCHAR)
SELECT status FROM table_22815568_3 WHERE poverty_rate = "36.6%"
Write a SQL query that answers the following question: What is the status if the poverty rate is 11.4%?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_6 (status VARCHAR, poverty_rate VARCHAR)
SELECT status FROM table_22815568_6 WHERE poverty_rate = "11.4%"
Write a SQL query that answers the following question: If the poverty rate is 12.9%, what is the county?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_6 (county VARCHAR, poverty_rate VARCHAR)
SELECT county FROM table_22815568_6 WHERE poverty_rate = "12.9%"
Write a SQL query that answers the following question: What is the population maximum?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_6 (population INTEGER)
SELECT MAX(population) FROM table_22815568_6
Write a SQL query that answers the following question: What county is the unemployment rate 4.8%?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_6 (county VARCHAR, unemployment_rate VARCHAR)
SELECT county FROM table_22815568_6 WHERE unemployment_rate = "4.8%"
Write a SQL query that answers the following question: If the poverty rate is 12.9%, what is the market income per capita?
The relevant table was constructed using the following SQL : 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%"
Write a SQL query that answers the following question: Name the viewers for 2.1 rating
The relevant table was constructed using the following SQL : CREATE TABLE table_22822468_2 (viewers__millions_ VARCHAR, rating VARCHAR)
SELECT viewers__millions_ FROM table_22822468_2 WHERE rating = "2.1"
Write a SQL query that answers the following question: Name the most share for 2.76 million viewers
The relevant table was constructed using the following SQL : CREATE TABLE table_22822468_2 (share INTEGER, viewers__millions_ VARCHAR)
SELECT MAX(share) FROM table_22822468_2 WHERE viewers__millions_ = "2.76"
Write a SQL query that answers the following question: Name the viewers for 1.2/4 rating
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: Name the rating for 3.79 viewers
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: Name the least europa league
The relevant table was constructed using the following SQL : CREATE TABLE table (europa_league INTEGER)
SELECT MIN(europa_league) FROM table
Write a SQL query that answers the following question: What was the total number of rebounds on november 27?
The relevant table was constructed using the following SQL : CREATE TABLE table_22822559_4 (high_rebounds VARCHAR, date VARCHAR)
SELECT COUNT(high_rebounds) FROM table_22822559_4 WHERE date = "November 27"
Write a SQL query that answers the following question: On what date did the Pistons play @ toronto?
The relevant table was constructed using the following SQL : CREATE TABLE table_22822559_4 (date VARCHAR, team VARCHAR)
SELECT date FROM table_22822559_4 WHERE team = "@ Toronto"
Write a SQL query that answers the following question: List the location and number of fans in attendance for game 7/
The relevant table was constructed using the following SQL : CREATE TABLE table_22822559_4 (location_attendance VARCHAR, game VARCHAR)
SELECT COUNT(location_attendance) FROM table_22822559_4 WHERE game = 7
Write a SQL query that answers the following question: How many interceptions for the team who played 31 games?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824302_3 (steals VARCHAR, games_played VARCHAR)
SELECT steals FROM table_22824302_3 WHERE games_played = 31
Write a SQL query that answers the following question: How many steals for the player who had 121 rebounds?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824302_3 (steals INTEGER, rebounds VARCHAR)
SELECT MIN(steals) FROM table_22824302_3 WHERE rebounds = 121
Write a SQL query that answers the following question: What date was the Piston's record at 23-47?
The relevant table was constructed using the following SQL : CREATE TABLE table_22822559_8 (date VARCHAR, record VARCHAR)
SELECT date FROM table_22822559_8 WHERE record = "23-47"
Write a SQL query that answers the following question: Who had the highest rebounds during the game with a record of 23-47?
The relevant table was constructed using the following SQL : CREATE TABLE table_22822559_8 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_22822559_8 WHERE record = "23-47"
Write a SQL query that answers the following question: How many rebound did the person who scored 147 points have?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824199_1 (rebounds VARCHAR, points VARCHAR)
SELECT COUNT(rebounds) FROM table_22824199_1 WHERE points = 147
Write a SQL query that answers the following question: Of the players with 50 free throws, what is the lowest number of three pointers?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824199_1 (three_pointers INTEGER, free_throws VARCHAR)
SELECT MIN(three_pointers) FROM table_22824199_1 WHERE free_throws = 50
Write a SQL query that answers the following question: Who are all the players with 156 rebounds?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824199_1 (player VARCHAR, rebounds VARCHAR)
SELECT player FROM table_22824199_1 WHERE rebounds = 156
Write a SQL query that answers the following question: Of the players who scored 5 three pointers, what is the highest number of games played?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824199_1 (games_played INTEGER, three_pointers VARCHAR)
SELECT MAX(games_played) FROM table_22824199_1 WHERE three_pointers = 5
Write a SQL query that answers the following question: What is every number for the hometown of Canton, Illinois?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824297_1 (no VARCHAR, hometown VARCHAR)
SELECT no FROM table_22824297_1 WHERE hometown = "Canton, Illinois"
Write a SQL query that answers the following question: Who is every player with a height of 6-5?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824297_1 (player VARCHAR, height VARCHAR)
SELECT player FROM table_22824297_1 WHERE height = "6-5"
Write a SQL query that answers the following question: Who are all players from hometown of Carbondale, Illinois?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824297_1 (player VARCHAR, hometown VARCHAR)
SELECT player FROM table_22824297_1 WHERE hometown = "Carbondale, Illinois"
Write a SQL query that answers the following question: What is every class with a position of guard and Tal Brody as the player?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824297_1 (class VARCHAR, position VARCHAR, player VARCHAR)
SELECT class FROM table_22824297_1 WHERE position = "Guard" AND player = "Tal Brody"
Write a SQL query that answers the following question: How many values for number occur with the hometown of Canton, Illinois?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824297_1 (no VARCHAR, hometown VARCHAR)
SELECT COUNT(no) FROM table_22824297_1 WHERE hometown = "Canton, Illinois"
Write a SQL query that answers the following question: What class was ren alde?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824312_1 (class VARCHAR, player VARCHAR)
SELECT class FROM table_22824312_1 WHERE player = "Ren Alde"
Write a SQL query that answers the following question: Who are the player's who weighed 170?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824312_1 (player VARCHAR, weight VARCHAR)
SELECT player FROM table_22824312_1 WHERE weight = 170
Write a SQL query that answers the following question: What is jim dutcher's hometown?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824312_1 (hometown VARCHAR, player VARCHAR)
SELECT hometown FROM table_22824312_1 WHERE player = "Jim Dutcher"
Write a SQL query that answers the following question: Name the total number of player for 51 points
The relevant table was constructed using the following SQL : CREATE TABLE table_22824319_3 (player VARCHAR, points VARCHAR)
SELECT COUNT(player) FROM table_22824319_3 WHERE points = 51
Write a SQL query that answers the following question: Name the most rebounds for larry smith
The relevant table was constructed using the following SQL : CREATE TABLE table_22824319_3 (rebounds INTEGER, player VARCHAR)
SELECT MAX(rebounds) FROM table_22824319_3 WHERE player = "Larry Smith"
Write a SQL query that answers the following question: Name the steals for 5 blocks
The relevant table was constructed using the following SQL : CREATE TABLE table_22824319_3 (steals VARCHAR, blocks VARCHAR)
SELECT steals FROM table_22824319_3 WHERE blocks = 5
Write a SQL query that answers the following question: Name the least points
The relevant table was constructed using the following SQL : CREATE TABLE table_22824319_3 (points INTEGER)
SELECT MIN(points) FROM table_22824319_3
Write a SQL query that answers the following question: When 0.6–1.4 is the b r (t) what is the h ci (ka/m)?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: When nd 2 fe 14 b (bonded) is the magnet how many measurements of tc (Β°c)?
The relevant table was constructed using the following SQL : 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)"
Write a SQL query that answers the following question: When 720 is the t c (Β°c) what is the h ci (ka/m)?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: Name the sec wins for .357 percentage and 4-3 home record
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: Name the percentage for georgia
The relevant table was constructed using the following SQL : CREATE TABLE table_22825679_1 (percentage VARCHAR, team VARCHAR)
SELECT percentage FROM table_22825679_1 WHERE team = "Georgia"
Write a SQL query that answers the following question: Name the overall record for road record being 4-3
The relevant table was constructed using the following SQL : CREATE TABLE table_22825679_1 (overall_record VARCHAR, road_record VARCHAR)
SELECT overall_record FROM table_22825679_1 WHERE road_record = "4-3"
Write a SQL query that answers the following question: Name the number of road record for team ole miss
The relevant table was constructed using the following SQL : CREATE TABLE table_22825679_1 (road_record VARCHAR, team VARCHAR)
SELECT COUNT(road_record) FROM table_22825679_1 WHERE team = "Ole Miss"
Write a SQL query that answers the following question: Name the percentage for ole miss
The relevant table was constructed using the following SQL : CREATE TABLE table_22825679_1 (percentage VARCHAR, team VARCHAR)
SELECT percentage FROM table_22825679_1 WHERE team = "Ole Miss"
Write a SQL query that answers the following question: What is the most number of blocks kendall gill had?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824324_2 (blocks INTEGER, player VARCHAR)
SELECT MAX(blocks) FROM table_22824324_2 WHERE player = "Kendall Gill"
Write a SQL query that answers the following question: What is the lowest number of three pointers in games where the number of rebounds was 178?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824324_2 (three_pointers INTEGER, rebounds VARCHAR)
SELECT MIN(three_pointers) FROM table_22824324_2 WHERE rebounds = 178
Write a SQL query that answers the following question: How many steals were the in games that andy kaufmann played?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824324_2 (steals VARCHAR, player VARCHAR)
SELECT COUNT(steals) FROM table_22824324_2 WHERE player = "Andy Kaufmann"
Write a SQL query that answers the following question: What is the lowest number of three pointers in games that kendall gill played?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824324_2 (three_pointers INTEGER, player VARCHAR)
SELECT MIN(three_pointers) FROM table_22824324_2 WHERE player = "Kendall Gill"
Write a SQL query that answers the following question: How many games had three pointers where the number of points was 581?
The relevant table was constructed using the following SQL : CREATE TABLE table_22824324_2 (three_pointers VARCHAR, points VARCHAR)
SELECT COUNT(three_pointers) FROM table_22824324_2 WHERE points = 581
Write a SQL query that answers the following question: What was the highest amount of episodes for the season with 5.74 million viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_22837363_1 (episodes INTEGER, viewers__in_millions_ VARCHAR)
SELECT MAX(episodes) FROM table_22837363_1 WHERE viewers__in_millions_ = "5.74"
Write a SQL query that answers the following question: Which surfaces have the final score of 6–1, 6–7 (2–7) , 7–6 (7–5) , 7–6 (10–8)?
The relevant table was constructed using the following SQL : 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)"
Write a SQL query that answers the following question: How many outcome have a score of 7–6 (9–7) , 6–3?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: Which outcomes have a final score of 6–3, 6–2?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What is the last year that Andre Agassi was the final opponent?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: How many years have a final score of 6–3, 6–2?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: Which championship has a final score of 6–7 (9–11) , 6–4, 7–5, 4–6, 4–6?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: How many years had a total earnings amount of 2254598?
The relevant table was constructed using the following SQL : CREATE TABLE table_22834834_12 (year VARCHAR, earnings__$_ VARCHAR)
SELECT COUNT(year) FROM table_22834834_12 WHERE earnings__$_ = 2254598
Write a SQL query that answers the following question: What is the latest year that data is available for?
The relevant table was constructed using the following SQL : CREATE TABLE table_22834834_12 (year INTEGER)
SELECT MAX(year) FROM table_22834834_12
Write a SQL query that answers the following question: What is the score in the final in the year 1994?
The relevant table was constructed using the following SQL : CREATE TABLE table_22834834_2 (score_in_the_final VARCHAR, year VARCHAR)
SELECT score_in_the_final FROM table_22834834_2 WHERE year = 1994
Write a SQL query that answers the following question: Who is the championship for the year of 1993?
The relevant table was constructed using the following SQL : CREATE TABLE table_22834834_2 (championship VARCHAR, year VARCHAR)
SELECT championship FROM table_22834834_2 WHERE year = 1993
Write a SQL query that answers the following question: Who is the opponent in the final when frankfurt is championship and the year is less than 1993.0?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: In what year was his money list rank 3?
The relevant table was constructed using the following SQL : CREATE TABLE table_22839669_12 (year INTEGER, money_list_rank VARCHAR)
SELECT MIN(year) FROM table_22839669_12 WHERE money_list_rank = 3
Write a SQL query that answers the following question: What was his money list rank in 2001?
The relevant table was constructed using the following SQL : CREATE TABLE table_22839669_12 (money_list_rank INTEGER, year VARCHAR)
SELECT MIN(money_list_rank) FROM table_22839669_12 WHERE year = 2001
Write a SQL query that answers the following question: How many atp wins did he have when his money list rank was 4?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: What is the maximum total wins he had for any year?
The relevant table was constructed using the following SQL : CREATE TABLE table_22839669_12 (total_wins INTEGER)
SELECT MAX(total_wins) FROM table_22839669_12
Write a SQL query that answers the following question: What district is Samuel A. Bridges ( D ) assigned to as a successor?
The relevant table was constructed using the following SQL : CREATE TABLE table_228439_4 (district VARCHAR, successor VARCHAR)
SELECT district FROM table_228439_4 WHERE successor = "Samuel A. Bridges ( D )"
Write a SQL query that answers the following question: what was the reason Richard K. Meade ( d ) became a successor?
The relevant table was constructed using the following SQL : 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 )"
Write a SQL query that answers the following question: Who is the successor for massachusetts 8th?
The relevant table was constructed using the following SQL : CREATE TABLE table_228439_4 (successor VARCHAR, district VARCHAR)
SELECT successor FROM table_228439_4 WHERE district = "Massachusetts 8th"
Write a SQL query that answers the following question: Name the opponent for 11-1
The relevant table was constructed using the following SQL : CREATE TABLE table_22847880_2 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_22847880_2 WHERE record = "11-1"
Write a SQL query that answers the following question: Name the record for kentucky
The relevant table was constructed using the following SQL : CREATE TABLE table_22847880_2 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_22847880_2 WHERE opponent = "Kentucky"
Write a SQL query that answers the following question: Who is the opponent in the match with final score 3–6, 4–6, 7–5, 4–6?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What was the outcome of the match with score 4–6, 3–6, 2–6?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What is the most recent year where the final score is 4–6, 3–6, 6–4, 5–7?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What championship had a final score of 6–4, 6–2, 6–2?
The relevant table was constructed using the following SQL : CREATE TABLE table_22839669_1 (championship VARCHAR, score_in_the_final VARCHAR)
SELECT championship FROM table_22839669_1 WHERE score_in_the_final = "6–4, 6–2, 6–2"
Write a SQL query that answers the following question: If the year is 2007, what is the top ten?
The relevant table was constructed using the following SQL : CREATE TABLE table_22838521_3 (top_10s VARCHAR, year VARCHAR)
SELECT top_10s FROM table_22838521_3 WHERE year = 2007
Write a SQL query that answers the following question: What is the possible maximum money list rank?
The relevant table was constructed using the following SQL : CREATE TABLE table_22838521_3 (money_list_rank INTEGER)
SELECT MAX(money_list_rank) FROM table_22838521_3
Write a SQL query that answers the following question: If the scoring average is 72.46, what is the best finish?
The relevant table was constructed using the following SQL : CREATE TABLE table_22838521_3 (best_finish VARCHAR, scoring_average VARCHAR)
SELECT best_finish FROM table_22838521_3 WHERE scoring_average = "72.46"
Write a SQL query that answers the following question: Name the result for wesley moodie
The relevant table was constructed using the following SQL : CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_22853654_9 WHERE opponent = "Wesley Moodie"
Write a SQL query that answers the following question: Name the surface against monaco
The relevant table was constructed using the following SQL : CREATE TABLE table_22853654_9 (surface VARCHAR, against VARCHAR)
SELECT surface FROM table_22853654_9 WHERE against = "Monaco"
Write a SQL query that answers the following question: Name the result for alexander shvec
The relevant table was constructed using the following SQL : CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_22853654_9 WHERE opponent = "Alexander Shvec"
Write a SQL query that answers the following question: Name the opponent for 3–6, 4–6, 6–1, 6–7 (7–9)
The relevant table was constructed using the following SQL : CREATE TABLE table_22853654_9 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_22853654_9 WHERE result = "3–6, 4–6, 6–1, 6–7 (7–9)"
Write a SQL query that answers the following question: Name the annual rainfail for 2002 population being 493984
The relevant table was constructed using the following SQL : CREATE TABLE table_22854436_1 (average_annual_rainfall__mm_ VARCHAR, population__2002_census_data_ VARCHAR)
SELECT average_annual_rainfall__mm_ FROM table_22854436_1 WHERE population__2002_census_data_ = 493984
Write a SQL query that answers the following question: Name the most population 2002
The relevant table was constructed using the following SQL : CREATE TABLE table_22854436_1 (population__2002_census_data_ INTEGER)
SELECT MAX(population__2002_census_data_) FROM table_22854436_1
Write a SQL query that answers the following question: Name the total water resources m3 for rainfall being 650
The relevant table was constructed using the following SQL : CREATE TABLE table_22854436_1 (per_capita_average_annual_renewable_water_resources_m_3 VARCHAR, average_annual_rainfall__mm_ VARCHAR)
SELECT COUNT(per_capita_average_annual_renewable_water_resources_m_3) FROM table_22854436_1 WHERE average_annual_rainfall__mm_ = "650"
Write a SQL query that answers the following question: What were the carpet w-l in 1993?
The relevant table was constructed using the following SQL : CREATE TABLE table_22860698_8 (carpet_w_l VARCHAR, year VARCHAR)
SELECT carpet_w_l FROM table_22860698_8 WHERE year = 1993
Write a SQL query that answers the following question: What is the amount of US open runner-up score?
The relevant table was constructed using the following SQL : CREATE TABLE table_22858557_1 (score_in_final VARCHAR, championship VARCHAR, outcome VARCHAR)
SELECT COUNT(score_in_final) FROM table_22858557_1 WHERE championship = "US Open" AND outcome = "Runner-up"
Write a SQL query that answers the following question: What is the year where the runner-up outcome was at its basic minimum?
The relevant table was constructed using the following SQL : CREATE TABLE table_22858557_1 (year INTEGER, outcome VARCHAR)
SELECT MIN(year) FROM table_22858557_1 WHERE outcome = "Runner-up"
Write a SQL query that answers the following question: How many championships have there been with Steffi Graf?
The relevant table was constructed using the following SQL : CREATE TABLE table_22858557_1 (championship VARCHAR, opponent_in_final VARCHAR)
SELECT championship FROM table_22858557_1 WHERE opponent_in_final = "Steffi Graf"
Write a SQL query that answers the following question: How many opponents have wimbledon (2) as the championship?
The relevant table was constructed using the following SQL : CREATE TABLE table_22860698_2 (opponents VARCHAR, championship VARCHAR)
SELECT COUNT(opponents) FROM table_22860698_2 WHERE championship = "Wimbledon (2)"
Write a SQL query that answers the following question: What is the surface when the us open is the championship in the year 1979?
The relevant table was constructed using the following SQL : CREATE TABLE table_22860698_2 (surface VARCHAR, championship VARCHAR, year VARCHAR)
SELECT surface FROM table_22860698_2 WHERE championship = "US Open" AND year = 1979
Write a SQL query that answers the following question: What is the game number that was on November 27?
The relevant table was constructed using the following SQL : CREATE TABLE table_22871239_5 (_number VARCHAR, date VARCHAR)
SELECT _number FROM table_22871239_5 WHERE date = "November 27"
Write a SQL query that answers the following question: What was the score when the team was @ New Jersey?
The relevant table was constructed using the following SQL : CREATE TABLE table_22871239_5 (score VARCHAR, team VARCHAR)
SELECT score FROM table_22871239_5 WHERE team = "@ New Jersey"
Write a SQL query that answers the following question: How many high rebound catagories are listed for game number 5?
The relevant table was constructed using the following SQL : CREATE TABLE table_22871239_5 (high_rebounds VARCHAR, _number VARCHAR)
SELECT COUNT(high_rebounds) FROM table_22871239_5 WHERE _number = 5
Write a SQL query that answers the following question: Who were the opponents when the record was 11-2?
The relevant table was constructed using the following SQL : CREATE TABLE table_22862203_2 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_22862203_2 WHERE record = "11-2"