question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
| text
stringlengths 114
1.06k
|
---|---|---|---|
Can you tell me the highest Draws that has the Goal Difference smaller than 64, and the Played larger than 30?
|
CREATE TABLE table_name_5 (draws INTEGER, goal_difference VARCHAR, played VARCHAR)
|
SELECT MAX(draws) FROM table_name_5 WHERE goal_difference < 64 AND played > 30
|
### Context: CREATE TABLE table_name_5 (draws INTEGER, goal_difference VARCHAR, played VARCHAR) ### Question: Can you tell me the highest Draws that has the Goal Difference smaller than 64, and the Played larger than 30? ### Answer: SELECT MAX(draws) FROM table_name_5 WHERE goal_difference < 64 AND played > 30
|
Can you tell me the highest Points that has the Played smaller than 30?
|
CREATE TABLE table_name_67 (points INTEGER, played INTEGER)
|
SELECT MAX(points) FROM table_name_67 WHERE played < 30
|
### Context: CREATE TABLE table_name_67 (points INTEGER, played INTEGER) ### Question: Can you tell me the highest Points that has the Played smaller than 30? ### Answer: SELECT MAX(points) FROM table_name_67 WHERE played < 30
|
What rank was the country with no bronze but at least 1 silver medals?
|
CREATE TABLE table_name_57 (rank INTEGER, bronze VARCHAR, silver VARCHAR)
|
SELECT AVG(rank) FROM table_name_57 WHERE bronze < 1 AND silver > 1
|
### Context: CREATE TABLE table_name_57 (rank INTEGER, bronze VARCHAR, silver VARCHAR) ### Question: What rank was the country with no bronze but at least 1 silver medals? ### Answer: SELECT AVG(rank) FROM table_name_57 WHERE bronze < 1 AND silver > 1
|
What is the smallest number of gold medals a country with 1 bronze, and a total of 3 medals which is lower than rank 7?
|
CREATE TABLE table_name_48 (gold INTEGER, rank VARCHAR, bronze VARCHAR, total VARCHAR)
|
SELECT MIN(gold) FROM table_name_48 WHERE bronze = 1 AND total = 3 AND rank > 7
|
### Context: CREATE TABLE table_name_48 (gold INTEGER, rank VARCHAR, bronze VARCHAR, total VARCHAR) ### Question: What is the smallest number of gold medals a country with 1 bronze, and a total of 3 medals which is lower than rank 7? ### Answer: SELECT MIN(gold) FROM table_name_48 WHERE bronze = 1 AND total = 3 AND rank > 7
|
What is the smallest number of gold medals a country with 7 medals has?
|
CREATE TABLE table_name_23 (gold INTEGER, total VARCHAR)
|
SELECT MIN(gold) FROM table_name_23 WHERE total = 7
|
### Context: CREATE TABLE table_name_23 (gold INTEGER, total VARCHAR) ### Question: What is the smallest number of gold medals a country with 7 medals has? ### Answer: SELECT MIN(gold) FROM table_name_23 WHERE total = 7
|
Can you tell me the Host City that has the Games of vii?
|
CREATE TABLE table_name_35 (host_city VARCHAR, games VARCHAR)
|
SELECT host_city FROM table_name_35 WHERE games = "vii"
|
### Context: CREATE TABLE table_name_35 (host_city VARCHAR, games VARCHAR) ### Question: Can you tell me the Host City that has the Games of vii? ### Answer: SELECT host_city FROM table_name_35 WHERE games = "vii"
|
What was the nominated work after 2006, that was awarded the Drama Desk award and the Outstanding featured actor in a musical?
|
CREATE TABLE table_name_68 (nominated_work VARCHAR, category VARCHAR, year VARCHAR, award VARCHAR)
|
SELECT nominated_work FROM table_name_68 WHERE year > 2006 AND award = "drama desk award" AND category = "outstanding featured actor in a musical"
|
### Context: CREATE TABLE table_name_68 (nominated_work VARCHAR, category VARCHAR, year VARCHAR, award VARCHAR) ### Question: What was the nominated work after 2006, that was awarded the Drama Desk award and the Outstanding featured actor in a musical? ### Answer: SELECT nominated_work FROM table_name_68 WHERE year > 2006 AND award = "drama desk award" AND category = "outstanding featured actor in a musical"
|
What year was Evita nominated for outstanding featured actor in a musical?
|
CREATE TABLE table_name_25 (year VARCHAR, category VARCHAR, nominated_work VARCHAR)
|
SELECT COUNT(year) FROM table_name_25 WHERE category = "outstanding featured actor in a musical" AND nominated_work = "evita"
|
### Context: CREATE TABLE table_name_25 (year VARCHAR, category VARCHAR, nominated_work VARCHAR) ### Question: What year was Evita nominated for outstanding featured actor in a musical? ### Answer: SELECT COUNT(year) FROM table_name_25 WHERE category = "outstanding featured actor in a musical" AND nominated_work = "evita"
|
What was the nominated work, nominated for the drama league award before 2007?
|
CREATE TABLE table_name_29 (nominated_work VARCHAR, year VARCHAR, result VARCHAR, award VARCHAR)
|
SELECT nominated_work FROM table_name_29 WHERE result = "nominated" AND award = "drama league award" AND year < 2007
|
### Context: CREATE TABLE table_name_29 (nominated_work VARCHAR, year VARCHAR, result VARCHAR, award VARCHAR) ### Question: What was the nominated work, nominated for the drama league award before 2007? ### Answer: SELECT nominated_work FROM table_name_29 WHERE result = "nominated" AND award = "drama league award" AND year < 2007
|
Who had the pole position on 7 August?
|
CREATE TABLE table_name_2 (pole_position VARCHAR, date VARCHAR)
|
SELECT pole_position FROM table_name_2 WHERE date = "7 august"
|
### Context: CREATE TABLE table_name_2 (pole_position VARCHAR, date VARCHAR) ### Question: Who had the pole position on 7 August? ### Answer: SELECT pole_position FROM table_name_2 WHERE date = "7 august"
|
Who was the winning team at Zandvoort?
|
CREATE TABLE table_name_6 (winning_team VARCHAR, circuit VARCHAR)
|
SELECT winning_team FROM table_name_6 WHERE circuit = "zandvoort"
|
### Context: CREATE TABLE table_name_6 (winning_team VARCHAR, circuit VARCHAR) ### Question: Who was the winning team at Zandvoort? ### Answer: SELECT winning_team FROM table_name_6 WHERE circuit = "zandvoort"
|
Which Losses have Wins smaller than 6, and a South West DFL of sandford?
|
CREATE TABLE table_name_39 (losses INTEGER, wins VARCHAR, south_west_dfl VARCHAR)
|
SELECT MIN(losses) FROM table_name_39 WHERE wins < 6 AND south_west_dfl = "sandford"
|
### Context: CREATE TABLE table_name_39 (losses INTEGER, wins VARCHAR, south_west_dfl VARCHAR) ### Question: Which Losses have Wins smaller than 6, and a South West DFL of sandford? ### Answer: SELECT MIN(losses) FROM table_name_39 WHERE wins < 6 AND south_west_dfl = "sandford"
|
How much Against has Draws of 2, and Losses smaller than 4?
|
CREATE TABLE table_name_17 (against INTEGER, draws VARCHAR, losses VARCHAR)
|
SELECT SUM(against) FROM table_name_17 WHERE draws = 2 AND losses < 4
|
### Context: CREATE TABLE table_name_17 (against INTEGER, draws VARCHAR, losses VARCHAR) ### Question: How much Against has Draws of 2, and Losses smaller than 4? ### Answer: SELECT SUM(against) FROM table_name_17 WHERE draws = 2 AND losses < 4
|
How many Losses have South West DFL of coleraine, and an Against smaller than 891?
|
CREATE TABLE table_name_51 (losses VARCHAR, south_west_dfl VARCHAR, against VARCHAR)
|
SELECT COUNT(losses) FROM table_name_51 WHERE south_west_dfl = "coleraine" AND against < 891
|
### Context: CREATE TABLE table_name_51 (losses VARCHAR, south_west_dfl VARCHAR, against VARCHAR) ### Question: How many Losses have South West DFL of coleraine, and an Against smaller than 891? ### Answer: SELECT COUNT(losses) FROM table_name_51 WHERE south_west_dfl = "coleraine" AND against < 891
|
What is the lowest played number when goals for is 47, and wins is smaller than 14?
|
CREATE TABLE table_name_48 (played INTEGER, goals_for VARCHAR, wins VARCHAR)
|
SELECT MIN(played) FROM table_name_48 WHERE goals_for = 47 AND wins < 14
|
### Context: CREATE TABLE table_name_48 (played INTEGER, goals_for VARCHAR, wins VARCHAR) ### Question: What is the lowest played number when goals for is 47, and wins is smaller than 14? ### Answer: SELECT MIN(played) FROM table_name_48 WHERE goals_for = 47 AND wins < 14
|
What Club has 13 wins, goals against less than 48, and a position of 4?
|
CREATE TABLE table_name_26 (club VARCHAR, position VARCHAR, wins VARCHAR, goals_against VARCHAR)
|
SELECT club FROM table_name_26 WHERE wins = 13 AND goals_against < 48 AND position = 4
|
### Context: CREATE TABLE table_name_26 (club VARCHAR, position VARCHAR, wins VARCHAR, goals_against VARCHAR) ### Question: What Club has 13 wins, goals against less than 48, and a position of 4? ### Answer: SELECT club FROM table_name_26 WHERE wins = 13 AND goals_against < 48 AND position = 4
|
What is the lowest position number when goals against was 59, and a goals for is smaller than 24?
|
CREATE TABLE table_name_92 (position INTEGER, goals_against VARCHAR, goals_for VARCHAR)
|
SELECT MIN(position) FROM table_name_92 WHERE goals_against = 59 AND goals_for < 24
|
### Context: CREATE TABLE table_name_92 (position INTEGER, goals_against VARCHAR, goals_for VARCHAR) ### Question: What is the lowest position number when goals against was 59, and a goals for is smaller than 24? ### Answer: SELECT MIN(position) FROM table_name_92 WHERE goals_against = 59 AND goals_for < 24
|
What is the highest goals against when points are larger than 31, the goal difference is smaller than 9, wins are 13, and draws are larger than 6?
|
CREATE TABLE table_name_12 (goals_against INTEGER, draws VARCHAR, wins VARCHAR, points VARCHAR, goal_difference VARCHAR)
|
SELECT MAX(goals_against) FROM table_name_12 WHERE points > 31 AND goal_difference < 9 AND wins = 13 AND draws > 6
|
### Context: CREATE TABLE table_name_12 (goals_against INTEGER, draws VARCHAR, wins VARCHAR, points VARCHAR, goal_difference VARCHAR) ### Question: What is the highest goals against when points are larger than 31, the goal difference is smaller than 9, wins are 13, and draws are larger than 6? ### Answer: SELECT MAX(goals_against) FROM table_name_12 WHERE points > 31 AND goal_difference < 9 AND wins = 13 AND draws > 6
|
What is the lowest played number when points are larger than 32, and a wins are larger than 18?
|
CREATE TABLE table_name_52 (played INTEGER, points VARCHAR, wins VARCHAR)
|
SELECT MIN(played) FROM table_name_52 WHERE points > 32 AND wins > 18
|
### Context: CREATE TABLE table_name_52 (played INTEGER, points VARCHAR, wins VARCHAR) ### Question: What is the lowest played number when points are larger than 32, and a wins are larger than 18? ### Answer: SELECT MIN(played) FROM table_name_52 WHERE points > 32 AND wins > 18
|
Can you tell me the highest Against that has the Status of six nations, and the Date of 02/03/2002?
|
CREATE TABLE table_name_35 (against INTEGER, status VARCHAR, date VARCHAR)
|
SELECT MAX(against) FROM table_name_35 WHERE status = "six nations" AND date = "02/03/2002"
|
### Context: CREATE TABLE table_name_35 (against INTEGER, status VARCHAR, date VARCHAR) ### Question: Can you tell me the highest Against that has the Status of six nations, and the Date of 02/03/2002? ### Answer: SELECT MAX(against) FROM table_name_35 WHERE status = "six nations" AND date = "02/03/2002"
|
Can you tell me the average Against thaylt has the Date of 23/03/2002?
|
CREATE TABLE table_name_44 (against INTEGER, date VARCHAR)
|
SELECT AVG(against) FROM table_name_44 WHERE date = "23/03/2002"
|
### Context: CREATE TABLE table_name_44 (against INTEGER, date VARCHAR) ### Question: Can you tell me the average Against thaylt has the Date of 23/03/2002? ### Answer: SELECT AVG(against) FROM table_name_44 WHERE date = "23/03/2002"
|
What is the population of area of 11?
|
CREATE TABLE table_name_15 (population VARCHAR, area VARCHAR)
|
SELECT population FROM table_name_15 WHERE area = "11"
|
### Context: CREATE TABLE table_name_15 (population VARCHAR, area VARCHAR) ### Question: What is the population of area of 11? ### Answer: SELECT population FROM table_name_15 WHERE area = "11"
|
What shows for traditional when the population was 44,803?
|
CREATE TABLE table_name_14 (traditional VARCHAR, population VARCHAR)
|
SELECT traditional FROM table_name_14 WHERE population = "44,803"
|
### Context: CREATE TABLE table_name_14 (traditional VARCHAR, population VARCHAR) ### Question: What shows for traditional when the population was 44,803? ### Answer: SELECT traditional FROM table_name_14 WHERE population = "44,803"
|
What is the population when the area is 4,575?
|
CREATE TABLE table_name_8 (population VARCHAR, area VARCHAR)
|
SELECT population FROM table_name_8 WHERE area = "4,575"
|
### Context: CREATE TABLE table_name_8 (population VARCHAR, area VARCHAR) ### Question: What is the population when the area is 4,575? ### Answer: SELECT population FROM table_name_8 WHERE area = "4,575"
|
What shows for simplified when the density is 52?
|
CREATE TABLE table_name_13 (simplified VARCHAR, density VARCHAR)
|
SELECT simplified FROM table_name_13 WHERE density = "52"
|
### Context: CREATE TABLE table_name_13 (simplified VARCHAR, density VARCHAR) ### Question: What shows for simplified when the density is 52? ### Answer: SELECT simplified FROM table_name_13 WHERE density = "52"
|
What is the density when simplified shows 南山区?
|
CREATE TABLE table_name_33 (density VARCHAR, simplified VARCHAR)
|
SELECT density FROM table_name_33 WHERE simplified = "南山区"
|
### Context: CREATE TABLE table_name_33 (density VARCHAR, simplified VARCHAR) ### Question: What is the density when simplified shows 南山区? ### Answer: SELECT density FROM table_name_33 WHERE simplified = "南山区"
|
What is the pinyin when the simplified shows 南山区?
|
CREATE TABLE table_name_22 (pinyin VARCHAR, simplified VARCHAR)
|
SELECT pinyin FROM table_name_22 WHERE simplified = "南山区"
|
### Context: CREATE TABLE table_name_22 (pinyin VARCHAR, simplified VARCHAR) ### Question: What is the pinyin when the simplified shows 南山区? ### Answer: SELECT pinyin FROM table_name_22 WHERE simplified = "南山区"
|
What country does Greg Norman represent?
|
CREATE TABLE table_name_26 (country VARCHAR, player VARCHAR)
|
SELECT country FROM table_name_26 WHERE player = "greg norman"
|
### Context: CREATE TABLE table_name_26 (country VARCHAR, player VARCHAR) ### Question: What country does Greg Norman represent? ### Answer: SELECT country FROM table_name_26 WHERE player = "greg norman"
|
What years won have a total of 286?
|
CREATE TABLE table_name_11 (year_s__won VARCHAR, total VARCHAR)
|
SELECT year_s__won FROM table_name_11 WHERE total = 286
|
### Context: CREATE TABLE table_name_11 (year_s__won VARCHAR, total VARCHAR) ### Question: What years won have a total of 286? ### Answer: SELECT year_s__won FROM table_name_11 WHERE total = 286
|
Which player had a total of 295?
|
CREATE TABLE table_name_22 (player VARCHAR, total VARCHAR)
|
SELECT player FROM table_name_22 WHERE total = 295
|
### Context: CREATE TABLE table_name_22 (player VARCHAR, total VARCHAR) ### Question: Which player had a total of 295? ### Answer: SELECT player FROM table_name_22 WHERE total = 295
|
What is the To par when there was a total of 291?
|
CREATE TABLE table_name_10 (to_par VARCHAR, total VARCHAR)
|
SELECT to_par FROM table_name_10 WHERE total = 291
|
### Context: CREATE TABLE table_name_10 (to_par VARCHAR, total VARCHAR) ### Question: What is the To par when there was a total of 291? ### Answer: SELECT to_par FROM table_name_10 WHERE total = 291
|
What is the year of daylight service when the builder was Alco?
|
CREATE TABLE table_name_7 (years_of_daylight_service VARCHAR, builder VARCHAR)
|
SELECT years_of_daylight_service FROM table_name_7 WHERE builder = "alco"
|
### Context: CREATE TABLE table_name_7 (years_of_daylight_service VARCHAR, builder VARCHAR) ### Question: What is the year of daylight service when the builder was Alco? ### Answer: SELECT years_of_daylight_service FROM table_name_7 WHERE builder = "alco"
|
What is 2006-07 Season, when Team is "KF Fushë Kosova"?
|
CREATE TABLE table_name_64 (team VARCHAR)
|
SELECT 2006 AS _07_season FROM table_name_64 WHERE team = "kf fushë kosova"
|
### Context: CREATE TABLE table_name_64 (team VARCHAR) ### Question: What is 2006-07 Season, when Team is "KF Fushë Kosova"? ### Answer: SELECT 2006 AS _07_season FROM table_name_64 WHERE team = "kf fushë kosova"
|
What is Year(s) Won, when Total is "145", and when Country is "United States"?
|
CREATE TABLE table_name_40 (year_s__won VARCHAR, total VARCHAR, country VARCHAR)
|
SELECT year_s__won FROM table_name_40 WHERE total = 145 AND country = "united states"
|
### Context: CREATE TABLE table_name_40 (year_s__won VARCHAR, total VARCHAR, country VARCHAR) ### Question: What is Year(s) Won, when Total is "145", and when Country is "United States"? ### Answer: SELECT year_s__won FROM table_name_40 WHERE total = 145 AND country = "united states"
|
What is the lowest To par, when Total is greater than 148, and when Year(s) Won is "1959 , 1968 , 1974"?
|
CREATE TABLE table_name_97 (to_par INTEGER, total VARCHAR, year_s__won VARCHAR)
|
SELECT MIN(to_par) FROM table_name_97 WHERE total < 148 AND year_s__won = "1959 , 1968 , 1974"
|
### Context: CREATE TABLE table_name_97 (to_par INTEGER, total VARCHAR, year_s__won VARCHAR) ### Question: What is the lowest To par, when Total is greater than 148, and when Year(s) Won is "1959 , 1968 , 1974"? ### Answer: SELECT MIN(to_par) FROM table_name_97 WHERE total < 148 AND year_s__won = "1959 , 1968 , 1974"
|
What is Country, when To par is "1", and when Player is "Seve Ballesteros"?
|
CREATE TABLE table_name_20 (country VARCHAR, to_par VARCHAR, player VARCHAR)
|
SELECT country FROM table_name_20 WHERE to_par = 1 AND player = "seve ballesteros"
|
### Context: CREATE TABLE table_name_20 (country VARCHAR, to_par VARCHAR, player VARCHAR) ### Question: What is Country, when To par is "1", and when Player is "Seve Ballesteros"? ### Answer: SELECT country FROM table_name_20 WHERE to_par = 1 AND player = "seve ballesteros"
|
What is the sum of Total, when Year(s) Won is "1966 , 1970 , 1978", and when To par is less than 4?
|
CREATE TABLE table_name_81 (total INTEGER, year_s__won VARCHAR, to_par VARCHAR)
|
SELECT SUM(total) FROM table_name_81 WHERE year_s__won = "1966 , 1970 , 1978" AND to_par < 4
|
### Context: CREATE TABLE table_name_81 (total INTEGER, year_s__won VARCHAR, to_par VARCHAR) ### Question: What is the sum of Total, when Year(s) Won is "1966 , 1970 , 1978", and when To par is less than 4? ### Answer: SELECT SUM(total) FROM table_name_81 WHERE year_s__won = "1966 , 1970 , 1978" AND to_par < 4
|
What is Country, when Total is less than 148, and when Player is "Gary Player"?
|
CREATE TABLE table_name_19 (country VARCHAR, total VARCHAR, player VARCHAR)
|
SELECT country FROM table_name_19 WHERE total < 148 AND player = "gary player"
|
### Context: CREATE TABLE table_name_19 (country VARCHAR, total VARCHAR, player VARCHAR) ### Question: What is Country, when Total is less than 148, and when Player is "Gary Player"? ### Answer: SELECT country FROM table_name_19 WHERE total < 148 AND player = "gary player"
|
What is To par, when Total is less than 148, and when Country is "South Africa"?
|
CREATE TABLE table_name_7 (to_par VARCHAR, total VARCHAR, country VARCHAR)
|
SELECT to_par FROM table_name_7 WHERE total < 148 AND country = "south africa"
|
### Context: CREATE TABLE table_name_7 (to_par VARCHAR, total VARCHAR, country VARCHAR) ### Question: What is To par, when Total is less than 148, and when Country is "South Africa"? ### Answer: SELECT to_par FROM table_name_7 WHERE total < 148 AND country = "south africa"
|
What is the average age at appointment of those attached to security?
|
CREATE TABLE table_name_58 (age_at_appointment INTEGER, portfolio_attachment VARCHAR)
|
SELECT AVG(age_at_appointment) FROM table_name_58 WHERE portfolio_attachment = "security"
|
### Context: CREATE TABLE table_name_58 (age_at_appointment INTEGER, portfolio_attachment VARCHAR) ### Question: What is the average age at appointment of those attached to security? ### Answer: SELECT AVG(age_at_appointment) FROM table_name_58 WHERE portfolio_attachment = "security"
|
What was the distance of the race on saturday, august 23?
|
CREATE TABLE table_name_59 (distance VARCHAR, date VARCHAR)
|
SELECT distance FROM table_name_59 WHERE date = "saturday, august 23"
|
### Context: CREATE TABLE table_name_59 (distance VARCHAR, date VARCHAR) ### Question: What was the distance of the race on saturday, august 23? ### Answer: SELECT distance FROM table_name_59 WHERE date = "saturday, august 23"
|
Who was the winner of the race that had a distance of 175.6km?
|
CREATE TABLE table_name_70 (winner VARCHAR, distance VARCHAR)
|
SELECT winner FROM table_name_70 WHERE distance = "175.6km"
|
### Context: CREATE TABLE table_name_70 (winner VARCHAR, distance VARCHAR) ### Question: Who was the winner of the race that had a distance of 175.6km? ### Answer: SELECT winner FROM table_name_70 WHERE distance = "175.6km"
|
Who won the race on wednesday, august 27?
|
CREATE TABLE table_name_18 (winner VARCHAR, date VARCHAR)
|
SELECT winner FROM table_name_18 WHERE date = "wednesday, august 27"
|
### Context: CREATE TABLE table_name_18 (winner VARCHAR, date VARCHAR) ### Question: Who won the race on wednesday, august 27? ### Answer: SELECT winner FROM table_name_18 WHERE date = "wednesday, august 27"
|
What is the distance of the maldegem > brussels route?
|
CREATE TABLE table_name_71 (distance VARCHAR, route VARCHAR)
|
SELECT distance FROM table_name_71 WHERE route = "maldegem > brussels"
|
### Context: CREATE TABLE table_name_71 (distance VARCHAR, route VARCHAR) ### Question: What is the distance of the maldegem > brussels route? ### Answer: SELECT distance FROM table_name_71 WHERE route = "maldegem > brussels"
|
Who was the winner of the mechelen > mechelen route?
|
CREATE TABLE table_name_63 (winner VARCHAR, route VARCHAR)
|
SELECT winner FROM table_name_63 WHERE route = "mechelen > mechelen"
|
### Context: CREATE TABLE table_name_63 (winner VARCHAR, route VARCHAR) ### Question: Who was the winner of the mechelen > mechelen route? ### Answer: SELECT winner FROM table_name_63 WHERE route = "mechelen > mechelen"
|
What IMAP sharing options exist for software with a web UI?
|
CREATE TABLE table_name_93 (imap_shared VARCHAR, web_ui VARCHAR)
|
SELECT imap_shared FROM table_name_93 WHERE web_ui = "web ui"
|
### Context: CREATE TABLE table_name_93 (imap_shared VARCHAR, web_ui VARCHAR) ### Question: What IMAP sharing options exist for software with a web UI? ### Answer: SELECT imap_shared FROM table_name_93 WHERE web_ui = "web ui"
|
What's the total for the wc belgrade event with 10 rank points?
|
CREATE TABLE table_name_3 (total VARCHAR, event VARCHAR, rank_points VARCHAR)
|
SELECT total FROM table_name_3 WHERE event = "wc belgrade" AND rank_points = "10"
|
### Context: CREATE TABLE table_name_3 (total VARCHAR, event VARCHAR, rank_points VARCHAR) ### Question: What's the total for the wc belgrade event with 10 rank points? ### Answer: SELECT total FROM table_name_3 WHERE event = "wc belgrade" AND rank_points = "10"
|
That's the total for rank points of olympic gold medalist?
|
CREATE TABLE table_name_72 (total VARCHAR, rank_points VARCHAR)
|
SELECT total FROM table_name_72 WHERE rank_points = "olympic gold medalist"
|
### Context: CREATE TABLE table_name_72 (total VARCHAR, rank_points VARCHAR) ### Question: That's the total for rank points of olympic gold medalist? ### Answer: SELECT total FROM table_name_72 WHERE rank_points = "olympic gold medalist"
|
Who's the shooter with score points of defending champion?
|
CREATE TABLE table_name_51 (shooter VARCHAR, score_points VARCHAR)
|
SELECT shooter FROM table_name_51 WHERE score_points = "defending champion"
|
### Context: CREATE TABLE table_name_51 (shooter VARCHAR, score_points VARCHAR) ### Question: Who's the shooter with score points of defending champion? ### Answer: SELECT shooter FROM table_name_51 WHERE score_points = "defending champion"
|
Who's the shooter with a total of 25?
|
CREATE TABLE table_name_57 (shooter VARCHAR, total VARCHAR)
|
SELECT shooter FROM table_name_57 WHERE total = "25"
|
### Context: CREATE TABLE table_name_57 (shooter VARCHAR, total VARCHAR) ### Question: Who's the shooter with a total of 25? ### Answer: SELECT shooter FROM table_name_57 WHERE total = "25"
|
Who's the shooter with 13 score points and 10 rank points?
|
CREATE TABLE table_name_32 (shooter VARCHAR, score_points VARCHAR, rank_points VARCHAR)
|
SELECT shooter FROM table_name_32 WHERE score_points = "13" AND rank_points = "10"
|
### Context: CREATE TABLE table_name_32 (shooter VARCHAR, score_points VARCHAR, rank_points VARCHAR) ### Question: Who's the shooter with 13 score points and 10 rank points? ### Answer: SELECT shooter FROM table_name_32 WHERE score_points = "13" AND rank_points = "10"
|
What is the highest points when the top goal scorer was Khaled Msakni (10), and the final standing is less than 12?
|
CREATE TABLE table_name_95 (points INTEGER, top_goal_scorer VARCHAR, final_standing VARCHAR)
|
SELECT MAX(points) FROM table_name_95 WHERE top_goal_scorer = "khaled msakni (10)" AND final_standing < 12
|
### Context: CREATE TABLE table_name_95 (points INTEGER, top_goal_scorer VARCHAR, final_standing VARCHAR) ### Question: What is the highest points when the top goal scorer was Khaled Msakni (10), and the final standing is less than 12? ### Answer: SELECT MAX(points) FROM table_name_95 WHERE top_goal_scorer = "khaled msakni (10)" AND final_standing < 12
|
What is the final standing in 1981–82?
|
CREATE TABLE table_name_58 (final_standing VARCHAR, years VARCHAR)
|
SELECT final_standing FROM table_name_58 WHERE years = "1981–82"
|
### Context: CREATE TABLE table_name_58 (final_standing VARCHAR, years VARCHAR) ### Question: What is the final standing in 1981–82? ### Answer: SELECT final_standing FROM table_name_58 WHERE years = "1981–82"
|
Which event had 4th place and took place in the year 2007?
|
CREATE TABLE table_name_76 (event VARCHAR, position VARCHAR, year VARCHAR)
|
SELECT event FROM table_name_76 WHERE position = "4th" AND year = 2007
|
### Context: CREATE TABLE table_name_76 (event VARCHAR, position VARCHAR, year VARCHAR) ### Question: Which event had 4th place and took place in the year 2007? ### Answer: SELECT event FROM table_name_76 WHERE position = "4th" AND year = 2007
|
What runner-up has 4 & 3 as the score, with michael bonallack as the winner?
|
CREATE TABLE table_name_14 (runner_up VARCHAR, score VARCHAR, winner VARCHAR)
|
SELECT runner_up FROM table_name_14 WHERE score = "4 & 3" AND winner = "michael bonallack"
|
### Context: CREATE TABLE table_name_14 (runner_up VARCHAR, score VARCHAR, winner VARCHAR) ### Question: What runner-up has 4 & 3 as the score, with michael bonallack as the winner? ### Answer: SELECT runner_up FROM table_name_14 WHERE score = "4 & 3" AND winner = "michael bonallack"
|
What venue has 3 & 2 as the score, and 1965 as the year?
|
CREATE TABLE table_name_83 (venue VARCHAR, score VARCHAR, year VARCHAR)
|
SELECT venue FROM table_name_83 WHERE score = "3 & 2" AND year = "1965"
|
### Context: CREATE TABLE table_name_83 (venue VARCHAR, score VARCHAR, year VARCHAR) ### Question: What venue has 3 & 2 as the score, and 1965 as the year? ### Answer: SELECT venue FROM table_name_83 WHERE score = "3 & 2" AND year = "1965"
|
What runner-up has 2008 as the year?
|
CREATE TABLE table_name_95 (runner_up VARCHAR, year VARCHAR)
|
SELECT runner_up FROM table_name_95 WHERE year = "2008"
|
### Context: CREATE TABLE table_name_95 (runner_up VARCHAR, year VARCHAR) ### Question: What runner-up has 2008 as the year? ### Answer: SELECT runner_up FROM table_name_95 WHERE year = "2008"
|
What winner has royal st george's golf club as the venue, and 1969 as the year?
|
CREATE TABLE table_name_70 (winner VARCHAR, venue VARCHAR, year VARCHAR)
|
SELECT winner FROM table_name_70 WHERE venue = "royal st george's golf club" AND year = "1969"
|
### Context: CREATE TABLE table_name_70 (winner VARCHAR, venue VARCHAR, year VARCHAR) ### Question: What winner has royal st george's golf club as the venue, and 1969 as the year? ### Answer: SELECT winner FROM table_name_70 WHERE venue = "royal st george's golf club" AND year = "1969"
|
What runner-up has 1925 as the year?
|
CREATE TABLE table_name_6 (runner_up VARCHAR, year VARCHAR)
|
SELECT runner_up FROM table_name_6 WHERE year = "1925"
|
### Context: CREATE TABLE table_name_6 (runner_up VARCHAR, year VARCHAR) ### Question: What runner-up has 1925 as the year? ### Answer: SELECT runner_up FROM table_name_6 WHERE year = "1925"
|
What year has John Davies as the runner-up, with warren humphreys as the winner?
|
CREATE TABLE table_name_3 (year VARCHAR, runner_up VARCHAR, winner VARCHAR)
|
SELECT year FROM table_name_3 WHERE runner_up = "john davies" AND winner = "warren humphreys"
|
### Context: CREATE TABLE table_name_3 (year VARCHAR, runner_up VARCHAR, winner VARCHAR) ### Question: What year has John Davies as the runner-up, with warren humphreys as the winner? ### Answer: SELECT year FROM table_name_3 WHERE runner_up = "john davies" AND winner = "warren humphreys"
|
What country is the player who scored 27 goals from?
|
CREATE TABLE table_name_71 (nationality VARCHAR, goals VARCHAR)
|
SELECT nationality FROM table_name_71 WHERE goals = 27
|
### Context: CREATE TABLE table_name_71 (nationality VARCHAR, goals VARCHAR) ### Question: What country is the player who scored 27 goals from? ### Answer: SELECT nationality FROM table_name_71 WHERE goals = 27
|
For the player that scored 27 goals, what years did he score them?
|
CREATE TABLE table_name_62 (years VARCHAR, goals VARCHAR)
|
SELECT years FROM table_name_62 WHERE goals = 27
|
### Context: CREATE TABLE table_name_62 (years VARCHAR, goals VARCHAR) ### Question: For the player that scored 27 goals, what years did he score them? ### Answer: SELECT years FROM table_name_62 WHERE goals = 27
|
In what place(s) did the player(s) with a total less than 282 finish?
|
CREATE TABLE table_name_33 (finish VARCHAR, total INTEGER)
|
SELECT finish FROM table_name_33 WHERE total < 282
|
### Context: CREATE TABLE table_name_33 (finish VARCHAR, total INTEGER) ### Question: In what place(s) did the player(s) with a total less than 282 finish? ### Answer: SELECT finish FROM table_name_33 WHERE total < 282
|
In what place did Nick Faldo, who had more than 284 points and a to par score of +5, finish?
|
CREATE TABLE table_name_94 (finish VARCHAR, player VARCHAR, total VARCHAR, to_par VARCHAR)
|
SELECT finish FROM table_name_94 WHERE total > 284 AND to_par = "+5" AND player = "nick faldo"
|
### Context: CREATE TABLE table_name_94 (finish VARCHAR, player VARCHAR, total VARCHAR, to_par VARCHAR) ### Question: In what place did Nick Faldo, who had more than 284 points and a to par score of +5, finish? ### Answer: SELECT finish FROM table_name_94 WHERE total > 284 AND to_par = "+5" AND player = "nick faldo"
|
When did Prime Minister Agathe Uwilingiyimana's mandate end?
|
CREATE TABLE table_name_44 (mandate_end VARCHAR, office VARCHAR, name_a VARCHAR)
|
SELECT mandate_end FROM table_name_44 WHERE office = "prime minister" AND name_a = "agathe uwilingiyimana"
|
### Context: CREATE TABLE table_name_44 (mandate_end VARCHAR, office VARCHAR, name_a VARCHAR) ### Question: When did Prime Minister Agathe Uwilingiyimana's mandate end? ### Answer: SELECT mandate_end FROM table_name_44 WHERE office = "prime minister" AND name_a = "agathe uwilingiyimana"
|
What is the power output for class 5?
|
CREATE TABLE table_name_29 (power_output__kw_ VARCHAR, number_in_class VARCHAR)
|
SELECT power_output__kw_ FROM table_name_29 WHERE number_in_class = 5
|
### Context: CREATE TABLE table_name_29 (power_output__kw_ VARCHAR, number_in_class VARCHAR) ### Question: What is the power output for class 5? ### Answer: SELECT power_output__kw_ FROM table_name_29 WHERE number_in_class = 5
|
Which class has a power output larger than 700 and a class of 48?
|
CREATE TABLE table_name_75 (class VARCHAR, power_output__kw_ VARCHAR, number_in_class VARCHAR)
|
SELECT class FROM table_name_75 WHERE power_output__kw_ > 700 AND number_in_class = 48
|
### Context: CREATE TABLE table_name_75 (class VARCHAR, power_output__kw_ VARCHAR, number_in_class VARCHAR) ### Question: Which class has a power output larger than 700 and a class of 48? ### Answer: SELECT class FROM table_name_75 WHERE power_output__kw_ > 700 AND number_in_class = 48
|
What is the Week 8 result of the team that lost to syarcuse (4-2) in Week 7?
|
CREATE TABLE table_name_44 (week_8_oct_26 VARCHAR, week_7_oct_19 VARCHAR)
|
SELECT week_8_oct_26 FROM table_name_44 WHERE week_7_oct_19 = "syarcuse (4-2)"
|
### Context: CREATE TABLE table_name_44 (week_8_oct_26 VARCHAR, week_7_oct_19 VARCHAR) ### Question: What is the Week 8 result of the team that lost to syarcuse (4-2) in Week 7? ### Answer: SELECT week_8_oct_26 FROM table_name_44 WHERE week_7_oct_19 = "syarcuse (4-2)"
|
What is the Week 1 result of Colorado State?
|
CREATE TABLE table_name_15 (week_1_sept_7 VARCHAR, preseason VARCHAR)
|
SELECT week_1_sept_7 FROM table_name_15 WHERE preseason = "colorado state"
|
### Context: CREATE TABLE table_name_15 (week_1_sept_7 VARCHAR, preseason VARCHAR) ### Question: What is the Week 1 result of Colorado State? ### Answer: SELECT week_1_sept_7 FROM table_name_15 WHERE preseason = "colorado state"
|
Who is the incumbent for the Colorado 4 district?
|
CREATE TABLE table_name_95 (incumbent VARCHAR, district VARCHAR)
|
SELECT incumbent FROM table_name_95 WHERE district = "colorado 4"
|
### Context: CREATE TABLE table_name_95 (incumbent VARCHAR, district VARCHAR) ### Question: Who is the incumbent for the Colorado 4 district? ### Answer: SELECT incumbent FROM table_name_95 WHERE district = "colorado 4"
|
What district is the incumbent Republican and the incumbent retired to run for governor democratic gain?
|
CREATE TABLE table_name_41 (district VARCHAR, party VARCHAR, results VARCHAR)
|
SELECT district FROM table_name_41 WHERE party = "republican" AND results = "retired to run for governor democratic gain"
|
### Context: CREATE TABLE table_name_41 (district VARCHAR, party VARCHAR, results VARCHAR) ### Question: What district is the incumbent Republican and the incumbent retired to run for governor democratic gain? ### Answer: SELECT district FROM table_name_41 WHERE party = "republican" AND results = "retired to run for governor democratic gain"
|
In Colorado 6 district what is the party?
|
CREATE TABLE table_name_66 (party VARCHAR, district VARCHAR)
|
SELECT party FROM table_name_66 WHERE district = "colorado 6"
|
### Context: CREATE TABLE table_name_66 (party VARCHAR, district VARCHAR) ### Question: In Colorado 6 district what is the party? ### Answer: SELECT party FROM table_name_66 WHERE district = "colorado 6"
|
Which tournament had a clay surface and a score of 6–1, 3–6, 6–2?
|
CREATE TABLE table_name_76 (tournament VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)
|
SELECT tournament FROM table_name_76 WHERE surface = "clay" AND score_in_the_final = "6–1, 3–6, 6–2"
|
### Context: CREATE TABLE table_name_76 (tournament VARCHAR, surface VARCHAR, score_in_the_final VARCHAR) ### Question: Which tournament had a clay surface and a score of 6–1, 3–6, 6–2? ### Answer: SELECT tournament FROM table_name_76 WHERE surface = "clay" AND score_in_the_final = "6–1, 3–6, 6–2"
|
How many days had a score of 4–6, 4–6?
|
CREATE TABLE table_name_39 (date VARCHAR, score_in_the_final VARCHAR)
|
SELECT COUNT(date) FROM table_name_39 WHERE score_in_the_final = "4–6, 4–6"
|
### Context: CREATE TABLE table_name_39 (date VARCHAR, score_in_the_final VARCHAR) ### Question: How many days had a score of 4–6, 4–6? ### Answer: SELECT COUNT(date) FROM table_name_39 WHERE score_in_the_final = "4–6, 4–6"
|
What was the To Par of Tiger Woods who won in 1988?
|
CREATE TABLE table_name_85 (to_par VARCHAR, year_won VARCHAR)
|
SELECT to_par FROM table_name_85 WHERE year_won = 1988
|
### Context: CREATE TABLE table_name_85 (to_par VARCHAR, year_won VARCHAR) ### Question: What was the To Par of Tiger Woods who won in 1988? ### Answer: SELECT to_par FROM table_name_85 WHERE year_won = 1988
|
What is the team sites entry for Microsoft Sharepoint?
|
CREATE TABLE table_name_59 (team_sites VARCHAR, name VARCHAR)
|
SELECT team_sites FROM table_name_59 WHERE name = "microsoft sharepoint"
|
### Context: CREATE TABLE table_name_59 (team_sites VARCHAR, name VARCHAR) ### Question: What is the team sites entry for Microsoft Sharepoint? ### Answer: SELECT team_sites FROM table_name_59 WHERE name = "microsoft sharepoint"
|
If the intranet entry is Yes, what is the extranet entry for Microsoft Exchange server?
|
CREATE TABLE table_name_72 (extranet VARCHAR, intranet VARCHAR, name VARCHAR)
|
SELECT extranet FROM table_name_72 WHERE intranet = "yes" AND name = "microsoft exchange server"
|
### Context: CREATE TABLE table_name_72 (extranet VARCHAR, intranet VARCHAR, name VARCHAR) ### Question: If the intranet entry is Yes, what is the extranet entry for Microsoft Exchange server? ### Answer: SELECT extranet FROM table_name_72 WHERE intranet = "yes" AND name = "microsoft exchange server"
|
What is the team sites entry that has a public entry of No and a developer entry of Yes?
|
CREATE TABLE table_name_53 (team_sites VARCHAR, public VARCHAR, developer VARCHAR)
|
SELECT team_sites FROM table_name_53 WHERE public = "no" AND developer = "yes"
|
### Context: CREATE TABLE table_name_53 (team_sites VARCHAR, public VARCHAR, developer VARCHAR) ### Question: What is the team sites entry that has a public entry of No and a developer entry of Yes? ### Answer: SELECT team_sites FROM table_name_53 WHERE public = "no" AND developer = "yes"
|
What is the name for the entry that has a public of Yes, a personal sites of No, and a team sites of No?
|
CREATE TABLE table_name_34 (name VARCHAR, team_sites VARCHAR, public VARCHAR, personal_sites VARCHAR)
|
SELECT name FROM table_name_34 WHERE public = "yes" AND personal_sites = "no" AND team_sites = "no"
|
### Context: CREATE TABLE table_name_34 (name VARCHAR, team_sites VARCHAR, public VARCHAR, personal_sites VARCHAR) ### Question: What is the name for the entry that has a public of Yes, a personal sites of No, and a team sites of No? ### Answer: SELECT name FROM table_name_34 WHERE public = "yes" AND personal_sites = "no" AND team_sites = "no"
|
What is the name of the entry that has a developer entry of Yes and a personal sites entry of No?
|
CREATE TABLE table_name_61 (name VARCHAR, developer VARCHAR, personal_sites VARCHAR)
|
SELECT name FROM table_name_61 WHERE developer = "yes" AND personal_sites = "no"
|
### Context: CREATE TABLE table_name_61 (name VARCHAR, developer VARCHAR, personal_sites VARCHAR) ### Question: What is the name of the entry that has a developer entry of Yes and a personal sites entry of No? ### Answer: SELECT name FROM table_name_61 WHERE developer = "yes" AND personal_sites = "no"
|
What Line has Ohakune Junction as its NIMT?
|
CREATE TABLE table_name_90 (line_name VARCHAR, nimt_junction VARCHAR)
|
SELECT line_name FROM table_name_90 WHERE nimt_junction = "ohakune junction"
|
### Context: CREATE TABLE table_name_90 (line_name VARCHAR, nimt_junction VARCHAR) ### Question: What Line has Ohakune Junction as its NIMT? ### Answer: SELECT line_name FROM table_name_90 WHERE nimt_junction = "ohakune junction"
|
What line has Newmarket Junction terminus?
|
CREATE TABLE table_name_4 (line_name VARCHAR, terminus VARCHAR)
|
SELECT line_name FROM table_name_4 WHERE terminus = "newmarket junction"
|
### Context: CREATE TABLE table_name_4 (line_name VARCHAR, terminus VARCHAR) ### Question: What line has Newmarket Junction terminus? ### Answer: SELECT line_name FROM table_name_4 WHERE terminus = "newmarket junction"
|
What terminus is 3.5km in lenght?
|
CREATE TABLE table_name_37 (terminus VARCHAR, length VARCHAR)
|
SELECT terminus FROM table_name_37 WHERE length = "3.5km"
|
### Context: CREATE TABLE table_name_37 (terminus VARCHAR, length VARCHAR) ### Question: What terminus is 3.5km in lenght? ### Answer: SELECT terminus FROM table_name_37 WHERE length = "3.5km"
|
What line has Junction of Huntly NIMT
|
CREATE TABLE table_name_7 (line_name VARCHAR, nimt_junction VARCHAR)
|
SELECT line_name FROM table_name_7 WHERE nimt_junction = "huntly"
|
### Context: CREATE TABLE table_name_7 (line_name VARCHAR, nimt_junction VARCHAR) ### Question: What line has Junction of Huntly NIMT ### Answer: SELECT line_name FROM table_name_7 WHERE nimt_junction = "huntly"
|
What is the average final with an all around greater than 19.35 and a total over 40?
|
CREATE TABLE table_name_42 (final INTEGER, all_around VARCHAR, total VARCHAR)
|
SELECT AVG(final) FROM table_name_42 WHERE all_around > 19.35 AND total > 40
|
### Context: CREATE TABLE table_name_42 (final INTEGER, all_around VARCHAR, total VARCHAR) ### Question: What is the average final with an all around greater than 19.35 and a total over 40? ### Answer: SELECT AVG(final) FROM table_name_42 WHERE all_around > 19.35 AND total > 40
|
What is the sum of the final for finland, who placed greater than 2 and had an all around larger than 18.9?
|
CREATE TABLE table_name_26 (final INTEGER, all_around VARCHAR, place VARCHAR, nation VARCHAR)
|
SELECT SUM(final) FROM table_name_26 WHERE place > 2 AND nation = "finland" AND all_around > 18.9
|
### Context: CREATE TABLE table_name_26 (final INTEGER, all_around VARCHAR, place VARCHAR, nation VARCHAR) ### Question: What is the sum of the final for finland, who placed greater than 2 and had an all around larger than 18.9? ### Answer: SELECT SUM(final) FROM table_name_26 WHERE place > 2 AND nation = "finland" AND all_around > 18.9
|
What is the place of the player with £140,000 and a 68-68-75-68=279 score?
|
CREATE TABLE table_name_66 (place VARCHAR, money___£__ VARCHAR, score VARCHAR)
|
SELECT place FROM table_name_66 WHERE money___£__ = "140,000" AND score = 68 - 68 - 75 - 68 = 279
|
### Context: CREATE TABLE table_name_66 (place VARCHAR, money___£__ VARCHAR, score VARCHAR) ### Question: What is the place of the player with £140,000 and a 68-68-75-68=279 score? ### Answer: SELECT place FROM table_name_66 WHERE money___£__ = "140,000" AND score = 68 - 68 - 75 - 68 = 279
|
What is the country of player stuart appleby, who has a t1 place?
|
CREATE TABLE table_name_61 (country VARCHAR, place VARCHAR, player VARCHAR)
|
SELECT country FROM table_name_61 WHERE place = "t1" AND player = "stuart appleby"
|
### Context: CREATE TABLE table_name_61 (country VARCHAR, place VARCHAR, player VARCHAR) ### Question: What is the country of player stuart appleby, who has a t1 place? ### Answer: SELECT country FROM table_name_61 WHERE place = "t1" AND player = "stuart appleby"
|
What is the place of player sergio garcía, who has £77,500?
|
CREATE TABLE table_name_45 (place VARCHAR, money___£__ VARCHAR, player VARCHAR)
|
SELECT place FROM table_name_45 WHERE money___£__ = "77,500" AND player = "sergio garcía"
|
### Context: CREATE TABLE table_name_45 (place VARCHAR, money___£__ VARCHAR, player VARCHAR) ### Question: What is the place of player sergio garcía, who has £77,500? ### Answer: SELECT place FROM table_name_45 WHERE money___£__ = "77,500" AND player = "sergio garcía"
|
What is the to par of the player with a 73-70-70-65=278 score?
|
CREATE TABLE table_name_92 (to_par VARCHAR, score VARCHAR)
|
SELECT to_par FROM table_name_92 WHERE score = 73 - 70 - 70 - 65 = 278
|
### Context: CREATE TABLE table_name_92 (to_par VARCHAR, score VARCHAR) ### Question: What is the to par of the player with a 73-70-70-65=278 score? ### Answer: SELECT to_par FROM table_name_92 WHERE score = 73 - 70 - 70 - 65 = 278
|
Who is the player with £140,000?
|
CREATE TABLE table_name_97 (player VARCHAR, money___£__ VARCHAR)
|
SELECT player FROM table_name_97 WHERE money___£__ = "140,000"
|
### Context: CREATE TABLE table_name_97 (player VARCHAR, money___£__ VARCHAR) ### Question: Who is the player with £140,000? ### Answer: SELECT player FROM table_name_97 WHERE money___£__ = "140,000"
|
What is Date, when Time is "56.49"?
|
CREATE TABLE table_name_90 (date VARCHAR, time VARCHAR)
|
SELECT date FROM table_name_90 WHERE time = "56.49"
|
### Context: CREATE TABLE table_name_90 (date VARCHAR, time VARCHAR) ### Question: What is Date, when Time is "56.49"? ### Answer: SELECT date FROM table_name_90 WHERE time = "56.49"
|
What is Event, when Date is "19 December 2009"?
|
CREATE TABLE table_name_6 (event VARCHAR, date VARCHAR)
|
SELECT event FROM table_name_6 WHERE date = "19 december 2009"
|
### Context: CREATE TABLE table_name_6 (event VARCHAR, date VARCHAR) ### Question: What is Event, when Date is "19 December 2009"? ### Answer: SELECT event FROM table_name_6 WHERE date = "19 december 2009"
|
What is Time, when Meet is "Duel in the Pool", and when Date is "19 December 2009"?
|
CREATE TABLE table_name_62 (time VARCHAR, meet VARCHAR, date VARCHAR)
|
SELECT time FROM table_name_62 WHERE meet = "duel in the pool" AND date = "19 december 2009"
|
### Context: CREATE TABLE table_name_62 (time VARCHAR, meet VARCHAR, date VARCHAR) ### Question: What is Time, when Meet is "Duel in the Pool", and when Date is "19 December 2009"? ### Answer: SELECT time FROM table_name_62 WHERE meet = "duel in the pool" AND date = "19 december 2009"
|
What is the Location, when Event is "100m Butterfly"?
|
CREATE TABLE table_name_72 (location VARCHAR, event VARCHAR)
|
SELECT location FROM table_name_72 WHERE event = "100m butterfly"
|
### Context: CREATE TABLE table_name_72 (location VARCHAR, event VARCHAR) ### Question: What is the Location, when Event is "100m Butterfly"? ### Answer: SELECT location FROM table_name_72 WHERE event = "100m butterfly"
|
What is Date, when Meet is "World Championships", when Nationality is "United States", and when Time is "1:46.68"?
|
CREATE TABLE table_name_86 (date VARCHAR, time VARCHAR, meet VARCHAR, nationality VARCHAR)
|
SELECT date FROM table_name_86 WHERE meet = "world championships" AND nationality = "united states" AND time = "1:46.68"
|
### Context: CREATE TABLE table_name_86 (date VARCHAR, time VARCHAR, meet VARCHAR, nationality VARCHAR) ### Question: What is Date, when Meet is "World Championships", when Nationality is "United States", and when Time is "1:46.68"? ### Answer: SELECT date FROM table_name_86 WHERE meet = "world championships" AND nationality = "united states" AND time = "1:46.68"
|
What is Event, when Meet is "World Championships", and when Time is "20.51"?
|
CREATE TABLE table_name_41 (event VARCHAR, meet VARCHAR, time VARCHAR)
|
SELECT event FROM table_name_41 WHERE meet = "world championships" AND time = "20.51"
|
### Context: CREATE TABLE table_name_41 (event VARCHAR, meet VARCHAR, time VARCHAR) ### Question: What is Event, when Meet is "World Championships", and when Time is "20.51"? ### Answer: SELECT event FROM table_name_41 WHERE meet = "world championships" AND time = "20.51"
|
What is the highest number of households with a median household income of $31,176, and a population of 25,607?
|
CREATE TABLE table_name_30 (number_of_households INTEGER, median_household_income VARCHAR, population VARCHAR)
|
SELECT MAX(number_of_households) FROM table_name_30 WHERE median_household_income = "$31,176" AND population < 25 OFFSET 607
|
### Context: CREATE TABLE table_name_30 (number_of_households INTEGER, median_household_income VARCHAR, population VARCHAR) ### Question: What is the highest number of households with a median household income of $31,176, and a population of 25,607? ### Answer: SELECT MAX(number_of_households) FROM table_name_30 WHERE median_household_income = "$31,176" AND population < 25 OFFSET 607
|
What is the median household income for Cape Girardeau?
|
CREATE TABLE table_name_68 (median_household_income VARCHAR, county VARCHAR)
|
SELECT median_household_income FROM table_name_68 WHERE county = "cape girardeau"
|
### Context: CREATE TABLE table_name_68 (median_household_income VARCHAR, county VARCHAR) ### Question: What is the median household income for Cape Girardeau? ### Answer: SELECT median_household_income FROM table_name_68 WHERE county = "cape girardeau"
|
Who is the Colourist that has a Story Title of Broken Glass (part 3) and a Letterer of Albers?
|
CREATE TABLE table_name_89 (colourist_s VARCHAR, letterer_s VARCHAR, story_title VARCHAR)
|
SELECT colourist_s FROM table_name_89 WHERE letterer_s = "albers" AND story_title = "broken glass (part 3)"
|
### Context: CREATE TABLE table_name_89 (colourist_s VARCHAR, letterer_s VARCHAR, story_title VARCHAR) ### Question: Who is the Colourist that has a Story Title of Broken Glass (part 3) and a Letterer of Albers? ### Answer: SELECT colourist_s FROM table_name_89 WHERE letterer_s = "albers" AND story_title = "broken glass (part 3)"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.